chore(release): bump version to v0.11.1
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
|
||||
|
||||
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
@@ -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",
|
||||
|
||||
Generated
+1
-1
@@ -2181,7 +2181,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "jellytau"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"async-trait",
|
||||
|
||||
@@ -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,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",
|
||||
|
||||
Reference in New Issue
Block a user