mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
v0.5.3
This commit is contained in:
parent
69d3359e47
commit
755a2ee023
|
@ -1,8 +1,8 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (0, 5, 2)
|
VERSION = (0, 5, 3)
|
||||||
CODENAME = "fuse jelly"
|
CODENAME = "fuse jelly"
|
||||||
BUILD_DT = (2020, 8, 18)
|
BUILD_DT = (2020, 11, 13)
|
||||||
|
|
||||||
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)
|
||||||
|
|
|
@ -170,7 +170,7 @@ redraw = (function () {
|
||||||
dst.scrollTop = 0;
|
dst.scrollTop = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (y + 8 + src.clientHeight > src.scrollHeight) {
|
if (y + 48 + src.clientHeight > src.scrollHeight) {
|
||||||
dst.scrollTop = dst.scrollHeight - dst.clientHeight;
|
dst.scrollTop = dst.scrollHeight - dst.clientHeight;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue