nandi/oripublic Fork 0
ca7e020cbb6442f047e0002eb9831ba29f8a17af
Commits
Clone
git clone https://git.rickub.com/nandi/ori.git
git clone ssh://git@rickub.com/nandi/ori.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

forked from bots-garden/ori

Info.plist · 68 lines · 2.3 KBText Blame HistoryRaw
✨ Workspace panel, selectors, previews, desktop app, sandbox template, resizable file tree, light/dark theme 76d62ac k33g yesterday1<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
2<plist version="1.0">
3 <dict>
4 <key>CFBundlePackageType</key>
5 <string>APPL</string>
6 <key>CFBundleName</key>
7 <string>{{.Info.ProductName}}</string>
8 <key>CFBundleExecutable</key>
9 <string>{{.OutputFilename}}</string>
10 <key>CFBundleIdentifier</key>
11 <string>com.wails.{{safeBundleID .Name}}</string>
12 <key>CFBundleVersion</key>
13 <string>{{.Info.ProductVersion}}</string>
14 <key>CFBundleGetInfoString</key>
15 <string>{{.Info.Comments}}</string>
16 <key>CFBundleShortVersionString</key>
17 <string>{{.Info.ProductVersion}}</string>
18 <key>CFBundleIconFile</key>
19 <string>iconfile</string>
20 <key>LSMinimumSystemVersion</key>
21 <string>10.13.0</string>
22 <key>NSAppTransportSecurity</key>
23 <dict>
24 <key>NSAllowsLocalNetworking</key>
25 <true/>
26 </dict>
27 <key>NSHighResolutionCapable</key>
28 <string>true</string>
29 <key>NSHumanReadableCopyright</key>
30 <string>{{.Info.Copyright}}</string>
31 {{if .Info.FileAssociations}}
32 <key>CFBundleDocumentTypes</key>
33 <array>
34 {{range .Info.FileAssociations}}
35 <dict>
36 <key>CFBundleTypeExtensions</key>
37 <array>
38 <string>{{.Ext}}</string>
39 </array>
40 <key>CFBundleTypeName</key>
41 <string>{{.Name}}</string>
42 <key>CFBundleTypeRole</key>
43 <string>{{.Role}}</string>
44 <key>CFBundleTypeIconFile</key>
45 <string>{{.IconName}}</string>
46 </dict>
47 {{end}}
48 </array>
49 {{end}}
50 {{if .Info.Protocols}}
51 <key>CFBundleURLTypes</key>
52 <array>
53 {{range .Info.Protocols}}
54 <dict>
55 <key>CFBundleURLName</key>
56 <string>com.wails.{{.Scheme}}</string>
57 <key>CFBundleURLSchemes</key>
58 <array>
59 <string>{{.Scheme}}</string>
60 </array>
61 <key>CFBundleTypeRole</key>
62 <string>{{.Role}}</string>
63 </dict>
64 {{end}}
65 </array>
66 {{end}}
67 </dict>
68</plist>