fix #264 - show dlangui version in about

This commit is contained in:
Vadim Lopatin 2017-09-13 14:57:57 +03:00
parent bb3ca2f7b5
commit b0aa592f73
2 changed files with 6 additions and 3 deletions

View File

@ -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"
},

View File

@ -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);