Compare commits
No commits in common. "0f82360369f3a80c22a4722f838bd8347b444a7b" and "c01446a082ee5833fb13de02a7c1ec7069e095fe" have entirely different histories.
0f82360369
...
c01446a082
|
|
@ -33,7 +33,6 @@ jobs:
|
||||||
notarization-api-key-base64: ${{ secrets.MACOS_NOTARY_KEY }}
|
notarization-api-key-base64: ${{ secrets.MACOS_NOTARY_KEY }}
|
||||||
notarization-api-key-id: ${{ secrets.MACOS_NOTARY_KEY_ID }}
|
notarization-api-key-id: ${{ secrets.MACOS_NOTARY_KEY_ID }}
|
||||||
notarization-api-issuer-id: ${{ secrets.MACOS_NOTARY_ISSUER_ID }}
|
notarization-api-issuer-id: ${{ secrets.MACOS_NOTARY_ISSUER_ID }}
|
||||||
extra-build-flags: '-ldflags "-X main.VersionNumber=${{ forgejo.ref_name }}"'
|
|
||||||
s3-bucket: lmika-public-files
|
s3-bucket: lmika-public-files
|
||||||
s3-key: Apps/Dequoter/{version}/{filename}
|
s3-key: Apps/Dequoter/{version}/{filename}
|
||||||
s3-region: ap-southeast-2
|
s3-region: ap-southeast-2
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 46 KiB |
|
|
@ -1,8 +0,0 @@
|
||||||
package icon_asset
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
)
|
|
||||||
|
|
||||||
//go:embed appicon.png
|
|
||||||
var AppIcon []byte
|
|
||||||
2
main.go
2
main.go
|
|
@ -1,7 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"dequoter/icon_asset"
|
|
||||||
"embed"
|
"embed"
|
||||||
"log"
|
"log"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
@ -65,7 +64,6 @@ func main() {
|
||||||
About: &mac.AboutInfo{
|
About: &mac.AboutInfo{
|
||||||
Title: "Dequoter",
|
Title: "Dequoter",
|
||||||
Message: "© 2025-2026 Leon Mika\nVersion: " + VersionNumber,
|
Message: "© 2025-2026 Leon Mika\nVersion: " + VersionNumber,
|
||||||
Icon: icon_asset.AppIcon,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue