Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kz26 committed Mar 19, 2017
1 parent c06044d commit 4ab14c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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) <http://www.bittorrent.org/beps/bep_0019.html>`_
* Private flag support `(BEP 27) <http://www.bittorrent.org/beps/bep_0027.html>`_
* 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
Expand Down
2 changes: 1 addition & 1 deletion dottorrentGUI/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4ab14c5

Please sign in to comment.