From 1d5a23b7dc111e3d8bf6d71f9a1fca411b49c897 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 30 Aug 2026 03:53:55 +0200 Subject: [PATCH] Release 0.1.0+1 --- public/manifest.json | 2 +- release.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 260c15f..0d2ca10 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,7 +1,7 @@ { "version": "0.1.0", "buildNumber": 1, - "notes": "Prvn\u00ed sestaven\u00ed publikovan\u00e9 p\u0159es aktualizace.", + "notes": "První sestavení publikované přes aktualizace.", "sha256": "ec5ce317991e8a80a51c0559f5543be3c9cc994aca8470faaa7d5f10bce97a33", "size": 34246665, "url": "https://media-updates.petruzalekr.cz/media-1.apk" diff --git a/release.py b/release.py index 863594d..94e2efb 100755 --- a/release.py +++ b/release.py @@ -50,8 +50,11 @@ def main() -> None: "size": dest.stat().st_size, "url": f"{BASE_URL}/{name}", } + # ensure_ascii=False: the notes are Czech and get read by a person as + # often as by the app. (public / "manifest.json").write_text( - json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + json.dumps(manifest, indent=2, ensure_ascii=False) + "\n", + encoding="utf-8") subprocess.run(["git", "add", "-A"], cwd=HERE, check=True) subprocess.run(