Skip to content

Commit

Permalink
Changed how versioning works
Browse files Browse the repository at this point in the history
  • Loading branch information
02bwilson committed Aug 4, 2023
1 parent 7bc4e84 commit e6ce3d3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Widgets/MainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
from Widgets.MainWidget import MainWidget

class MainWindow(QMainWindow):

_VERSION = "1.0"
_MAIN_VERSION = 0x1
_SUB_VERSION = 0x1
_VERSION = str(_MAIN_VERSION) + "." + str(_SUB_VERSION)
def __init__(self):
super().__init__()

Expand All @@ -14,4 +15,4 @@ def __init__(self):

self.widget = MainWidget()

self.setCentralWidget(self.widget)
self.setCentralWidget(self.widget)

0 comments on commit e6ce3d3

Please sign in to comment.