diff options
author | Max Horn | 2007-11-22 14:01:00 +0000 |
---|---|---|
committer | Max Horn | 2007-11-22 14:01:00 +0000 |
commit | c277ac699f1accaf3ea2fd9e818ad945f1e45e95 (patch) | |
tree | 88a854bfa50e3fa5ed766b01c27ef9c2b5498db3 /dists/iphone | |
parent | c7b3130b660e7eec88e77e9e287f184e882d7ef0 (diff) | |
download | scummvm-rg350-c277ac699f1accaf3ea2fd9e818ad945f1e45e95.tar.gz scummvm-rg350-c277ac699f1accaf3ea2fd9e818ad945f1e45e95.tar.bz2 scummvm-rg350-c277ac699f1accaf3ea2fd9e818ad945f1e45e95.zip |
Made iPhone Info.plist be generated from Info.plist.in, like all other source files which contain the version string; also fixed the CFBundleIdentifier (we have .org domain, not .com). TODO: Somebody check which keys are supported by the iPhone's Info.plist
svn-id: r29610
Diffstat (limited to 'dists/iphone')
-rw-r--r-- | dists/iphone/Info.plist | 4 | ||||
-rw-r--r-- | dists/iphone/Info.plist.in | 26 |
2 files changed, 29 insertions, 1 deletions
diff --git a/dists/iphone/Info.plist b/dists/iphone/Info.plist index 334bfa8588..0791b3a4fc 100644 --- a/dists/iphone/Info.plist +++ b/dists/iphone/Info.plist @@ -7,7 +7,7 @@ <key>CFBundleExecutable</key> <string>ScummVM</string> <key>CFBundleIdentifier</key> - <string>com.scummvm.scummvm</string> + <string>org.scummvm.scummvm</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> @@ -18,6 +18,8 @@ <string>1.0.0</string> <key>CFBundleSignature</key> <string>????</string> + <key>CFBundleShortVersionString</key> + <string>0.11.0svn</string> <key>CFBundleVersion</key> <string>svn</string> </dict> diff --git a/dists/iphone/Info.plist.in b/dists/iphone/Info.plist.in new file mode 100644 index 0000000000..1425ef388d --- /dev/null +++ b/dists/iphone/Info.plist.in @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//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>ScummVM</string> + <key>CFBundleIdentifier</key> + <string>org.scummvm.scummvm</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>ScummVM</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleShortVersionString</key> + <string>@VERSION@</string> + <key>CFBundleVersion</key> + <string>svn</string> +</dict> +</plist> |