Embed app icon and polish Windows build

This commit is contained in:
mixeme
2026-06-14 23:53:08 +03:00
parent a9d1d9529e
commit 59718e21b4
9 changed files with 24 additions and 28 deletions
+14
View File
@@ -0,0 +1,14 @@
package assets
import (
_ "embed"
"fyne.io/fyne/v2"
)
//go:embed pysentry-icon.png
var iconBytes []byte
func Icon() fyne.Resource {
return fyne.NewStaticResource("pysentry-icon.png", iconBytes)
}