diff --git a/.github/workflows/snapshot-signed.yml b/.github/workflows/snapshot-signed.yml
index c946695..b05d229 100644
--- a/.github/workflows/snapshot-signed.yml
+++ b/.github/workflows/snapshot-signed.yml
@@ -125,10 +125,13 @@ jobs:
- name: Codesign & Notarize
run: |
- codesign -s "5372643C69B1D499BDF6EA772082E9CE99E85029" -v ./build/bin/ftb-debug-ui.app --options=runtime --timestamp
- codesign -dv ./build/bin/ftb-debug-ui.app
+ cd ./build/bin
+ codesign -s "5372643C69B1D499BDF6EA772082E9CE99E85029" -v ./ftb-debug-ui.app --options=runtime --timestamp
+ codesign -dv ./ftb-debug-ui.app
echo "${{secrets.APPLE_API_KEY}}" > apple_api_key.p8
- xcrun notarytool submit "./out/ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip" --key "./apple_api_key.p8" --key-id ${{ secrets.APPLE_API_KEY_ID }} --issuer ${{ secrets.APPLE_API_ISSUER }} --wait
+ zip -r ../../out/ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip ftb-debug-ui.app
+ cd ../../out
+ xcrun notarytool submit "./ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip" --key "./apple_api_key.p8" --key-id ${{ secrets.APPLE_API_KEY_ID }} --issuer ${{ secrets.APPLE_API_ISSUER }} --wait
- name: Archive artifacts
uses: actions/upload-artifact@v4
diff --git a/build/darwin/Info.dev.plist b/build/darwin/Info.dev.plist
index 04727c2..4bef2b6 100644
--- a/build/darwin/Info.dev.plist
+++ b/build/darwin/Info.dev.plist
@@ -8,7 +8,7 @@
CFBundleExecutable
{{.Name}}
CFBundleIdentifier
- com.wails.{{.Name}}
+ dev.ftb.{{.Name}}
CFBundleVersion
{{.Info.ProductVersion}}
CFBundleGetInfoString
@@ -48,7 +48,7 @@
{{range .Info.Protocols}}
CFBundleURLName
- com.wails.{{.Scheme}}
+ dev.ftb.{{.Scheme}}
CFBundleURLSchemes
{{.Scheme}}
diff --git a/build/darwin/Info.plist b/build/darwin/Info.plist
index 19cc937..5b4de1f 100644
--- a/build/darwin/Info.plist
+++ b/build/darwin/Info.plist
@@ -8,7 +8,7 @@
CFBundleExecutable
{{.Name}}
CFBundleIdentifier
- com.wails.{{.Name}}
+ dev.ftb.{{.Name}}
CFBundleVersion
{{.Info.ProductVersion}}
CFBundleGetInfoString
@@ -48,7 +48,7 @@
{{range .Info.Protocols}}
CFBundleURLName
- com.wails.{{.Scheme}}
+ dev.ftb.{{.Scheme}}
CFBundleURLSchemes
{{.Scheme}}
diff --git a/build/windows/wails.exe.manifest b/build/windows/wails.exe.manifest
index 17e1a23..bde1f1a 100644
--- a/build/windows/wails.exe.manifest
+++ b/build/windows/wails.exe.manifest
@@ -1,6 +1,6 @@
-
+
diff --git a/wails.json b/wails.json
index 5f7f1dd..b2c69e4 100644
--- a/wails.json
+++ b/wails.json
@@ -9,5 +9,12 @@
"author": {
"name": "Feed-the-Beast",
"email": "admin@feed-the-beast.com"
+ },
+ "info": {
+ "companyName": "Feed-the-Beast",
+ "productName": "FTB Debug",
+ "productVersion": "2.1.0",
+ "copyright": "Feed-the-Beast",
+ "comments": "Debug tool for the FTB App"
}
}