Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mac/Info.plist.template')
-rw-r--r--mac/Info.plist.template37
1 files changed, 37 insertions, 0 deletions
diff --git a/mac/Info.plist.template b/mac/Info.plist.template
new file mode 100644
index 000000000..5185e67da
--- /dev/null
+++ b/mac/Info.plist.template
@@ -0,0 +1,37 @@
+<?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>CFBundleExecutable</key>
+ <string>launch.sh</string>
+ <key>CFBundleIdentifier</key>
+ <string>org.gajim.mac</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>Gajim</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>${short_version_string}</string>
+ <key>CFBundleSignature</key>
+ <string>DASH</string>
+ <key>CFBundleVersion</key>
+ <string>${version}</string>
+ <key>CFBundleIconFile</key>
+ <string>Gajim</string>
+ <key>CFBundleURLTypes</key>
+ <array>
+ <dict>
+ <key>CFBundleTypeRole</key>
+ <string>Viewer</string>
+ <key>CFBundleURLName</key>
+ <string>XMPP</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>xmpp</string>
+ </array>
+ </dict>
+ </array>
+</dict>
+</plist>