From cb9f6a84df0e4f1090e898fbc6e4ab0f9766aadb Mon Sep 17 00:00:00 2001 From: ScreenTinker Date: Thu, 13 Aug 2026 13:41:45 -0500 Subject: [PATCH] Changelog for 1.9.34-alpha7 Covers everything since alpha6: the stage-sizing fix (#262), the operations runbook (#261), the sharp removal (#263) and the better-sqlite3 pin (#264/#265), plus the dependency-reinstall requirement that applies in both directions. --- CHANGELOG.md | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f089b87..d0f2356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,13 @@ # Changelog -## Unreleased - - +## 1.9.34-alpha7 ### ⚠️ Upgrading to this build requires reinstalling dependencies -Both changes below alter `server/package.json`, so **`npm ci --omit=dev` is required, not -optional** — in both directions. The runbook's rollback step marks that command "only if -dependencies changed"; for this release they did. +The two dependency changes below — dropping `sharp` and pinning `better-sqlite3` — alter +`server/package.json`, so **`npm ci --omit=dev` is required, not optional** — in both directions. +The runbook's rollback step marks that command "only if dependencies changed"; for this release +they did. - **Upgrading**: `scripts/upgrade.sh` already runs it. A hand-rolled deploy that skips it leaves a `better-sqlite3` that no longer matches `package.json`. @@ -23,6 +21,23 @@ Docker deployments need no action either way: dependencies are installed inside No migrations, no configuration changes, no player-side changes. +### Fixed — the Android player could leave a band down one edge of the screen +A panel would sometimes not fill its display: content rendered into a stage sized from a window that +no longer existed, leaving a bar the exact size of the hidden system bar. It was intermittent +because it depended on whether the app was measured before or after the system UI was hidden — the +same screen could come up correct after a reboot and wrong after an app restart. + +The stage is now measured from the current window and re-measured when focus changes, so a late +change to the usable area is picked up instead of being baked in at startup. + +Reported on an RK356x Android box, where it was compounded by an unrelated HDMI mode problem; +pinning the output resolution fixed the corruption, and this fixes the band that remained. + +### Added — an operations runbook +`docs/operations.md`. How to deploy, verify, and roll back an instance in both shapes it runs in +(git + systemd, and Docker), including what to back up first, how to tell a deploy actually worked, +and the traps that are only obvious once they have bitten you. + ### Changed — image processing no longer uses a native module `sharp` is gone. Thumbnailing and image measurement are pure JavaScript (Jimp) with WebAssembly codecs for webp and avif, running on a worker thread. `sharp` remains as a development dependency