- renamed the Tool menu category to Plugins
- for all the plugins optimized the plugin name - renamed the app to FlatCAM Evo in order to make a difference from FlatCAM app which follows its own path - modified the splash image to reflect the new naming of the app - modified some of the documents (License, Readme) in the app to reflect the actual reality in 2021
This commit is contained in:
@@ -584,11 +584,11 @@ class MainGUI(QtWidgets.QMainWindow):
|
||||
'%s\t%s' % (_('Deselect All'), ''))
|
||||
|
||||
# ########################################################################
|
||||
# ########################## Tool # ######################################
|
||||
# ########################## Plugins # ######################################
|
||||
# ########################################################################
|
||||
self.menutool = QtWidgets.QMenu(_('Tool'))
|
||||
self.menutoolaction = self.menu.addMenu(self.menutool)
|
||||
self.menutoolshell = self.menutool.addAction(
|
||||
self.menu_plugins = QtWidgets.QMenu(_('Plugins'))
|
||||
self.menu_plugins_action = self.menu.addMenu(self.menu_plugins)
|
||||
self.menu_plugins_shell = self.menu_plugins.addAction(
|
||||
QtGui.QIcon(self.app.resource_location + '/shell16.png'),
|
||||
'%s\t%s' % (_('Command Line'), _('S')))
|
||||
|
||||
@@ -1815,7 +1815,7 @@ class MainGUI(QtWidgets.QMainWindow):
|
||||
self.setWindowIcon(self.app_icon)
|
||||
|
||||
self.setGeometry(100, 100, 1024, 650)
|
||||
self.setWindowTitle('FlatCAM %s %s - %s' %
|
||||
self.setWindowTitle('FlatCAM Evo %s %s - %s' %
|
||||
(self.app.version,
|
||||
('BETA' if self.app.beta else ''),
|
||||
platform.architecture()[0])
|
||||
@@ -1960,7 +1960,7 @@ class MainGUI(QtWidgets.QMainWindow):
|
||||
:param name: String that store the project path and project name
|
||||
:return: None
|
||||
"""
|
||||
title = 'FlatCAM %s %s - %s - [%s] %s' % (
|
||||
title = 'FlatCAM Evo %s %s - %s - [%s] %s' % (
|
||||
self.app.version, ('BETA' if self.app.beta else ''), platform.architecture()[0], self.app.engine, name)
|
||||
self.setWindowTitle(title)
|
||||
|
||||
|
||||
@@ -34,4 +34,4 @@ class UtilPreferencesUI(QtWidgets.QWidget):
|
||||
self.layout.addWidget(self.fa_gerber_group)
|
||||
self.layout.addWidget(self.kw_group)
|
||||
|
||||
self.layout.addStretch()
|
||||
self.layout.addStretch(1)
|
||||
|
||||
Reference in New Issue
Block a user