diff options
author | vimboss <devnull@localhost> | 2006-04-05 20:41:53 +0000 |
---|---|---|
committer | vimboss <devnull@localhost> | 2006-04-05 20:41:53 +0000 |
commit | 9b6279bee8b73aa78d58be9b07628a7028fd4c49 (patch) | |
tree | 152a03d1d7ea3e8d433addba4f463d8a7a68a5fd /src/infplist.xml | |
parent | 71dc6c679dcc6c0a52d7d45d427f80f41a35728d (diff) | |
download | vim-9b6279bee8b73aa78d58be9b07628a7028fd4c49.tar.gz |
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 f0ba5fc5..c58cf748 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> |