mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 09:22:31 -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
|
||||
|
||||
* keepalive handshake after 5h
|
||||
* skip pushing postlist if todo.upload has entries
|
||||
* readme.md as epilogue
|
||||
* reduce up2k roundtrips
|
||||
* start from a chunk index and just go
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (0, 11, 30)
|
||||
VERSION = (0, 11, 31)
|
||||
CODENAME = "the grid"
|
||||
BUILD_DT = (2021, 7, 1)
|
||||
BUILD_DT = (2021, 7, 4)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
|
|
@ -934,8 +934,7 @@ function up2k_init(subtle) {
|
|||
|
||||
nprev = nf;
|
||||
var t = st.files[nf];
|
||||
if (t.t_busied &&
|
||||
now - t.t_busied > 1000 * 30 &&
|
||||
if (now - t.t_busied > 1000 * 30 &&
|
||||
now - t.t_handshake > 1000 * (21600 - 1800)
|
||||
) {
|
||||
apop(st.todo.handshake, t);
|
||||
|
|
Loading…
Reference in a new issue