diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-04 19:14:36 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-04 19:14:36 +0000 |
commit | 4ce2164c519d4382b67255523c96c9e03f7fdcc6 (patch) | |
tree | 9e6dfab905735ecb5d30268248a52a9dc81db43a /Resources/Info.plist | |
parent | 2b92e1f1ddefdde3d341b88f0f09421e05e02953 (diff) | |
download | sequelpro-4ce2164c519d4382b67255523c96c9e03f7fdcc6.tar.gz sequelpro-4ce2164c519d4382b67255523c96c9e03f7fdcc6.tar.bz2 sequelpro-4ce2164c519d4382b67255523c96c9e03f7fdcc6.zip |
• initial support for open/save connection files (*.spf)
- Open/Save menu items are hidden
• initial support for drag&drop files *.spf and *.sql to SP's icon or double-click at *.sql or *.spf files in Finder
- SP starts if not already running
- sql files will be executed in the Custom Query if at least one connection is open
- spf files not yet supported
-
Diffstat (limited to 'Resources/Info.plist')
-rw-r--r-- | Resources/Info.plist | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/Resources/Info.plist b/Resources/Info.plist index 2b7e68d0..f62891db 100644 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -9,7 +9,7 @@ <dict> <key>CFBundleTypeExtensions</key> <array> - <string>????</string> + <string>spf</string> </array> <key>CFBundleTypeIconFile</key> <string>appicon.icns</string> @@ -17,7 +17,25 @@ <string>DocumentType</string> <key>CFBundleTypeOSTypes</key> <array> - <string>????</string> + <string>connection</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>NSDocumentClass</key> + <string>TableDocument</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>sql</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>appicon.icns</string> + <key>CFBundleTypeName</key> + <string>DocumentType</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>sql text</string> </array> <key>CFBundleTypeRole</key> <string>Editor</string> @@ -75,6 +93,7 @@ <key>NSSendTypes</key> <array> <string>NSStringPboardType</string> + <string>NSURLPboardType</string> </array> </dict> </array> |