diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 485d8ffc..8847b151 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 15, 9) +VERSION = (1, 15, 10) CODENAME = "fill the drives" -BUILD_DT = (2024, 10, 18) +BUILD_DT = (2024, 10, 26) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/docs/changelog.md b/docs/changelog.md index 9329abef..1c5fbf5a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,27 @@ +▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ +# 2024-1018-2342 `v1.15.9` rss server + +## 🧪 new features + +* #109 [rss feed generator](https://github.com/9001/copyparty#rss-feeds) 7ffd805a + * monitor folders recursively with RSS readers + +## 🩹 bugfixes + +* #107 `--df` diskspace limits was incompatible with webdav 2a570bb4 +* #108 up2k javascript crash (only affected the Chinese translation) a7e2a0c9 + +## 🔧 other changes + +* up2k: detect buggy webworkers 5ca8f070 +* up2k: improve upload retry/timeout logic a9b4436c + * js: make handshake retries more aggressive + * u2c: reduce chunks timeout + ^ + * main: reduce tcp timeout to 128sec (js is 42s) + * httpcli: less confusing log messages + + + ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ # 2024-1016-2153 `v1.15.8` the sky is the limit diff --git a/pyproject.toml b/pyproject.toml index f82fc6e7..d673fa37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: Jython", "Programming Language :: Python :: Implementation :: PyPy", diff --git a/setup.py b/setup.py index ba98bf15..1a2c4617 100755 --- a/setup.py +++ b/setup.py @@ -108,6 +108,7 @@ args = { "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: Jython", "Programming Language :: Python :: Implementation :: PyPy",