aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Useless comment.stuconnolly2012-10-161-3/+0
|
* Add HiDPI/@2x versions of Browse and Table Info tab icons.mattlangtree2012-10-166-6/+14
| | | | Update README to give hint about compiling with 10.5 and 10.6 SDK.
* Fix MySQL content font not being updated. Issue #1483.stuconnolly2012-10-151-1/+1
|
* Query Editor Preference Pane editor colour tweaks:rowanbeentje2012-10-142-23/+22
| | | | | | - Make the preview colour well square - Make the background colour apply to the full preview table and not just the cell backgrounds
* - Add names for most threads created by Sequel Pro for easier debugrowanbeentje2012-10-1426-55/+169
|
* - Clean up some connection cancellation/close-during-connect edges as a ↵rowanbeentje2012-10-147-12/+23
| | | | | | | result of r3894, attempting to improve some exceptions during aborted connections - Name threads created in SPMySQL.framework
* - In the SPMySQL.framework, separate framework-triggered connections and ↵rowanbeentje2012-10-1415-168/+229
| | | | | | | | | disconnections from external actions, and use that separation to perform safer disconnects - When closing a database document, add a new notification, and use that to resolve retain cycles affecting connection processes - Improve connection controller disconnection when the document is closed, fixing crashes, by building on those two features (addresses Issue #1396) - Use some of the new functionality to improve SSH and MySQL connection cancellation, making both cancelable in the interface and making both respond much more quickly
* Update test script to check that it's being run from within Xcode.stuconnolly2012-10-141-0/+6
|
* - Alter favourite sorting in the connection interface: name sorts are now ↵rowanbeentje2012-10-102-20/+29
| | | | | | | case-insensitive for a more Mac-like feel, groups are sorted alphabetically among favourite nodes when name sorting is being used, and above (or below when reversed) other favourites in type/host mode - Update localisable strings and fix a warning
* - Connection interface: correctly update the sort order when adding new ↵rowanbeentje2012-10-101-5/+18
| | | | items or renaming items. This addresses Issue #1209
* Connection interface tweaks:rowanbeentje2012-10-093-43/+209
| | | | | | | - When adding a new connection and name editing is entered, accept name changes without validating hostnames etc - When deleting groups of nodes, ensure that passwords for child nodes are correctly removed from the Keychain - Add remove item, rename item, and duplicate item entries to the connection interface gear menu (matching the contextual menu)
* - Connection interface: if dragging items into a node, ensure that node is ↵rowanbeentje2012-10-091-0/+1
| | | | expanded so the selection is correctly preserved (thanks to schlabberdog for extensive testing!)
* - Connection interface: when adding a group node or item, ensure that it's ↵rowanbeentje2012-10-081-1/+10
| | | | visible by ensuring the parent item is expanded
* - Connection interface: if the name of a node is being edited in the ↵rowanbeentje2012-10-081-0/+5
| | | | sidebar, don't start editing in the main interface
* - Fix the Quick Connect entry on the connection screen being a drag and ↵rowanbeentje2012-10-087-12/+23
| | | | | | | drop target - Speculative fix for 10.6 & 10.5 connection screen padding/layout issues
* Fix selector warning.stuconnolly2012-10-071-54/+65
|
* Increase the minimum size of the connection outline view to match the ↵stuconnolly2012-10-071-1/+1
| | | | database dropdown.
* Constrain the minimum size of the connectiion view split view so we don't ↵stuconnolly2012-10-061-0/+5
| | | | wrap the quick connect header and hide buttons.
* Change the connection screen interface, particularly relating to favourite ↵rowanbeentje2012-10-0619-655/+1079
| | | | | | | | | | | | | | editing on the connection screen (Issue #1339, Issue #1440): - No longer save changes made to connection favourites as soon as the interface is updated - Alter the interfaace if favourites are editing, offering to save the changes either to the old connection favourite or to a new favourite - Add a "Test connection" button to verify changes before saving - Add a "Quick Connect" entry to the top of the connection view's favourites list so a blank form is always available - Use a custom highlight when editing favourites to show the favourite has changed but is still linked - Reduce the margin on the left-hand side of the connection favourites list to increase the available space - Alter favourite name generation, making it less aggressive when generating names from partial details (eg creating names of just "@") and removing the user - Alter key icon usage to correctly update the button appearance if an SSL or SSH key is selected
* - Improve connection error detecting in SPMySQLFrameworkrowanbeentje2012-10-061-1/+3
|
* Issue 1477: Trigger screen add bugbamse162012-10-051-0/+6
|
* Issue 1470: [REQ] Support for bundling default Themesbamse162012-10-053-0/+139
| | | | | | 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.
* * Forgot to include a file in last commitdmoagx2012-10-031-1/+1
|
* * Rename latin1_german_ci to latin1_german1_ci (checking with mysql3.23 ↵dmoagx2012-10-032-1/+2
| | | | sources and mysql doc that seems to have always been it's name?) #1476
* Spacing.stuconnolly2012-10-021-1/+1
|
* Add support for JSON data type added in PostgreSQL 9.2stuconnolly2012-09-282-0/+5
|
* Tidy up binary handler.stuconnolly2012-09-282-31/+4
|
* Fix filename typo.stuconnolly2012-09-272-4/+4
|
* Add a binary data handler.stuconnolly2012-09-276-2/+188
|
* Comment out incomplete tests.stuconnolly2012-09-271-5/+5
|
* Add data type tests.stuconnolly2012-09-273-1/+250
|
* Update test data.stuconnolly2012-09-261-15/+11
|
* Change project prefix.stuconnolly2012-09-2646-865/+873
|
* Comments.stuconnolly2012-09-261-0/+15
|
* Switch to using libpqtypes for retrieving numeric values.stuconnolly2012-09-265-72/+63
|
* Update test data.stuconnolly2012-09-251-13/+15
|
* * My bad, included wrong name for Japenese translationdmoagx2012-09-241-1/+1
|
* Fix the failure to process the first row in a result set.stuconnolly2012-09-243-4/+4
|
* Should be returning an NSNull instance so we don't screw up our array.stuconnolly2012-09-241-1/+1
|
* Fix the handling of numeric values.stuconnolly2012-09-245-3/+33
|
* Implement fast enumeration for PostgresKit's result class. Based on ↵stuconnolly2012-09-242-1/+31
| | | | SPMySQL's implementation by Rowan.
* Update MySQL and PosgreSQL library build scripts to find the SDK path.stuconnolly2012-09-242-13/+43
|
* Fix r3857 regression. There is no table name when more than one item is ↵stuconnolly2012-09-241-3/+9
| | | | selected.
* Tidy up menu validation.stuconnolly2012-09-242-46/+49
|
* * Updated credits to include Japanese translatorsdmoagx2012-09-231-35/+53
|
* - Alter the build settings for compatibility with Xcode 3.2.x up to Xcode ↵rowanbeentje2012-09-234-399/+4252
| | | | | | | | 4.5, keeping a base SDK of 10.5 for compatibility for otherwise adding and adjusting settings appropriately - Add instructions to the README for Xcode 4 SDK installation.
* Revert of r3849 (undoing the build break)bamse162012-09-193-4240/+403
|
* Issue 1462: Right click in custom filter editor causes exceptionbamse162012-09-181-2/+2
|
* Add the ability to set the default row return type.stuconnolly2012-09-162-4/+21
|
* Comments.stuconnolly2012-09-134-0/+48
|