Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kz26 committed Mar 19, 2017
1 parent 4ab14c5 commit 1a6ca27
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.3.1
-----
[FIX] Add "one per line" notation to filename exclusion patterns label

1.3.0
-----
* [NEW] Remember file/directory/batch mode settings for next startup (issue #5)
Expand Down
4 changes: 2 additions & 2 deletions dottorrentGUI/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>496</width>
<height>1095</height>
<height>1131</height>
</rect>
</property>
<property name="windowTitle">
Expand Down Expand Up @@ -78,7 +78,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Filename exclusion patterns</string>
<string>Filename exclusion patterns (one per line)</string>
</property>
</widget>
</item>
Expand Down
4 changes: 2 additions & 2 deletions dottorrentGUI/ui_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(496, 1095)
MainWindow.resize(496, 1131)
self.centralwidget = QtWidgets.QWidget(MainWindow)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(0)
Expand Down Expand Up @@ -234,7 +234,7 @@ def retranslateUi(self, MainWindow):
self.batchModeCheckBox.setToolTip(_translate("MainWindow", "<html><head/><body><p>If enabled, a torrent will be created for each directory and file one level below the input directory. The piece size for each torrent will be determined automatically.</p></body></html>"))
self.batchModeCheckBox.setText(_translate("MainWindow", "Batch mode"))
self.directoryRadioButton.setText(_translate("MainWindow", "Directory"))
self.excludeLabel.setText(_translate("MainWindow", "Filename exclusion patterns"))
self.excludeLabel.setText(_translate("MainWindow", "Filename exclusion patterns (one per line)"))
self.browseButton.setText(_translate("MainWindow", "Browse..."))
self.pasteButton.setText(_translate("MainWindow", "Paste from clipboard"))
self.seedingGroupBox.setTitle(_translate("MainWindow", "Seeding"))
Expand Down
2 changes: 1 addition & 1 deletion dottorrentGUI/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.0'
__version__ = '1.3.1'

0 comments on commit 1a6ca27

Please sign in to comment.