Skip to content

Commit 755a2ee

Browse files
committed
v0.5.3
1 parent 69d3359 commit 755a2ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

copyparty/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
22

3-
VERSION = (0, 5, 2)
3+
VERSION = (0, 5, 3)
44
CODENAME = "fuse jelly"
5-
BUILD_DT = (2020, 8, 18)
5+
BUILD_DT = (2020, 11, 13)
66

77
S_VERSION = ".".join(map(str, VERSION))
88
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

copyparty/web/md2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ redraw = (function () {
170170
dst.scrollTop = 0;
171171
return;
172172
}
173-
if (y + 8 + src.clientHeight > src.scrollHeight) {
173+
if (y + 48 + src.clientHeight > src.scrollHeight) {
174174
dst.scrollTop = dst.scrollHeight - dst.clientHeight;
175175
return;
176176
}

0 commit comments

Comments
 (0)