diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 649a565d..e3cdcef4 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 16, 10) +VERSION = (1, 16, 11) CODENAME = "COPYparty" -BUILD_DT = (2025, 1, 25) +BUILD_DT = (2025, 1, 27) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 4f4c63fc..a6529f2e 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -2449,6 +2449,8 @@ var mpl = (function () { for (var a = 0; a < fmts.length; a++) { var btn = ebi('ac2' + fmts[a]); + if (!btn) + return console.log('!btn', fmts[a]); btn.onclick = r.set_ac2; btns.push(btn); } diff --git a/docs/changelog.md b/docs/changelog.md index 66ce1f61..f45a6c99 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,29 @@ +▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ +# 2025-0125-1809 `v1.16.10` iOS9 is fine too + +## 🧪 new features + +* support audio playback on *really old* apple devices c9eba39e + * will now transcode to mp3 when necessary, since iOS didn't support opus-in-caf before iOS 11 +* support audio playback on *future* apple devices 28c9de3f 95390b65 + * iOS 17.5 introduced support for opus-in-weba (like webp just audio instead) and, unlike caf, this intentionally supports vbr-opus (awesome) + * ...but the current code in iOS is too buggy, so this new format is default-disabled and we'll stick to caf for now fff38f48 +* ZeroMQ event-hooks can reject uploads 3a5c1d9f + * see [the example zmq listener](https://github.com/9001/copyparty/blob/1dace720/bin/zmq-recv.py#L26-L28) +* chat with ZeroMQ event-hooks from javascript cdd3b67a + * replies from ZMQ REP servers are included in the msg-to-log responses + * which makes [this joke](https://github.com/9001/copyparty/blob/hovudstraum/bin/hooks/usb-eject.py) possible f38c7543 + +## 🩹 bugfixes + +* nope + +## 🔧 other changes + +* option to restrict the recent-uploads listing to admins-only b8b5214f + + + ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ # 2025-0122-2326 `v1.16.9` ZeroMQ says hello