diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-09-25 14:09:27 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-09-25 14:09:27 +0000 |
commit | d14a032b6d2ea3c75f46b977e62afc958ae29db2 (patch) | |
tree | 259fd47c45ebaf3dba987bebf6ebab1d1c71a3b0 /Resources/PreferenceDefaults.plist | |
parent | fce952cc656576c8f8cb6ec06785fdeab495066d (diff) | |
download | sequelpro-d14a032b6d2ea3c75f46b977e62afc958ae29db2.tar.gz sequelpro-d14a032b6d2ea3c75f46b977e62afc958ae29db2.tar.bz2 sequelpro-d14a032b6d2ea3c75f46b977e62afc958ae29db2.zip |
• re-enabled field editor's QuickLook for 10.6
- This is up to now a kind of a 'hack' since SP will be compiled against SDK10.5 but if SP runs on 10.6 it'll use code from a 10.6 framework.
- Under 10.6 full screen mode is available and QL does run in its own run loop ie now it's non-modal
- Changed the way of removing temp files; now all files will be deleted while closing the sheet to fix issues if the user double-click at the QL item and the called app was too slow - this ended up in getting the message 'File not found'
- Changed default container extension for images since 'pict' isn't support under 64bit 10.6; now SP makes usage of 'icns'
• outsourced QuickLook types (show as pull down menu) to SP's preference plist. (up to now only 'power users' can change that type list via a Property List editor)
• enhanced the caching behaviour of the sheet editor in terms of triggering a refresh if the text content was changed (this fixes the issue that it could happen that binary data were interpreted as text data)
Diffstat (limited to 'Resources/PreferenceDefaults.plist')
-rw-r--r-- | Resources/PreferenceDefaults.plist | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/Resources/PreferenceDefaults.plist b/Resources/PreferenceDefaults.plist index 4f127c88..825a093d 100644 --- a/Resources/PreferenceDefaults.plist +++ b/Resources/PreferenceDefaults.plist @@ -106,5 +106,88 @@ <true/> <key>PrintImagePreviews</key> <true/> + <key>QuickLookTypes</key> + <array> + <dict> + <key>MenuLabel</key> + <string>Image</string> + <key>Extension</key> + <string>icns</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Sound (m4a)</string> + <key>Extension</key> + <string>m4a</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Sound (mp3)</string> + <key>Extension</key> + <string>mp3</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Sound (linear)</string> + <key>Extension</key> + <string>wav</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Movie (mov)</string> + <key>Extension</key> + <string>mov</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>PDF</string> + <key>Extension</key> + <string>pdf</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>HTML</string> + <key>Extension</key> + <string>html</string> + <key>treatAsText</key> + <true/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Word Document</string> + <key>Extension</key> + <string>doc</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>Word Document (xml)</string> + <key>Extension</key> + <string>docx</string> + <key>treatAsText</key> + <false/> + </dict> + <dict> + <key>MenuLabel</key> + <string>RTF</string> + <key>Extension</key> + <string>rtf</string> + <key>treatAsText</key> + <false/> + </dict> + </array> </dict> </plist> |