mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v1.5.6
This commit is contained in:
parent
53d92cc0a6
commit
dacca18863
|
@ -1,8 +1,8 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (1, 5, 5)
|
VERSION = (1, 5, 6)
|
||||||
CODENAME = "babel"
|
CODENAME = "babel"
|
||||||
BUILD_DT = (2022, 12, 30)
|
BUILD_DT = (2023, 1, 12)
|
||||||
|
|
||||||
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)
|
||||||
|
|
|
@ -2381,8 +2381,17 @@ function up2k_init(subtle) {
|
||||||
function can_upload_next() {
|
function can_upload_next() {
|
||||||
var upt = st.todo.upload[0],
|
var upt = st.todo.upload[0],
|
||||||
upf = st.files[upt.nfile],
|
upf = st.files[upt.nfile],
|
||||||
|
nhs = st.busy.handshake.length,
|
||||||
|
hs = nhs && st.busy.handshake[0],
|
||||||
now = Date.now();
|
now = Date.now();
|
||||||
|
|
||||||
|
if (nhs >= 16)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (hs && hs.t_uploaded && Date.now() - hs.t_busied > 10000)
|
||||||
|
// verification HS possibly held back by uploads
|
||||||
|
return false;
|
||||||
|
|
||||||
for (var a = 0, aa = st.busy.handshake.length; a < aa; a++) {
|
for (var a = 0, aa = st.busy.handshake.length; a < aa; a++) {
|
||||||
var hs = st.busy.handshake[a];
|
var hs = st.busy.handshake[a];
|
||||||
if (hs.n < upt.nfile && hs.t_busied > now - 10 * 1000 && !st.files[hs.n].bytes_uploaded)
|
if (hs.n < upt.nfile && hs.t_busied > now - 10 * 1000 && !st.files[hs.n].bytes_uploaded)
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
||||||
|
# 2022-1230-0754 `v1.5.5` made in japan
|
||||||
|
|
||||||
|
hello from tokyo
|
||||||
|
* read-only demo server at https://a.ocv.me/pub/demo/
|
||||||
|
|
||||||
|
## new features
|
||||||
|
* image viewer now supports heif, avif, apng, svg
|
||||||
|
* [partyfuse and up2k.py](https://github.com/9001/copyparty/tree/hovudstraum/bin): option to read password from textfile
|
||||||
|
|
||||||
|
## bugfixes
|
||||||
|
* thumbnailing could fail if a primitive build of libvips is installed
|
||||||
|
* ssdp was wonky on dualstack ipv6
|
||||||
|
* mdns could crash on networks with invalid routes
|
||||||
|
* support fat32 timestamp precisions
|
||||||
|
* fixes spurious file reindexing in volumes located on SD cards on android tablets which lie about timestamps until the next device reboot or filesystem remount
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
||||||
# 2022-1213-1956 `v1.5.3` folder-sync + turbo-rust
|
# 2022-1213-1956 `v1.5.3` folder-sync + turbo-rust
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue