mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v1.16.11
This commit is contained in:
parent
1fe30363c7
commit
c7caecf77c
|
@ -1,8 +1,8 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (1, 16, 10)
|
VERSION = (1, 16, 11)
|
||||||
CODENAME = "COPYparty"
|
CODENAME = "COPYparty"
|
||||||
BUILD_DT = (2025, 1, 25)
|
BUILD_DT = (2025, 1, 27)
|
||||||
|
|
||||||
S_VERSION = ".".join(map(str, VERSION))
|
S_VERSION = ".".join(map(str, VERSION))
|
||||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||||
|
|
|
@ -2449,6 +2449,8 @@ var mpl = (function () {
|
||||||
|
|
||||||
for (var a = 0; a < fmts.length; a++) {
|
for (var a = 0; a < fmts.length; a++) {
|
||||||
var btn = ebi('ac2' + fmts[a]);
|
var btn = ebi('ac2' + fmts[a]);
|
||||||
|
if (!btn)
|
||||||
|
return console.log('!btn', fmts[a]);
|
||||||
btn.onclick = r.set_ac2;
|
btn.onclick = r.set_ac2;
|
||||||
btns.push(btn);
|
btns.push(btn);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
# 2025-0122-2326 `v1.16.9` ZeroMQ says hello
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue