mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
v0.11.31
This commit is contained in:
parent
51546c9e64
commit
456f575637
|
@ -622,8 +622,6 @@ in the `scripts` folder:
|
||||||
|
|
||||||
roughly sorted by priority
|
roughly sorted by priority
|
||||||
|
|
||||||
* keepalive handshake after 5h
|
|
||||||
* skip pushing postlist if todo.upload has entries
|
|
||||||
* readme.md as epilogue
|
* readme.md as epilogue
|
||||||
* reduce up2k roundtrips
|
* reduce up2k roundtrips
|
||||||
* start from a chunk index and just go
|
* start from a chunk index and just go
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (0, 11, 30)
|
VERSION = (0, 11, 31)
|
||||||
CODENAME = "the grid"
|
CODENAME = "the grid"
|
||||||
BUILD_DT = (2021, 7, 1)
|
BUILD_DT = (2021, 7, 4)
|
||||||
|
|
||||||
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)
|
||||||
|
|
|
@ -934,8 +934,7 @@ function up2k_init(subtle) {
|
||||||
|
|
||||||
nprev = nf;
|
nprev = nf;
|
||||||
var t = st.files[nf];
|
var t = st.files[nf];
|
||||||
if (t.t_busied &&
|
if (now - t.t_busied > 1000 * 30 &&
|
||||||
now - t.t_busied > 1000 * 30 &&
|
|
||||||
now - t.t_handshake > 1000 * (21600 - 1800)
|
now - t.t_handshake > 1000 * (21600 - 1800)
|
||||||
) {
|
) {
|
||||||
apop(st.todo.handshake, t);
|
apop(st.todo.handshake, t);
|
||||||
|
|
Loading…
Reference in a new issue