Skip to content

Commit

Permalink
Version 3.0.1
Browse files Browse the repository at this point in the history
	modified:   README.md
	modified:   persepolis/gui/about_ui.py
	modified:   persepolis/scripts/persepolis.py
	modified:   persepolis/scripts/update.py
	modified:   setup.py
  • Loading branch information
alireza-amirsamimi committed Dec 18, 2017
1 parent 7a40254 commit f76881a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

Persepolis Download Manager is a GUI for aria2.

+ Version : 3.0.0
+ Version : 3.0.1
+ Written in PYQT5.
+ For GNU/Linux, FreeBSD, PC-BSD, OpenBSD, Mac OS X and Windows.

Expand Down
2 changes: 1 addition & 1 deletion persepolis/gui/about_ui.py
Expand Up @@ -99,7 +99,7 @@ def __init__(self,persepolis_setting):

self.setWindowTitle("About Persepolis")
self.title_label.setText("Persepolis Download Manager")
self.version_label.setText("Version 3.0.0")
self.version_label.setText("Version 3.0.1")
self.name_label.setText(
"\nAliReza AmirSamimi\nMohammadreza Abdollahzadeh\nSadegh Alirezaie\nMostafa Asadi\nMohammadAmin Vahedinia\nJafar Akhondali")
self.site2_label.setText(
Expand Down
2 changes: 1 addition & 1 deletion persepolis/scripts/persepolis.py
Expand Up @@ -179,7 +179,7 @@ def setPersepolisColorScheme(self, color_scheme):
parser.add_argument('--clear', action='store_true', help='Clear download list and user setting!')
parser.add_argument('--tray', action='store_true', help="Persepolis is starting in tray icon. It's useful when you want to put persepolis in system's startup.")
parser.add_argument('--parent-window', action='store', nargs = 1, help='this switch is used for chrome native messaging in Windows')
parser.add_argument('--version', action='version', version='Persepolis Download Manager 3.0.0')
parser.add_argument('--version', action='version', version='Persepolis Download Manager 3.0.1')


parser.add_argument('args', nargs=argparse.REMAINDER)
Expand Down
4 changes: 2 additions & 2 deletions persepolis/scripts/update.py
Expand Up @@ -40,15 +40,15 @@ def __init__(self, persepolis_setting):
self.setWindowTitle('Checking for newer version')

# installed version
self.client_version = self.persepolis_setting.value('version/version')
self.client_version = '3.01'

# first line text
self.update_label = QLabel("The newest is the best , We recommend to update Persepolis")
self.update_label.setTextFormat(QtCore.Qt.RichText)
self.update_label.setAlignment(QtCore.Qt.AlignCenter)

# second line text
self.version_label = QLabel('This is Persepolis Download Manager version 3.0.0')
self.version_label = QLabel('This is Persepolis Download Manager version 3.0.1')
self.version_label.setAlignment(QtCore.Qt.AlignCenter)

# release link
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -147,7 +147,7 @@

setup(
name = 'persepolis',
version = '3.0.0',
version = '3.0.1',
license = 'GPL3',
description = DESCRIPTION,
long_description = DESCRIPTION,
Expand Down

0 comments on commit f76881a

Please sign in to comment.