We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d3359 commit 755a2eeCopy full SHA for 755a2ee
copyparty/__version__.py
@@ -1,8 +1,8 @@
1
# coding: utf-8
2
3
-VERSION = (0, 5, 2)
+VERSION = (0, 5, 3)
4
CODENAME = "fuse jelly"
5
-BUILD_DT = (2020, 8, 18)
+BUILD_DT = (2020, 11, 13)
6
7
S_VERSION = ".".join(map(str, VERSION))
8
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
copyparty/web/md2.js
@@ -170,7 +170,7 @@ redraw = (function () {
170
dst.scrollTop = 0;
171
return;
172
}
173
- if (y + 8 + src.clientHeight > src.scrollHeight) {
+ if (y + 48 + src.clientHeight > src.scrollHeight) {
174
dst.scrollTop = dst.scrollHeight - dst.clientHeight;
175
176
0 commit comments