-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support different icons on windows
- Loading branch information
Patrick Falk Nielsen
committed
Dec 18, 2023
1 parent
e74b8c7
commit d368c0c
Showing
22 changed files
with
85 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
//go:build darwin | ||
|
||
package assets | ||
|
||
import _ "embed" | ||
|
||
//go:embed osx/green-circle-icon.png | ||
var StatusIconGreen []byte | ||
|
||
//go:embed osx/red-circle-icon.png | ||
var StatusIconRed []byte | ||
|
||
//go:embed osx/icon.png | ||
var Icon []byte | ||
|
||
//go:embed osx/icon-1.png | ||
var AnimateIcon1 []byte | ||
|
||
//go:embed osx/icon-2.png | ||
var AnimateIcon2 []byte | ||
|
||
//go:embed osx/icon-3.png | ||
var AnimateIcon3 []byte | ||
|
||
//go:embed osx/icon-4.png | ||
var AnimateIcon4 []byte | ||
|
||
//go:embed osx/icon-5.png | ||
var AnimateIcon5 []byte | ||
|
||
//go:embed osx/icon-6.png | ||
var AnimateIcon6 []byte |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
//go:build windows | ||
|
||
package assets | ||
|
||
import _ "embed" | ||
|
||
//go:embed win/green-circle-icon.ico | ||
var StatusIconGreen []byte | ||
|
||
//go:embed win/red-circle-icon.ico | ||
var StatusIconRed []byte | ||
|
||
//go:embed win/icon.ico | ||
var Icon []byte | ||
|
||
//go:embed win/icon-1.ico | ||
var AnimateIcon1 []byte | ||
|
||
//go:embed win/icon-2.ico | ||
var AnimateIcon2 []byte | ||
|
||
//go:embed win/icon-3.ico | ||
var AnimateIcon3 []byte | ||
|
||
//go:embed win/icon-4.ico | ||
var AnimateIcon4 []byte | ||
|
||
//go:embed win/icon-5.ico | ||
var AnimateIcon5 []byte | ||
|
||
//go:embed win/icon-6.ico | ||
var AnimateIcon6 []byte |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.