Separate embedded tray icons into platform-specific files, rename the no-cgo systray stub for consistency, and add the app version to the launcher startup log.
12 lines
134 B
Go
12 lines
134 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed icon.ico
|
|
var iconICO []byte
|
|
|
|
func getIcon() []byte {
|
|
return iconICO
|
|
}
|