aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPAppController.m
Commit message (Collapse)AuthorAgeFilesLines
* Fixes for previous commit.Stuart Connolly2013-11-241-6/+6
|
* Fix deprecation warnings.Stuart Connolly2013-11-241-55/+52
|
* Cleaned up Format string is not a string literal (potentially insecure) errorsMarius Ursache2013-11-091-10/+10
|
* Allow opened SQL files to be saved back to the original file, addressing ↵rowanbeentje2013-09-081-84/+16
| | | | | | | | | Issue #1805: - Add new menu item for "Save Query", making the existing item "Save Query As" as an alternate - Track the opened SQL file and used encoding to be able to easily save the same file again - Standardise encoding detection to use the UniversalDetector framework and use that for opened SQL files where the encoding menu is not used
* - Add .sql files opened via File > Open to the Recent Files menu for Issue ↵rowanbeentje2013-09-031-0/+2
| | | | #1011 (note that File > Import files are *not* currently added)
* - Address further Release/Distribution build warningsrowanbeentje2013-05-221-7/+7
|
* Minor tidy up.stuconnolly2013-02-171-1/+1
|
* Fix more warnings.stuconnolly2013-02-021-3/+3
|
* Move the flex parsing function definitions to their own file so they're not ↵stuconnolly2013-01-251-11/+1
| | | | duplicated in multiple places.
* Fix more warnings.stuconnolly2013-01-251-0/+1
|
* Fix more warnings.stuconnolly2013-01-251-4/+4
|
* Fix warnings due to not conforming to 10.6 protocols.stuconnolly2013-01-241-0/+1
|
* * Please note this revision will re-prompt for access to all KeyChain ↵rowanbeentje2012-11-181-0/+3
| | | | | | | | | | passwords * - Change the bundle identifier from com.google.code.sequel-pro to com.sequelpro.SequelPro - Change the code signing process to use a new identity and requirement, to add Developer ID support on 10.7+ but to also maintain functionality on 10.5+ - Add a preference migration routine to copy the old application defaults to the new bundle identifier's defaults - Re-order the default keys to alphabetical to more easily locate values
* Useless comment.stuconnolly2012-10-161-3/+0
|
* Fix selector warning.stuconnolly2012-10-071-54/+65
|
* Issue 1470: [REQ] Support for bundling default Themesbamse162012-10-051-0/+53
| | | | | | Themes will be copied from Default Themes to ~/Library/Application Support/Sequel Pro/Themes, only if a theme with the same name does not exist in that folder.
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+21
|
* Add a new SPAppController SPWindowManagement.stuconnolly2012-07-071-128/+20
|
* - Fix issues opening new windows when Sequel Pro is opened in the ↵rowanbeentje2012-06-231-19/+12
| | | | | | | background, eg as a result of an application quarantine dialog. This addresses Issue #1375. - Fix exceptions and multiple errors when opening locked or encrypted session files where opening is cancelled.
* Further improvements to further address Issue #1332:rowanbeentje2012-06-231-16/+28
| | | | | | | - Ensure that favourites are saved synchronously on exit to avoid background threads being killed - Improve logging on favourite rename error - Only save favourites on exit if a connection window is open
* - Address favourites saving on quit, which appears to sometimes die during ↵rowanbeentje2012-06-221-3/+0
| | | | | | | preference serialisation, causing Issue #1332. Reworking the order of commands ensure this is performed more safely. - Move upgrade routine to only be called on version upgrades, tweak order of calls
* Fix more gcc warnings.stuconnolly2012-05-091-1/+3
|
* Move the BASH command code from the string additions category to remove the ↵stuconnolly2012-05-071-11/+15
| | | | dependency on SP specific code and all the tests to build successfully.
* Add support for saving the state of the connection favorites outline view.stuconnolly2012-05-031-18/+31
|
* Bring outline view branch up to date with trunk.stuconnolly2012-04-161-5/+10
|
* Bring outline view branch up to date with trunk (r3471:r3481).stuconnolly2012-02-191-1/+1
|
* Bring outlinew view branch up to date with trunk (r3375:3468).stuconnolly2012-01-221-1/+3
|
* Bring outline view branch up to date with trunk (r3246:r3264).stuconnolly2011-04-031-0/+2
|
* Bring outline view branch up to date with trunk (r3235:r3245), which should ↵stuconnolly2011-03-191-1/+5
| | | | resolve all warnings.
* Bring outline view branch up to date with trunk (r3227:r3233).stuconnolly2011-03-081-6/+8
|
* Merge in missing commit from trunk.stuconnolly2011-03-071-37/+34
|
* Bring outline view branch up to date with trunk (r3203:r3224).stuconnolly2011-03-071-75/+63
|
* Bring outline view branch up to date with trunk (r3056:r3162).stuconnolly2011-01-271-205/+399
|\
| * • show activity pane for running Bundle process automatically if the ↵Bibiko2011-01-201-0/+26
| | | | | | | | process runs longer than 1 sec and hide it if no process runs anymore to inform the user better
| * • fixed issue while updating Default Bundles for key equivalentBibiko2011-01-191-1/+2
| | | | | | | | | | | | • improved JSON Bundle commands - got rid of trailing whitespaces inside data and as JSON object - added error handling for serialization a JSON object to suppress inserting of "null"
| * • fixed issue for default Bundles if category or key equivalent was ↵Bibiko2011-01-141-59/+65
| | | | | | | | | | | | | | | | changed by the user • improved Format SQL Bundle - added checking for empty passed SQL string - changed category to Format
| * • improved error handling for sequelpro URL scheme commandsBibiko2011-01-131-0/+21
| |
| * • fixed issue while updating a Bundle by identifying it via UUID but ↵Bibiko2011-01-131-2/+3
| | | | | | | | different spBundle file name
| * • fixed issue for installing a Bundle if Sequel Pro didn't run, i.e. e.g. ↵Bibiko2011-01-121-0/+5
| | | | | | | | double-click in Finder at a spBundle file
| * • changed sequelpro URL command SyntaxHighlighting to be connection ↵Bibiko2011-01-101-0/+137
| | | | | | | | independent - added example BASH script at http://www.sequelpro.com/docs/URL_scheme_sequelpro://_Usage#Use_Sequel_Pro_to_do_a_syntax_highlighting_of_a_given_SQL_query_HTML_formatted
| * • minor code cleaningBibiko2011-01-071-14/+18
| |
| * • improved installation routine for Default BundlesBibiko2011-01-071-75/+67
| | | | | | | | • added missing key isDefaultBundle to Default Bundles
| * • improved Default Bundle management for installation, updating, undeletionBibiko2011-01-051-100/+113
| | | | | | | | • if current NSTextView is not set to NSLeftTextAlignment show a SPTooltip at mouse location until we found a way the calculate the caret position correctly since [NSLayoutManager glyphRangeForCharacterRange:] returns a wrong NSRect
| * • fixed bug for re-copying default bundles after launching SPBibiko2011-01-051-2/+2
| |
| * • further fix for updating default Bundles after SP updateBibiko2011-01-051-0/+3
| |
| * • fixed bug for copying default bundles after SP updateBibiko2011-01-051-2/+0
| |
| * - Alter bundle search paths to no longer add a blank location as the first ↵rowanbeentje2011-01-031-4/+5
| | | | | | | | option if the Application support bundles folder does not exist; addresses issues where default bundles are updated in the hard disk root
| * • cleaned code for NSPropertyListSerialization while reloadBundles (thanks ↵Bibiko2011-01-031-17/+9
| | | | | | | | to emixam for pointing it out)
| * • forgot to remove debug logs of previous commitBibiko2011-01-031-77/+75
| |
| * • changed the way to check for available update of Default BundlesBibiko2011-01-031-13/+9
| | | | | | | | - perform a check only if the revision number is greater as the last recorded one, in other words if an updated version of Sequel Pro was installed and runs for the very first time