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
🏗️ 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:
+16
-1
@@ -11,7 +11,7 @@ For how long each fixed defect had been shipping before it was found, see
|
|||||||
|
|
||||||
## v0.11.1
|
## 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.
|
device: changing the audio track did nothing, and no subtitle would load.
|
||||||
|
|
||||||
### 🐛 Fixes
|
### 🐛 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
|
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)
|
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
|
## v0.11.0
|
||||||
|
|
||||||
Video can play through the native renderer on Linux, and the machinery every
|
Video can play through the native renderer on Linux, and the machinery every
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jellytau",
|
"name": "jellytau",
|
||||||
"version": "0.11.0",
|
"version": "0.11.1",
|
||||||
"description": "A cross-platform Jellyfin client built with Tauri, SvelteKit and Rust.",
|
"description": "A cross-platform Jellyfin client built with Tauri, SvelteKit and Rust.",
|
||||||
"author": "Duncan Tourolle <duncan@tourolle.paris>",
|
"author": "Duncan Tourolle <duncan@tourolle.paris>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
Generated
+1
-1
@@ -2181,7 +2181,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jellytau"
|
name = "jellytau"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ name = "jellytau"
|
|||||||
# `player-conformance`, and a second binary makes a bare `cargo run` —
|
# `player-conformance`, and a second binary makes a bare `cargo run` —
|
||||||
# which `tauri dev` issues — ambiguous.
|
# which `tauri dev` issues — ambiguous.
|
||||||
default-run = "jellytau"
|
default-run = "jellytau"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
description = "A cross-platform Jellyfin client"
|
description = "A cross-platform Jellyfin client"
|
||||||
authors = ["Duncan Tourolle <duncan@tourolle.paris>"]
|
authors = ["Duncan Tourolle <duncan@tourolle.paris>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "JellyTau",
|
"productName": "JellyTau",
|
||||||
"version": "0.11.0",
|
"version": "0.11.1",
|
||||||
"identifier": "com.dtourolle.jellytau",
|
"identifier": "com.dtourolle.jellytau",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user