diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
commit | 910f66f90c928da8b607ccfdc12fc33d9cb8d4a9 (patch) | |
tree | 152a03d1d7ea3e8d433addba4f463d8a7a68a5fd /src/infplist.xml | |
parent | e2f98b95c8071f772695602cd4f714dc588eb8e7 (diff) | |
download | vim-git-910f66f90c928da8b607ccfdc12fc33d9cb8d4a9.tar.gz |
updated for version 7.0c10v7.0c10
Diffstat (limited to 'src/infplist.xml')
-rw-r--r-- | src/infplist.xml | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/src/infplist.xml b/src/infplist.xml index f0ba5fc58..c58cf7480 100644 --- a/src/infplist.xml +++ b/src/infplist.xml @@ -4,6 +4,8 @@ <plist version="0.9"> <dict> + <key>CFBundleIdentifier</key> + <string>org.vim.Vim-APP_VER</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> @@ -25,19 +27,40 @@ <key>CSResourcesFileMapped</key> <true/> <key>CFBundleIconFile</key> - <string>ICON_APP</string> + <string>app.icns</string> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> - <string>*</string> + <string>txt</string> + <string>text</string> + </array> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>text/plain</string> </array> <key>CFBundleTypeIconFile</key> <string>doc-txt.icns</string> <key>CFBundleTypeName</key> - <string>NSStringPboardType</string> + <string>Text File</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>*</string> + </array> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>text/*</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>doc.icns</string> + <key>CFBundleTypeName</key> + <string>File</string> <key>CFBundleTypeOSTypes</key> <array> <string>****</string> |