diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-10 13:47:24 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-10 13:47:24 +0000 |
commit | bb99430f93b2e3c89c28cc44257635709f0fdd39 (patch) | |
tree | 74f2eb41f7942c1739641b01febf15f0d23dbfa7 /Resources | |
parent | 169fb3fffeff55cff32952a82adba055dfc050f9 (diff) | |
download | sequelpro-bb99430f93b2e3c89c28cc44257635709f0fdd39.tar.gz sequelpro-bb99430f93b2e3c89c28cc44257635709f0fdd39.tar.bz2 sequelpro-bb99430f93b2e3c89c28cc44257635709f0fdd39.zip |
• improved Bundle support; now it the passed input string will be saved as temp file SP_BUNDLE_INPUT_FILE since stdin and shell vars are difficult to handle for a large amount of data
• fixed AppleScript class definition since it was renamed
• added support for the URL scheme 'sequel' to allow to interact with Sequel Pro eg via bash: open 'sequelpro://executequery=select%205' [not yet implemented ;)]
Diffstat (limited to 'Resources')
-rw-r--r-- | Resources/Plists/Info.plist | 12 | ||||
-rw-r--r-- | Resources/Scripting/sequel-pro.scriptTerminology | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/Resources/Plists/Info.plist b/Resources/Plists/Info.plist index ecf74ffb..3f900c11 100644 --- a/Resources/Plists/Info.plist +++ b/Resources/Plists/Info.plist @@ -302,5 +302,15 @@ </dict> </dict> </array> -</dict> + <key>CFBundleURLTypes</key> + <array> + <dict> + <key>CFBundleURLName</key> + <string>Sequel Pro URL scheme</string> + <key>CFBundleURLSchemes</key> + <array> + <string>sequelpro</string> + </array> + </dict> + </array></dict> </plist> diff --git a/Resources/Scripting/sequel-pro.scriptTerminology b/Resources/Scripting/sequel-pro.scriptTerminology index cf65a7f3..b19c8ad0 100644 --- a/Resources/Scripting/sequel-pro.scriptTerminology +++ b/Resources/Scripting/sequel-pro.scriptTerminology @@ -8,7 +8,7 @@ "PluralName" = "applications"; "Description" = "Sequel Pro's top level scripting object."; }; - "TableDocument" = { + "SPDatabaseDocument" = { "Name" = "document"; "PluralName" = "documents"; "Description" = "A Sequel Pro document."; |