update dlangui dep; fix debug console usage under windows

This commit is contained in:
Vadim Lopatin 2016-09-14 14:16:31 +03:00
parent ac58083940
commit 3b67751e27
3 changed files with 7 additions and 6 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": { "dependencies": {
"dlangui": "==0.9.4", "dlangui": "==0.9.5",
"dcd": "~>0.8.0" "dcd": "~>0.8.0"
}, },

View File

@ -266,7 +266,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
string tty = _logPanel.terminalDeviceName; string tty = _logPanel.terminalDeviceName;
if (project.runInExternalConsole) { if (project.runInExternalConsole) {
version(Windows) { version(Windows) {
if (program.isMagoDebugger && BACKEND_GUI) if (program.isMagoDebugger)
tty = "external-console"; tty = "external-console";
} else { } else {
externalConsoleExecutable = _settings.terminalExecutable; externalConsoleExecutable = _settings.terminalExecutable;

View File

@ -11,15 +11,16 @@ import std.regex;
import std.algorithm : startsWith; import std.algorithm : startsWith;
import std.string; import std.string;
static if (BACKEND_CONSOLE) { //static if (BACKEND_CONSOLE) {
enum ENABLE_INTERNAL_TERMINAL = true; // enum ENABLE_INTERNAL_TERMINAL = true;
} else { //} else {
version (Windows) { version (Windows) {
enum ENABLE_INTERNAL_TERMINAL = false; enum ENABLE_INTERNAL_TERMINAL = false;
} else { } else {
enum ENABLE_INTERNAL_TERMINAL = true; enum ENABLE_INTERNAL_TERMINAL = true;
} }
} //}
enum ENABLE_INTERNAL_TERMINAL_TEST = false; enum ENABLE_INTERNAL_TERMINAL_TEST = false;
/// event listener to navigate by error/warning position /// event listener to navigate by error/warning position