chore(release): 0.8.1
Patch: one Android fix — the display no longer sleeps mid-video.
This commit is contained in:
@@ -9,6 +9,24 @@ generated trace matrix lives in [docs/traceability.md](docs/traceability.md).
|
||||
For how long each fixed defect had been shipping before it was found, see
|
||||
[docs/defect-windows.md](docs/defect-windows.md).
|
||||
|
||||
## v0.8.1
|
||||
|
||||
A single fix, for Android.
|
||||
|
||||
### 🐛 Fixes
|
||||
|
||||
- **The screen no longer sleeps while you are watching something.** Android
|
||||
counts its display timeout from the last time you touched the phone, and
|
||||
watching a film is exactly when you do not — so the picture dimmed and the
|
||||
screen went out mid-playback unless you kept tapping it. Nothing in the app
|
||||
ever asked the display to stay on, and neither video renderer does so by
|
||||
itself: ExoPlayer's wake mode keeps the CPU and wifi alive but says nothing
|
||||
about the screen, and an embedded WebView does not take the display wake lock
|
||||
that a browser takes for `<video>`. Both rendering paths now hold the screen
|
||||
awake for as long as video is actually playing, and release it on pause, on
|
||||
stop, and when the player goes away. Audio is deliberately untouched — playing
|
||||
music with the screen off is the point of it. (UR-003, UR-004 → DR-202)
|
||||
|
||||
## v0.8.0
|
||||
|
||||
A security and correctness release, from an audit of the codebase against its own
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "jellytau",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"packageManager": "bun@1.3.5",
|
||||
|
||||
Generated
+1
-1
@@ -2018,7 +2018,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "jellytau"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"async-trait",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "jellytau"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
description = "A Tauri App"
|
||||
authors = ["you"]
|
||||
edition = "2021"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "jellytau",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"identifier": "com.dtourolle.jellytau",
|
||||
"build": {
|
||||
"beforeDevCommand": "bun run dev",
|
||||
|
||||
Reference in New Issue
Block a user