New images for 'Message Log' (#2779)

This commit is contained in:
Gary Elshaw 2022-04-03 13:08:39 +12:00 committed by GitHub
parent 76f44b4b6f
commit 57b03114dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 77 additions and 7 deletions

View File

@ -239,6 +239,7 @@ set(${PROJECT_NAME}_HIDPI_IMAGES
ActionHover
ActionOn
Bandwidth
BlueDotFlat
CleanupTemplate
CompleteCheck
CreateLarge
@ -246,6 +247,7 @@ set(${PROJECT_NAME}_HIDPI_IMAGES
DownArrowTemplate
FavIcon
Globe
GreenDotFlat
Groups
GroupsNoneTemplate
InfoActivity
@ -256,6 +258,7 @@ set(${PROJECT_NAME}_HIDPI_IMAGES
InfoTracker
Lock
Magnet
OrangeDotFlat
PauseHover
PauseOff
PauseOn

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 520 B

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "mac",
"filename" : "BlueDotFlat.png",
"scale" : "1x"
},
{
"idiom" : "mac",
"filename" : "BlueDotFlat@2x.png",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
},
"properties" : {
"template-rendering-intent" : "original"
}
}

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "mac",
"filename" : "GreenDotFlat.png",
"scale" : "1x"
},
{
"idiom" : "mac",
"filename" : "GreenDotFlat@2x.png",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
},
"properties" : {
"template-rendering-intent" : "original"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 B

View File

@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "mac",
"filename" : "OrangeDotFlat.png",
"scale" : "1x"
},
{
"idiom" : "mac",
"filename" : "OrangeDotFlat@2x.png",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
},
"properties" : {
"template-rendering-intent" : "original"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 B

After

Width:  |  Height:  |  Size: 381 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 B

After

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 575 B

View File

@ -47,11 +47,11 @@
<font key="font" metaFont="menu"/>
<menu key="menu" title="OtherViews" id="16">
<items>
<menuItem title="Error" state="on" image="RedDotFlat" id="17"/>
<menuItem title="Warn" image="RedDotFlat" id="yoL-9H-kTt"/>
<menuItem title="Info" image="YellowDotFlat" id="18"/>
<menuItem title="Debug" image="PurpleDotFlat" id="19"/>
<menuItem title="Trace" image="PurpleDotFlat" id="2hu-LL-6A5"/>
<menuItem title="Error" state="on" image="RedDotFlat"/>
<menuItem title="Warn" image="OrangeDotFlat"/>
<menuItem title="Info" image="GreenDotFlat"/>
<menuItem title="Debug" image="BlueDotFlat"/>
<menuItem title="Trace" image="PurpleDotFlat"/>
</items>
</menu>
</popUpButtonCell>

View File

@ -270,13 +270,17 @@
{
case TR_LOG_CRITICAL:
case TR_LOG_ERROR:
case TR_LOG_WARN:
return [NSImage imageNamed:@"RedDotFlat"];
case TR_LOG_WARN:
return [NSImage imageNamed:@"OrangeDotFlat"];
case TR_LOG_INFO:
return [NSImage imageNamed:@"YellowDotFlat"];
return [NSImage imageNamed:@"GreenDotFlat"];
case TR_LOG_DEBUG:
return [NSImage imageNamed:@"BlueDotFlat"];
case TR_LOG_TRACE:
return [NSImage imageNamed:@"PurpleDotFlat"];