Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a compiler warning | Max | 2015-01-10 | 1 | -3/+3 |
| | |||||
* | Addition to commit 2735e15b | Max | 2015-01-04 | 1 | -8/+8 |
| | |||||
* | Formalize [x release], x = nil; convention | Max | 2015-01-04 | 1 | -6/+6 |
| | | | | | Take this commit as a proposal to formalize our existing "[x release], x = nil;" convention by introducing a macro for it. Feel free to revert this commit if you see issues with the approch or implementation. | ||||
* | Replace some NSDictionaries with literals | Max | 2014-12-13 | 1 | -17/+18 |
| | | | | | | * [NSDictionary dictionary] → @{} * [NSDictionary dictionaryWithObject:forKey:] can safely be replaced. object==nil would have already thrown a NPE in the past. * Also replaced some (hopefully safe) NSArray initializers (ie. their objects should always exist). | ||||
* | Change [NSArray arrayWithObject:] to @[] literal | Max | 2014-12-13 | 1 | -4/+4 |
| | | | | Note: [NSArray arrayWithObjects:...,nil] is left unchanged as that could possibly cause a NPE if converted to @[] | ||||
* | Add cast for [NSApp delegate] | Max | 2014-12-13 | 1 | -6/+6 |
| | | | | | * (Also changed some outdated URLs) * Replaced [NSApplication sharedApplication] with NSApp | ||||
* | Replace boxed integers in code with @ literals | Max | 2014-12-13 | 1 | -6/+6 |
| | |||||
* | Fix a error that prevents building in Xcode6b4 | Max | 2014-07-28 | 1 | -4/+4 |
| | |||||
* | Fix file opening due to my own stupid mistake!. Fixes #1909. | Stuart Connolly | 2014-05-29 | 1 | -55/+100 |
| | |||||
* | Update URL in source file header to point to GitHub. | Stuart Connolly | 2014-01-26 | 1 | -1/+1 |
| | |||||
* | Remove SVN property placeholder. | Stuart Connolly | 2014-01-26 | 1 | -2/+0 |
| | |||||
* | Fixes for previous commit. | Stuart Connolly | 2013-11-24 | 1 | -6/+6 |
| | |||||
* | Fix deprecation warnings. | Stuart Connolly | 2013-11-24 | 1 | -55/+52 |
| | |||||
* | Cleaned up Format string is not a string literal (potentially insecure) errors | Marius Ursache | 2013-11-09 | 1 | -10/+10 |
| | |||||
* | Allow opened SQL files to be saved back to the original file, addressing ↵ | rowanbeentje | 2013-09-08 | 1 | -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 ↵ | rowanbeentje | 2013-09-03 | 1 | -0/+2 |
| | | | | #1011 (note that File > Import files are *not* currently added) | ||||
* | - Address further Release/Distribution build warnings | rowanbeentje | 2013-05-22 | 1 | -7/+7 |
| | |||||
* | Minor tidy up. | stuconnolly | 2013-02-17 | 1 | -1/+1 |
| | |||||
* | Fix more warnings. | stuconnolly | 2013-02-02 | 1 | -3/+3 |
| | |||||
* | Move the flex parsing function definitions to their own file so they're not ↵ | stuconnolly | 2013-01-25 | 1 | -11/+1 |
| | | | | duplicated in multiple places. | ||||
* | Fix more warnings. | stuconnolly | 2013-01-25 | 1 | -0/+1 |
| | |||||
* | Fix more warnings. | stuconnolly | 2013-01-25 | 1 | -4/+4 |
| | |||||
* | Fix warnings due to not conforming to 10.6 protocols. | stuconnolly | 2013-01-24 | 1 | -0/+1 |
| | |||||
* | * Please note this revision will re-prompt for access to all KeyChain ↵ | rowanbeentje | 2012-11-18 | 1 | -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. | stuconnolly | 2012-10-16 | 1 | -3/+0 |
| | |||||
* | Fix selector warning. | stuconnolly | 2012-10-07 | 1 | -54/+65 |
| | |||||
* | Issue 1470: [REQ] Support for bundling default Themes | bamse16 | 2012-10-05 | 1 | -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. | stuconnolly | 2012-07-25 | 1 | -12/+21 |
| | |||||
* | Add a new SPAppController SPWindowManagement. | stuconnolly | 2012-07-07 | 1 | -128/+20 |
| | |||||
* | - Fix issues opening new windows when Sequel Pro is opened in the ↵ | rowanbeentje | 2012-06-23 | 1 | -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: | rowanbeentje | 2012-06-23 | 1 | -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 ↵ | rowanbeentje | 2012-06-22 | 1 | -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. | stuconnolly | 2012-05-09 | 1 | -1/+3 |
| | |||||
* | Move the BASH command code from the string additions category to remove the ↵ | stuconnolly | 2012-05-07 | 1 | -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. | stuconnolly | 2012-05-03 | 1 | -18/+31 |
| | |||||
* | Bring outline view branch up to date with trunk. | stuconnolly | 2012-04-16 | 1 | -5/+10 |
| | |||||
* | Bring outline view branch up to date with trunk (r3471:r3481). | stuconnolly | 2012-02-19 | 1 | -1/+1 |
| | |||||
* | Bring outlinew view branch up to date with trunk (r3375:3468). | stuconnolly | 2012-01-22 | 1 | -1/+3 |
| | |||||
* | Bring outline view branch up to date with trunk (r3246:r3264). | stuconnolly | 2011-04-03 | 1 | -0/+2 |
| | |||||
* | Bring outline view branch up to date with trunk (r3235:r3245), which should ↵ | stuconnolly | 2011-03-19 | 1 | -1/+5 |
| | | | | resolve all warnings. | ||||
* | Bring outline view branch up to date with trunk (r3227:r3233). | stuconnolly | 2011-03-08 | 1 | -6/+8 |
| | |||||
* | Merge in missing commit from trunk. | stuconnolly | 2011-03-07 | 1 | -37/+34 |
| | |||||
* | Bring outline view branch up to date with trunk (r3203:r3224). | stuconnolly | 2011-03-07 | 1 | -75/+63 |
| | |||||
* | Bring outline view branch up to date with trunk (r3056:r3162). | stuconnolly | 2011-01-27 | 1 | -205/+399 |
|\ | |||||
| * | • show activity pane for running Bundle process automatically if the ↵ | Bibiko | 2011-01-20 | 1 | -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 equivalent | Bibiko | 2011-01-19 | 1 | -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 ↵ | Bibiko | 2011-01-14 | 1 | -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 commands | Bibiko | 2011-01-13 | 1 | -0/+21 |
| | | |||||
| * | • fixed issue while updating a Bundle by identifying it via UUID but ↵ | Bibiko | 2011-01-13 | 1 | -2/+3 |
| | | | | | | | | different spBundle file name | ||||
| * | • fixed issue for installing a Bundle if Sequel Pro didn't run, i.e. e.g. ↵ | Bibiko | 2011-01-12 | 1 | -0/+5 |
| | | | | | | | | double-click in Finder at a spBundle file |