Version 7. Version is now a variable.

This commit is contained in:
Juan Pablo Caram
2014-10-13 22:00:19 -04:00
parent 63a97bb15b
commit ef96672cc7
5 changed files with 15 additions and 26 deletions

View File

@@ -4,7 +4,7 @@ from GUIElements import *
class FlatCAMGUI(QtGui.QMainWindow):
def __init__(self):
def __init__(self, version):
super(FlatCAMGUI, self).__init__()
# Divine icon pack by Ipapun @ finicons.com
@@ -220,7 +220,7 @@ class FlatCAMGUI(QtGui.QMainWindow):
self.setWindowIcon(self.app_icon)
self.setGeometry(100, 100, 1024, 650)
self.setWindowTitle('FlatCAM - Alpha 7')
self.setWindowTitle('FlatCAM %s' % version)
self.show()