make first release ready
This commit is contained in:
5
mymuell2caldav/__main__.py
Normal file
5
mymuell2caldav/__main__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env python3
|
||||
from mymuell2caldav.mymuell2caldav import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -23,7 +23,7 @@ import sys
|
||||
from mymuell2caldav.databinding.CalendarSync import CalendarSync
|
||||
from mymuell2caldav.databinding.MyMuellDataModel import MyMuellDataModel
|
||||
from mymuell2caldav.utils.GuiWorker import GuiWorker
|
||||
|
||||
from mymuell2caldav.version import VERSION
|
||||
|
||||
class MyMuell2CalDavGui(QMainWindow):
|
||||
def __init__(self, parent=None):
|
||||
@@ -249,7 +249,7 @@ class MyMuell2CalDavGui(QMainWindow):
|
||||
|
||||
# self.setGeometry(300, 300, 1000, 800)
|
||||
self.setMinimumWidth(500)
|
||||
self.setWindowTitle("MyMuell DAV GUI")
|
||||
self.setWindowTitle("MyMuell 2 CalDAV Version " + VERSION )
|
||||
|
||||
def slot_process_finished(self, result: bool, msg: str):
|
||||
if result:
|
||||
|
||||
3
mymuell2caldav/version.py
Normal file
3
mymuell2caldav/version.py
Normal file
@@ -0,0 +1,3 @@
|
||||
# please do not do anything here besides changing version number!
|
||||
|
||||
VERSION = '1.0.0'
|
||||
Reference in New Issue
Block a user