aboutsummaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* * Fixes #1605dmoagx2013-02-093-4/+4
|
* Fix more warnings.stuconnolly2013-02-023-5/+5
|
* * Fixes #1568 (Enter key was linked to "Run All" while displayed as linked ↵dmoagx2013-02-011-1/+1
| | | | to "Run Current")
* Move the flex parsing function definitions to their own file so they're not ↵stuconnolly2013-01-255-47/+50
| | | | duplicated in multiple places.
* Fix more warnings.stuconnolly2013-01-253-13/+24
|
* Fix more warnings.stuconnolly2013-01-252-18/+21
|
* Fix more warnings.stuconnolly2013-01-256-49/+52
|
* - Fix connection view favourites outline view layout issues on 10.7+ ↵rowanbeentje2013-01-251-7/+15
| | | | following the move to the 10.6 SDK
* Fix memory leak.stuconnolly2013-01-241-1/+26
|
* Fix more warnings.stuconnolly2013-01-246-28/+21
|
* Fix warnings due to not conforming to 10.6 protocols.stuconnolly2013-01-2419-47/+20
|
* Tidy up custom query header.stuconnolly2013-01-231-23/+20
|
* Remove useless init and dealloc method comments and perform general tidy up.stuconnolly2013-01-2251-443/+340
|
* Tidy up.stuconnolly2013-01-221-1/+5
|
* Fix Issue #1527, weird display artifacts when reordering custom query ↵rowanbeentje2013-01-221-2/+2
| | | | | | | | results, in two different ways: - Preserve the existing scroll rectangle if reloading the view - Update the scroll rect on the main thread when not reloading the view
* - Fix trigger edit failures not restoring the interface correctly, ↵rowanbeentje2013-01-211-35/+48
| | | | | | | | | | | preventing the correct saving of the edited trigger thereafter (Issue #1534) - Clean up interface resetting and validation to fix edge cases where the interface was not reset correctly or carried state incorrectly across multiple selections - Fix a small memory leak when editing multiple triggers - Clean up code - Remove the table name column in the triggers interface as it will always display the selected table - Display NULL values in the triggers interface using the preference setting, and in grey
* Window controller tidy up.stuconnolly2013-01-211-89/+132
|
* - Fix a problem where the row count for InnoDB would not be displayed as an ↵rowanbeentje2013-01-219-52/+106
| | | | | | | | accurate value, whatever the Preferences setting, if the Content table was not selected - Clean up code slightly - Remove an unneccessary query being used for the table information view, speeding up display slightly
* Fix broken documentation links.stuconnolly2013-01-201-2/+2
|
* Small table info tidy up.stuconnolly2013-01-172-51/+80
|
* Issue #1422: Update the user manager's resource limit formatters to have a ↵stuconnolly2013-01-171-3/+10
| | | | minumum value of zero.
* - Move the old com.google.code.sequel-pro.plist preference list to the ↵rowanbeentje2013-01-161-0/+12
| | | | trash now that migration to com.sequelpro.SequelPro.plist has completed.
* Small tweak to the bundle identifier migration function to prevent releasing ↵stuconnolly2013-01-121-9/+13
| | | | a null reference. Fixes http://spbug.com/l/3714.
* - Fix toggleFullScreen: errors on <= 10.6, addressing Log #3759. (It ↵rowanbeentje2013-01-111-2/+2
| | | | appears that an NSWindow subclass which checks whether super respondsToSelector:@selector(toggleFullScreen:) returns YES on 10.6; changing this to an +[NSWindow instancesRespondToSelector:] check works correctly). Thanks to schlabberdog for identifying the problem!
* Minor tidy up.stuconnolly2013-01-111-10/+7
|
* - Enable translation of the Show/Hide Toolbar menu item by taking over ↵rowanbeentje2013-01-081-2/+19
| | | | title changes ourselves, fixing the last part of Issue #1521
* Increase the minimum size of the connection view's split view so we don't ↵stuconnolly2013-01-071-1/+1
| | | | force the quick connect heading to be wrapped.
* - Fix problems editing the connection name when editing has just begun, ↵rowanbeentje2013-01-061-2/+2
| | | | addressing Issue #1518
* - Call the NSWindow super implementation of validateMenuItem: in SPWindow, ↵rowanbeentje2013-01-056-4/+94
| | | | | | | | fixing Show Toolbar/Hide Toolbar menu item title not being updated correctly - addresses Issue #1521 - When the toolbar is hidden, draw a line in the window to cover up the bottom border of the window's title bar, improving appearance - Improve tab appearance when toolbar is hidden
* Enable the removal of the old favorites data in the preferences plist now ↵stuconnolly2013-01-031-4/+2
| | | | that we know it's stable.
* - Prevent Groups from being created as a child of the Quick Connection ↵rowanbeentje2012-12-301-4/+2
| | | | item, instead creating them at the bottom of the favourites list to prevent favourite loss
* Make some improvements to the Table Content Filter, particularly for text ↵rowanbeentje2012-12-232-4/+18
| | | | | | | | | fields: - Rename all "IS" entries to "=", to make the intended purpose clearer, and switch the underlying command to use "= BINARY" instead of "LIKE", producing an exact match instead of replicating LIKE functionality. Move LIKE p to just below the = options. This addresses Issue #1441. - Add entries for "matches RegExp" and "does not match RegExp", implementing Issue #1508. - When adding custom filters, add them by default to the Global group if the favourite isn't an on-disk document, addressing filter loss between sessions; this addresses Issue #1381
* - Correctly draw/update the selection highlight within the SPTextView used ↵rowanbeentje2012-12-231-0/+23
| | | | in the Custom Query Editor (among others) as the selection is changed with the mouse
* - Add trigger button to the default toolbar viewrowanbeentje2012-12-211-0/+1
|
* - Convert all old .tiff resource images to .png formatrowanbeentje2012-12-213-14/+14
| | | | | | | - Recompress all pngs losslessly to reduce disk use slightly - Remove old unused images - Switch some code over to imageNamed: to allow easier Retina additions in future
* - Tweak SPTextView background drawing, moving custom drawing into a ↵rowanbeentje2012-12-191-4/+2
| | | | different function, to allow "Highlight current query" to function again
* Issue #1495: Fix crash on export after the table list is refreshed due to ↵stuconnolly2012-12-171-1/+2
| | | | the selection not being preserved correctly.
* - If the favourite is not an on-disk document, add any new query favourites ↵rowanbeentje2012-12-171-5/+18
| | | | to the bottom of the Global list if a selection is not active, to address query favorite loss (Issue #1417)
* - Disable connection muxing on OS X versions lower than 10.7, to speed up ↵rowanbeentje2012-12-173-3/+8
| | | | | | | connections, improving Issue #1457 - Fix a warning left over from changes in r3931
* - Rearrange some menu shortcuts: ⌘F is now used on the Content tab to set ↵rowanbeentje2012-12-177-59/+107
| | | | the focus to the Filter Content tab bar. ⇧⌘F is used to show the advanced content filter table. This allows ^⌘F to be used for the standard OS X fullscreen window command, addressing Issue #1513.
* - Display startup release notes (eg post-r3921) to not block startup, ↵rowanbeentje2012-12-162-4/+5
| | | | preventing duplicate "Help" menus - with thanks to Michaël Gallego and schlabberdog
* - Fix favourite editing on the connection interface being unable to delete ↵rowanbeentje2012-12-141-3/+25
| | | | some properties
* Replace 1x .tiff graphics with 1x and 2x png Retina graphics.mattlangtree2012-12-121-1/+1
|
* - Add final versions of the new icon designed by Kenichi Yoshida (with many ↵rowanbeentje2012-12-122-2/+2
| | | | | | | | | thanks to Panic, Inc), recompressed for smaller file size and 10.5 compatibility - Add document icons to match - Amend the Info.plist to fix Sequel Pro being able to edit old .spf files etc - Add .mysql file support (Issue #1366)
* - Swap around the Custom Query "Run All" and "Run ↵rowanbeentje2012-12-012-0/+58
| | | | | | | | Current/Previous/Selection" shortcuts and positions (Issue #1094) - Tweak the designated requirement to correctly sign the tunnel assistant (Issue #1503) - Add support for important release notes in the version upgrade routines to highlight important issues, and add notes for the button swap and signing change to alert users
* - Improve connection testing to use edited passwords on a connection with ↵rowanbeentje2012-11-282-32/+17
| | | | | | | keychain entries - Clean up connection error handling slightly
* - Tweak handling of tables which have been deleted while they were being ↵rowanbeentje2012-11-221-4/+6
| | | | used, preventing hangs (Issue #1429)
* - Allow table content pagination to preserve the current filter type, ↵rowanbeentje2012-11-212-5/+15
| | | | including URL schemes and advanced table-based filters, addressing Issue #1492. (The filter code in question probably needs refactoring to allow it to be simplified in future, but does currently function)
* - Fix exceptions when using the content filter table clear buttonrowanbeentje2012-11-201-1/+1
|
* - Improve use of the table content filter, no longer removing focus from it ↵rowanbeentje2012-11-201-5/+14
| | | | when a filter is triggered by deleting the contents (Issue #1496)