wails3 build v3 alpha delegates to Taskfile; the go build produces a raw binary, not a .app. Package step now creates the bundle structure (Contents/MacOS, Info.plist) and zips it.
29 lines
882 B
XML
29 lines
882 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>oikos-desktop</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.hubris.oikos-desktop</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Oikos</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(VERSION)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>$(VERSION)</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>13.0</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Copyright © 2026 Hubris. All rights reserved.</string>
|
|
</dict>
|
|
</plist>
|