From b0aa592f73c6e34558beba9e470498816280b936 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Wed, 13 Sep 2017 14:57:57 +0300 Subject: [PATCH] fix #264 - show dlangui version in about --- dub.json | 4 ++-- src/dlangide/ui/frame.d | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/dub.json b/dub.json index 78dcd4d..092788b 100644 --- a/dub.json +++ b/dub.json @@ -9,10 +9,10 @@ "targetPath": "bin", "targetType": "executable", - "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], + "stringImportPaths": ["views"], "dependencies": { - "dlangui": "==0.9.129", + "dlangui": "==0.9.130", "dsymbol": "~>0.2.9", "dcd": "~>0.9.1" }, diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 85e2e6b..2b4477c 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -931,8 +931,11 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL //debug { // testDCDFailAfterThreadCreation(); //} + dstring msg = "DLangIDE\n(C) Vadim Lopatin, 2014-2017\nhttp://github.com/buggins/dlangide\n" + ~ "IDE for D programming language written in D\nUses DlangUI library " + ~ DLANGUI_VERSION ~ " for GUI"d; window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION, - UIString.fromRaw("DLangIDE\n(C) Vadim Lopatin, 2014-2017\nhttp://github.com/buggins/dlangide\nIDE for D programming language written in D\nUses DlangUI library for GUI"d)); + UIString.fromRaw(msg)); return true; case StandardAction.OpenUrl: platform.openURL(a.stringParam);