Skip to content

Commit d0df725

Browse files
authored
Doc update (#219)
* Added mention of binary builds * Simple changes to the window title and about dialog
1 parent 7159ef3 commit d0df725

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cq_editor/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from PyQt5.QtWidgets import QApplication
55

6-
NAME = 'CadQuery GUI (PyQT)'
6+
NAME = 'CQ-editor'
77

88
#need to initialize QApp here, otherewise svg icons do not work on windows
99
app = QApplication(sys.argv,

cq_editor/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.1.1"

cq_editor/main_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ def about(self):
309309

310310
about_dialog(
311311
self,
312-
'CadQuery GUI (PyQT)',
313-
f'Experimental PyQt GUI for CadQuery.\nVersion: {__version__}.'
312+
f'About CQ-editor',
313+
f'PyQt GUI for CadQuery.\nVersion: {__version__}.\nSource Code: https://github.com/CadQuery/CQ-editor',
314314
)
315315

316316
def check_for_cq_updates(self):

0 commit comments

Comments
 (0)