diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-10 18:57:26 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-11 07:36:51 +0200 |
commit | 9d17b3dc4628215cb2fb9c83fe71874f262d057d (patch) | |
tree | 67898ff830567ae1683cd4fe7d064bbf4cac0221 /applications | |
parent | 62e18390cce39a24c94e2d4b611b9f9985999a43 (diff) | |
download | kube-9d17b3dc4628215cb2fb9c83fe71874f262d057d.tar.gz kube-9d17b3dc4628215cb2fb9c83fe71874f262d057d.zip |
Embed the commit in the version string
Diffstat (limited to 'applications')
-rw-r--r-- | applications/kube/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/kube/main.cpp b/applications/kube/main.cpp index e0d37fc2..a146a8a7 100644 --- a/applications/kube/main.cpp +++ b/applications/kube/main.cpp | |||
@@ -166,7 +166,7 @@ int main(int argc, char *argv[]) | |||
166 | QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true); | 166 | QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true); |
167 | QApplication app(argc, argv); | 167 | QApplication app(argc, argv); |
168 | app.setApplicationName("kube"); | 168 | app.setApplicationName("kube"); |
169 | app.setApplicationVersion(kube_VERSION_STRING); | 169 | app.setApplicationVersion(QString("%1 Branch: %2 Commit: %3").arg(kube_VERSION_STRING).arg(kube_BRANCH).arg(kube_COMMIT)); |
170 | app.setFont(QFont{"Noto Sans", app.font().pointSize(), QFont::Normal}); | 170 | app.setFont(QFont{"Noto Sans", app.font().pointSize(), QFont::Normal}); |
171 | 171 | ||
172 | 172 | ||