Skip to content

Commit 1fd5266

Browse files
release: version 1.5.5 (#189)
closes #157 #173 #182 #186 * docs: add description of version 1.5.5 * docs: update README * release: version 1.5.5 * fix: typos in previous version description
1 parent 12335fc commit 1fd5266

5 files changed

Lines changed: 205 additions & 206 deletions

File tree

README-cn.rst

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -109,33 +109,12 @@
109109

110110
更新日志
111111
----------
112-
**2022-06-19 星期日**:版本 1.5.4
112+
**2024.4.27 星期六*:版本 1.5.5
113113
114-
变动
115-
+++++
114+
* 修复了 qBittorrent 4.5 及其后续版本的兼容性问题。(#157) (#173) (#174) (#182) (#186) 感谢 @Siriussee!
115+
- 有关 API 变更的信息,请见 qbittorrent/qBittorrent#17563。
116116

117-
* 移除端口开放状态(Outgoing Port Status)的信息。(#101) (#135)
118-
- 我们确认了一个 bug,即,当我们使用 Transmission 并在 IPv6 网络下检查端口开放状态时,Transmission 的端口检查器会报错并提示“portTested: http error 400: Bad Request”。
119-
- 由于没有删种条件需要依赖这个端口开放状态,所以我们删了它。
120-
121-
* 修改了 ``last_activity`` 的行为。(#93) (#98) (#109)
122-
- 默认情况下,``last_activity`` 不再删除那些从未活跃过的种子。
123-
- 在需要的情况下,这些从未活跃过的种子可以用以下的方式去删除:
124-
+ 对于 ``last_activity`` 条件,使用 ``last_activity: never`` 或者 ``last_activity: none``。
125-
+ 对于 ``remove`` 表达式,使用 ``last_activity = never`` 或者 ``last_activity = none``。
126-
127-
新功能
128-
++++++
129-
130-
* 在 ``action`` 关键字中添加了 ``remove-slow-upload-seeds`` 和 ``remove-fast-upload-seeds`` 两个动作。 (#127) 感谢 @vincent906!
131-
* remove 表达式中支持等号(``=``)。
132-
* 添加 ``downloading_time`` 条件。 (#88) 感谢 @dantebarba!
133-
134-
修复
135-
+++++
136-
137-
* 修复了上传/下载量以及 ``free_space``、``remote_free_space`` 不能正确处理小数的问题。 (#133) 感谢 @sfwn!
138-
* 修复了 ``last_activity`` 条件在 Deluge 2.0.3 及以上版本无效的问题。(#119)
117+
同样,我们修复了最新版 qBittorrent 客户端的单元测试用例。感谢 @amefs!
139118

140119
`更多更新日志`_
141120

README.rst

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -110,34 +110,14 @@ Screenshot
110110
.. |Screenshot| image:: https://user-images.githubusercontent.com/6760674/174464634-15743d59-f1dc-41c9-bff6-6d90becaeb67.gif
111111

112112
Changelog
113-
----------
114-
**Sun, 19 June 2022**: Version 1.5.4.
113+
--------------
115114

116-
Changes
117-
++++++++
115+
**Sat, 27 Apr 2024**: Version 1.5.5.
118116

119-
* Remove outgoing port status info. (#101) (#135)
120-
- We have confirmed a bug, which is, the outgoing port status checker will fail and report 'portTested: http error 400: Bad Request' when we are using Transmission and check the outgoing port status in IPv6 network.
121-
- Since there are no configurations relying on this status, we remove it.
117+
* Fix the compatibility issues in qBittorrent 4.5 and later. (#157) (#173) (#174) (#182) (#186) Thanks to @Siriussee!
118+
- See the API changes in qbittorrent/qBittorrent#17563.
122119

123-
* Change ``last_activity``'s behaviour. (#93) (#98) (#109)
124-
- It won't remove those torrents that have never been active anymore.
125-
- These torrents that have never been active can be removed by the following configuration:
126-
+ ``last_activity: never`` or ``last_activity: none`` for ``last_activity`` condition.
127-
+ ``last_activity = never`` or ``last_activity = none`` for ``remove`` expression.
128-
129-
Features
130-
+++++++++
131-
132-
* Add ``remove-slow-upload-seeds`` and ``remove-fast-upload-seeds`` in actions. (#127) Thanks to @vincent906!
133-
* Support equality (``=``) comparison in remove expression.
134-
* Add downloading time condition. (#88) Thanks to @dantebarba!
135-
136-
Fix
137-
++++
138-
139-
* Fix a bug that Downloaded/Uploaded Size conditions and ``free_space``/``remote_free_space`` cannot handle decimals correctly. (#133) Thanks to @sfwn!
140-
* Fix a bug that ``last_activity`` condition doesn't work in Deluge 2.0.3 and above. (#119)
120+
We also fix the unittest workflow for the lastest qBittorrent. Thanks to @amefs!
141121

142122
`More changelogs`_
143123

autoremovetorrents/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#-*- coding:utf-8 -*-
22

33
# Current autoremove-torrents version
4-
__version__ = '1.5.4'
4+
__version__ = '1.5.5'

docs/changelog.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
ChangeLog
44
==========
55

6+
Version 1.5.5
7+
--------------
8+
9+
*Release Date: Saturday, 27 April 2024*
10+
11+
* Fix the compatibility issues in qBittorrent 4.5 and later. (#157) (#173) (#174) (#182) (#186) Thanks to @Siriussee!
12+
- See the API changes in qbittorrent/qBittorrent#17563.
13+
14+
We also fix the unittest workflow for the lastest qBittorrent. Thanks to @amefs!
15+
616
Version 1.5.4
717
--------------
818

@@ -24,7 +34,7 @@ Changes
2434
Features
2535
+++++++++
2636

27-
* Add ``remove-slow-upload-seeds`` and ``remove-fast-upload-seeds`` actions to keyword ``action``. (#127) Thanks to @vincent906!
37+
* Add ``remove-slow-upload-seeds`` and ``remove-fast-upload-seeds`` actions to keyword ``action``. (#127) Thanks to @vincent806!
2838
* Support equality (``=``) comparison in ``remove`` expression.
2939
* Add ``downloading_time`` condition. (#88) Thanks to @dantebarba!
3040

0 commit comments

Comments
 (0)