From 755a2ee023fa3d39b7c57cbc4480e9ff82e84e6d Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 13 Nov 2020 03:31:07 +0100 Subject: [PATCH] v0.5.3 --- copyparty/__version__.py | 4 ++-- copyparty/web/md2.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index dcc608e5..1036d3d9 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 5, 2) +VERSION = (0, 5, 3) CODENAME = "fuse jelly" -BUILD_DT = (2020, 8, 18) +BUILD_DT = (2020, 11, 13) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/copyparty/web/md2.js b/copyparty/web/md2.js index 6b74c85c..bac56ad2 100644 --- a/copyparty/web/md2.js +++ b/copyparty/web/md2.js @@ -170,7 +170,7 @@ redraw = (function () { dst.scrollTop = 0; return; } - if (y + 8 + src.clientHeight > src.scrollHeight) { + if (y + 48 + src.clientHeight > src.scrollHeight) { dst.scrollTop = dst.scrollHeight - dst.clientHeight; return; }