Skip to content

Commit

Permalink
Release v0.9.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Nov 15, 2017
1 parent 3055209 commit 4b8476d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sportorg/app/gui/dialogs/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def init_ui(self):

title_font = QFont("Times", 24)
title_text = QLabel()
title_text.setText('{} v{}'.format(config.NAME, config.VERSION))
title_text.setText('{} {}'.format(config.NAME, config.VERSION))
title_text.setFont(title_font)
title_icon = QLabel()
title_icon.setPixmap(QPixmap(config.ICON).scaled(75, 75))
Expand Down
2 changes: 1 addition & 1 deletion sportorg/app/gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def _setup_tab(self):
self.tabwidget.addTab(teams.Widget(), _("Teams"))

def set_title(self, title=None):
main_title = '{} v{}'.format(_(config.NAME), config.VERSION)
main_title = '{} {}'.format(_(config.NAME), config.VERSION)
if title:
self.setWindowTitle('{} - {}'.format(title, main_title))
else:
Expand Down
2 changes: 1 addition & 1 deletion sportorg/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

NAME = 'SportOrg'
VERSION = '0.8.0-beta'
VERSION = 'v0.9.0-beta'
DEBUG = True


Expand Down
8 changes: 4 additions & 4 deletions versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
{
"FileVersion": {
"Major": 0,
"Minor": 8,
"Minor": 9,
"Patch": 0,
"Build": 0
},
"ProductVersion": {
"Major": 0,
"Minor": 8,
"Minor": 9,
"Patch": 0,
"Build": 0
},
Expand All @@ -24,14 +24,14 @@
"Comments": "SportOrg program",
"CompanyName": "SportOrg",
"FileDescription": "SportOrg",
"FileVersion": "0.8.0.0",
"FileVersion": "0.9.0.0",
"InternalName": "SportOrg",
"LegalCopyright": "MIT Licence SportOrg",
"LegalTrademarks": "",
"OriginalFilename": "SportOrg",
"PrivateBuild": "",
"ProductName": "SportOrg",
"ProductVersion": "v0.8.0-beta",
"ProductVersion": "v0.9.0-beta",
"SpecialBuild": ""
},
"VarFileInfo":
Expand Down

0 comments on commit 4b8476d

Please sign in to comment.