chore(release): bump version to v0.11.1
🏗️ Build and Test JellyTau / Run Tests (push) Skipped
🏗️ Build and Test JellyTau / Android Compile Check (push) Skipped
🏗️ Build and Test JellyTau / Supply Chain (push) Successful in 3m47s
Publish Documentation / Build & publish docs to gitea-pages (push) Successful in 5m27s
Traceability Validation / Check Requirement Traces (push) Successful in 17s
Build & Release / Run Tests (push) Successful in 15m4s
Build & Release / Build Linux (push) Successful in 20m48s
Build & Release / Build Windows (push) Successful in 16m14s
Build & Release / Build Android (push) Successful in 31m22s
Build & Release / Create Release (push) Successful in 33s

This commit is contained in:
2026-08-23 19:20:15 +02:00
parent 64de22bd51
commit a94632461b
5 changed files with 20 additions and 5 deletions
+16 -1
View File
@@ -11,7 +11,7 @@ For how long each fixed defect had been shipping before it was found, see
## v0.11.1
Two faults that had been present since the first release, both found on a
Four fixes. Two had been present since the first release and were found on a
device: changing the audio track did nothing, and no subtitle would load.
### 🐛 Fixes
@@ -33,6 +33,21 @@ device: changing the audio track did nothing, and no subtitle would load.
tests that were supposed to cover the address were checking a copy of it kept
inside the tests, not the one being requested. (UR-020 → DR-259)
- **The player's menus stop covering each other, and stay on screen.** Opening
the quality menu on top of the audio menu left both open in the same corner,
the newer hiding rows of the older and both still taking taps. Only one opens
now. They were also positioned against the icon that opened them, which sits
mid-row — so on a phone held upright a panel hung off the left edge and half
its rows could not be read or reached. (UR-020, UR-021, UR-066, UR-074 →
DR-256)
- **Podcast episodes list newest first.** Every list was sorted by name
regardless of what it contained, which for a podcast discards the running
order — and because played episodes are labelled as such by the server,
sorting by name also gathered everything already heard at the top. What order
a container's children take is now decided by what the container is.
(UR-007 → DR-257)
## v0.11.0
Video can play through the native renderer on Linux, and the machinery every
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "jellytau",
"version": "0.11.0",
"version": "0.11.1",
"description": "A cross-platform Jellyfin client built with Tauri, SvelteKit and Rust.",
"author": "Duncan Tourolle <duncan@tourolle.paris>",
"license": "MIT",
+1 -1
View File
@@ -2181,7 +2181,7 @@ dependencies = [
[[package]]
name = "jellytau"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"aes-gcm",
"async-trait",
+1 -1
View File
@@ -4,7 +4,7 @@ name = "jellytau"
# `player-conformance`, and a second binary makes a bare `cargo run` —
# which `tauri dev` issues — ambiguous.
default-run = "jellytau"
version = "0.11.0"
version = "0.11.1"
description = "A cross-platform Jellyfin client"
authors = ["Duncan Tourolle <duncan@tourolle.paris>"]
license = "MIT"
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "JellyTau",
"version": "0.11.0",
"version": "0.11.1",
"identifier": "com.dtourolle.jellytau",
"build": {
"beforeDevCommand": "bun run dev",