Drop status bar icon color

Loss of information about "Connected"/"Connecting" state, but
this is the only way for the icon to automatically adjust to
desktop background, be it in light or dark mode. Relying on
colors kind of defeats the macOS HIG.

Might consider a different shape for the "Connecting" state.
This commit is contained in:
Davide De Rosa 2021-10-17 13:49:01 +02:00
parent 0ef8dff171
commit 10fd69579b
4 changed files with 24 additions and 22 deletions

View File

@ -5,50 +5,51 @@
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "1x",
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
]
},
{
"idiom" : "universal",
"filename" : "StatusBarButtonImage@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "StatusBarButtonImage-dark@2x.png",
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "StatusBarButtonImage@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "StatusBarButtonImage@3x.png",
"idiom" : "universal",
"scale" : "3x"
},
{
"idiom" : "universal",
"filename" : "StatusBarButtonImage-dark@3x.png",
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 498 B

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Allow Oeck provider without any purchase.
- Status bar icon color had to be dropped in order to automatically adjust to desktop background color.
### Fixed