diff --git a/README.md b/README.md
index 657a26d..bda87d6 100644
--- a/README.md
+++ b/README.md
@@ -14,8 +14,7 @@ texteditor, Graphviz-viewer and a terminal open at all times. Not anymore!
`GraphDonkey`, originally called `DotGaper`, solves this issue by combining
these applications into one.
-**Current Version:** `0.1.1`
-**Build Type:** `beta`
+**Latest Release Version:** _Jack-in-a-Box_ (`v0.1.1`)
**Executable OS:** Only `Linux` at this point in time
(maybe Mac as well, but cannot confirm)
**Author:** Randy Paredis
diff --git a/__main__.py b/__main__.py
index 4e864a0..ea1de3a 100644
--- a/__main__.py
+++ b/__main__.py
@@ -15,12 +15,12 @@
print("LAUNCING APP...")
print("GraphViz Version:", graphviz.__version__)
-print("GraphDonkey Version:", Constants.APP_VERSION)
+print("GraphDonkey Version:", Constants.APP_VERSION_NAME, "(" + Constants.APP_VERSION + ")")
app = QtWidgets.QApplication(sys.argv)
app.setApplicationName(Constants.APP_NAME)
app.setApplicationVersion(Constants.APP_VERSION)
-app.setApplicationDisplayName(Constants.APP_NAME + " v" + Constants.APP_VERSION)
+app.setApplicationDisplayName(Constants.APP_NAME + " [" + Constants.APP_VERSION_NAME + "] v" + Constants.APP_VERSION)
app.setWindowIcon(Constants.APP_ICON)
mainwindow = MainWindow()
diff --git a/main/MainWindow.py b/main/MainWindow.py
index 3b7c307..9bbc43f 100644
--- a/main/MainWindow.py
+++ b/main/MainWindow.py
@@ -258,7 +258,7 @@ def aboutGraphDonkey(self):
"
A simple and easy-to-use application for visualizing and editing Graphviz Dot files. It is " "based on the idea of xdot, combined with a texteditor that can live-update the images.
" "Current version is %s.
" - "Created by Randy Paredis." % Constants.APP_VERSION) + "
Created by Randy Paredis." % (Constants.APP_VERSION_NAME + " v" + Constants.APP_VERSION)) def aboutQt(self): QtWidgets.QMessageBox.aboutQt(self) \ No newline at end of file diff --git a/main/extra/Constants.py b/main/extra/Constants.py index 07babc7..a16d881 100644 --- a/main/extra/Constants.py +++ b/main/extra/Constants.py @@ -8,6 +8,7 @@ APP_NAME = "GraphDonkey" APP_VERSION = "0.1.1" +APP_VERSION_NAME = "Jack-in-a-Box" APP_ICON = QIcon(IOHandler.dir_icons("graphdonkey.svg")) ICON_GRAPHVIZ = QImage(IOHandler.dir_icons("graphviz.png"))