mirror of https://github.com/buggins/dlangide.git
fix #264 - show dlangui version in about
This commit is contained in:
parent
bb3ca2f7b5
commit
b0aa592f73
4
dub.json
4
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"
|
||||
},
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue