diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 28d4056..b353752 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +1.3.0 +----- +* [NEW] Remember file/directory/batch mode settings for next startup (issue #5) +* [NEW] Ability to set input path via clipboard paste or drag-and-drop (issues #6) +* [NEW] Increase maximum piece size to 64MB (issue #7) +* [NEW] Add support for filename exclusion pattern in dottorrent 1.8.0 (issue #9) + 1.2.2 ----- * [FIX] window resizing behavior diff --git a/README.rst b/README.rst index 524e2ed..fc7e9f8 100644 --- a/README.rst +++ b/README.rst @@ -14,13 +14,14 @@ Features * Fast (capable of several hundred MB/s) * Cross-platform * Full Unicode support -* Automatic and manual piece size selection +* Automatic and manual piece size selection, up to 64MB * Batch torrent creation mode +* Filename pattern exclusion * HTTP/web seeds support `(BEP 19) `_ * Private flag support `(BEP 27) `_ * User-definable source string * Optional MD5 file hash inclusion -* Import and export of tracker profiles (trackers, web seeds, source string) +* Import/export of profiles (trackers, web seeds, source string, filename exclusion patterns) ------------ Installation diff --git a/dottorrentGUI/gui.py b/dottorrentGUI/gui.py index 0307a5e..7e30d3f 100755 --- a/dottorrentGUI/gui.py +++ b/dottorrentGUI/gui.py @@ -19,7 +19,7 @@ CREATOR = "dottorrent-gui/{} (https://github.com/kz26/dottorrent-gui)".format( __version__) -PIECE_SIZES = [None] + [2 ** i for i in range(14, 26)] +PIECE_SIZES = [None] + [2 ** i for i in range(14, 27)] class CreateTorrentQThread(QtCore.QThread):