Skip to content

Commit

Permalink
Preperation for new version
Browse files Browse the repository at this point in the history
- Fixed the missing main method, which caused problems when building
  the debian files
- Added version number
  • Loading branch information
rrooij committed Apr 6, 2019
1 parent 50dd928 commit f9d189c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.5.2
VERSION=0.5.3
PACKAGE_NAME=python3-sd3save-editor_$(VERSION)_all

.PHONY: package_deb
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Build-Depends: debhelper (>= 9), python3, dh-virtualenv (>= 0.8), python3-pyqt5
Standards-Version: 3.9.5

Package: python3-sd3save-editor
Version: 0.5.2
Version: 0.5.3
License: GPL-3.0
Vendor: none
Architecture: all
Expand Down
8 changes: 4 additions & 4 deletions sd3save_editor/gui/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from PyQt5.QtWidgets import QApplication
from sd3save_editor.gui.mainwindow import MainWindow


app = QApplication(sys.argv)
mainwindow = MainWindow()
sys.exit(app.exec_())
def main():
app = QApplication(sys.argv)
mainwindow = MainWindow()
sys.exit(app.exec_())
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
author='rrooij',
author_email='rderooij685@gmail.com',
url='https://github.com/rrooij/sd3save_editor',
version='0.5.2',
version='0.5.3',
license="GPL-3.0",
description='Seiken Densetsu 3 Save Editor',
packages=find_packages(),
Expand All @@ -14,7 +14,7 @@
'sd3save_editor_cli = sd3save_editor.__main__:main'
],
'gui_scripts': [
'sd3save_editor_gui = sd3save_editor.gui.__main__.py'
'sd3save_editor_gui = sd3save_editor.gui.__main__.py:main'
]
},
install_requires=['construct', 'scalpl']
Expand Down

0 comments on commit f9d189c

Please sign in to comment.