mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 18:18:00 +02:00
Fixed ability to cancel downloads
This commit is contained in:
parent
43c82515fe
commit
d26e2957b0
7 changed files with 82 additions and 17 deletions
|
@ -27,7 +27,7 @@ TargetDirectory = "$(WorkspaceDir)/dist"
|
|||
TargetName = "BeefIDE_d"
|
||||
OtherLinkFlags = "$(LinkFlags) Comdlg32.lib kernel32.lib user32.lib advapi32.lib shell32.lib IDEHelper64_d.lib"
|
||||
CLibType = "Dynamic"
|
||||
DebugCommandArguments = "-test=scripts\\Minidump.txt -testNoExit -verbosity=Diagnostic"
|
||||
DebugCommandArguments = "-test=scripts\\Minidump.txt -testNoExit -verbosity=diagnostic"
|
||||
DebugWorkingDirectory = "c:\\Beef\\IDE\\Tests\\EmptyTest"
|
||||
EnvironmentVars = ["_NO_DEBUG_HEAP=1"]
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
SetSymSrvOptions("C:/SymCache", "http://symbols.beeflang.org/\nhttps://msdl.microsoft.com/download/symbols", "TempCache")
|
||||
#SetSymSrvOptions("C:/SymCache", "https://msdl.microsoft.com/download/symbols\nhttps://chromium-browser-symsrv.commondatastorage.googleapis.com", "TempCache")
|
||||
#SetSymSrvOptions("C:/SymCache", "https://msdl.microsoft.com/download/symbols\nhttps://chromium-browser-symsrv.commondatastorage.googleapis.com", "None")
|
||||
#SetSymSrvOptions("C:/SymCache", "http://127.0.0.1:8042", "TempCache")
|
||||
|
||||
OpenCrashDump("dumps/Chrome1.dmp")
|
||||
WaitForPaused()
|
||||
|
|
|
@ -6292,6 +6292,8 @@ namespace IDE
|
|||
mVerbosity = .Detailed;
|
||||
else if (value == "diagnostic")
|
||||
mVerbosity = .Diagnostic;
|
||||
else
|
||||
Fail(scope String()..AppendF("Invalid verbosity option: {}", value));
|
||||
case "-workspace","-proddir":
|
||||
var relDir = scope String(value);
|
||||
if ((relDir.EndsWith("\\")) || relDir.EndsWith("\""))
|
||||
|
@ -10465,7 +10467,7 @@ namespace IDE
|
|||
bool isOutput = (cmd == "msg") || (cmd == "dbgEvalMsg") || (cmd == "log");
|
||||
if (cmd == "msgLo")
|
||||
{
|
||||
if (mVerbosity <= .Diagnostic)
|
||||
if (mVerbosity < .Diagnostic)
|
||||
continue;
|
||||
isOutput = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue