mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-24 02:28:01 +02:00
Added a green "SUCCESS" message for successful builds
This commit is contained in:
parent
1a187de4c9
commit
d7d88585d2
5 changed files with 18 additions and 9 deletions
|
@ -306,6 +306,10 @@ namespace IDE.ui
|
|||
{
|
||||
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "WARNING".Length, (.)SourceElementType.BuildWarning));
|
||||
}
|
||||
if (line.StartsWith("SUCCESS:"))
|
||||
{
|
||||
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "SUCCESS".Length, (.)SourceElementType.BuildSuccess));
|
||||
}
|
||||
Write(line);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -806,6 +806,7 @@ namespace IDE.ui
|
|||
|
||||
0xFFFF8080, // BuildError
|
||||
0xFFFFFF80, // BuildWarning
|
||||
0xFF80FF80, // BuildSuccess
|
||||
|
||||
0xFF9090C0, // VisibleWhiteSpace
|
||||
) ~ delete _;
|
||||
|
|
|
@ -47,6 +47,7 @@ namespace IDE.ui
|
|||
|
||||
BuildError,
|
||||
BuildWarning,
|
||||
BuildSuccess,
|
||||
|
||||
VisibleWhiteSpace
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue