diff --git a/FyneApp.toml b/FyneApp.toml new file mode 100644 index 0000000..82aedfa --- /dev/null +++ b/FyneApp.toml @@ -0,0 +1,6 @@ +[Details] + Icon = "./resources/images/logo512.png" + Name = "Recoil" + ID = "com.songlim.recoil" + Version = "1.0.0" + Build = 1 diff --git a/Makefile b/Makefile index 33b2349..862901c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,10 @@ .PHONY: init init: - go run init/init.go \ No newline at end of file + go run init/init.go + +win-release: + fyne package -os windows + 7z a -tzip "recoil-1.0.0_windows_amd64.zip" Recoil.exe + +release: win-release \ No newline at end of file