aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* - Tweak SPSplitView to no longer treat non-resizable split view children as ↵rowanbeentje2012-07-303-61/+51
| | | | | | | max/min constraints when dragging the splitview divider. This improves default behaviour and also allow use of the non-resizable split view children to control relative autoresizing when resizing a parent view - Tweak Bundle Editor to no longer require split view delegate controls to control resizing, instead making the first split view child non-resizable in IB
* The cancel button on the add new relation sheet should be bound to the ↵stuconnolly2012-07-301-33466/+33374
| | | | escape key, not cmd+.
* - Fix custom selection colours using a translucent colour being blended ↵rowanbeentje2012-07-302-70/+100
| | | | | | | | through to black or the window background, addressing incorrect colours in the Custom Query view when using selection colours with alpha values and window backgrounds showing through CREATE SYNTAX sheets (Issue #1099) - Fix crashes when editing certain colours in editor preferences after a window had been closed, due to not unregistering all observers on SPTextView dealloc - Enable "Draws Background" on the main Custom Query view text view, as custom colours were no longer being drawn after a change in r3750
* - Remove all BWToolKit views from the Bundle Editor window, replacing with ↵rowanbeentje2012-07-294-6016/+6044
| | | | | | | normal equivalents and a SPSplitView - Remove the ShortcutRecorder instance defined in Interface Builder from the Bundle Editor window, replacing with an instance set up from code. This removes the only dependency on the Shortcut Recorder .ibplugin, making it no longer necessary for building the project.
* - Remove the last BWToolKit view items from the main nib (DBView) by ↵rowanbeentje2012-07-295-1277/+1203
| | | | | | | | redesigning the advanced Content Filter window - Tweak SPTextView to support translucent views, or views which are set not to draw their background - Fix Lion compatibility for advanced content filter default operator (Issue #1255)
* Fix typos in license header.stuconnolly2012-07-282-2/+2
|
* - Remove a few more BWToolKit views from DBView; only the advanced filter ↵rowanbeentje2012-07-261-430/+295
| | | | view needs redesigning now
* - Replace the collapsible BWSplitView on the Query pane with a SPSplitView ↵rowanbeentje2012-07-267-654/+618
| | | | | | | | configured from code - Replace the other NSSplitView on the Query pane with an equivalent SPSplitView to allow easier constraint management - Fix SPSplitView collapsible subview resizing to only amend the collapsible subview's autoresizing mask along the axis of the split view, leaving the other axis untouched to avoid problems with subviews not correctly picking up window resize changes when they were collapsed
* * Restore filter window functionalitydmoagx2012-07-252-2/+2
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-25358-4828/+6722
|
* - Tweak nib localisation logic, fixing exceptions on 10.5 with systems set ↵rowanbeentje2012-07-241-3/+1
| | | | to non-period based decimal formatting (many thanks to schlabberdog for pinning down the exact issue and testing), also improving speed of handling non-localised strings when translations are available
* - Replace the main split view in the main view with a SPSplitView, ↵rowanbeentje2012-07-247-1279/+1337
| | | | | | | | | | replacing the anchored button bar and buttons with normal equivalents. - Make the main split view collapsbile to avoid resize issues with the filter box - Fix problems with additional drag handles in SPSplitView when one of the views was using flipped coordinates - Fix problems with manually dragged uncollapses in SPSplitView - Fix problems instantiating SPSplitView instances on 10.5 (with thanks to schlabberdog)
* - Attempt to address startup exceptions on 10.5 by fixing NSSplitView ↵rowanbeentje2012-07-231-1/+3
| | | | awakeFromNib checks
* - Add a new SPSplitView class, intended to replace all BWSplitViews and so ↵rowanbeentje2012-07-2313-301/+1515
| | | | | | | | allow us to remove BWToolKit. Supports constraints and animated collapsible subviews configured in code, fixes crashes and exceptions if a window is closed while animations are taking place or scheduled to take place. - Replace the two vertical splitters in the table list (the filter splitter, and the table info splitter) with SPSplitView implementations as a test - Add a helper method in the new SPDateAdditions
* Add SVN properties.stuconnolly2012-07-210-0/+0
|
* QueryKit: Update quoting method.stuconnolly2012-07-212-2/+2
|
* QueryKit: Add DELETE query tests.stuconnolly2012-07-215-2/+173
|
* QueryKit: Update not equal operator.stuconnolly2012-07-211-1/+1
|
* QueryKit: Add test to check the explicit use of a database name in an update ↵stuconnolly2012-07-211-0/+9
| | | | query.
* QueryKit: Add test to check the explicit use of a database name in the query.stuconnolly2012-07-211-1/+10
|
* Fix incorrect slash for nil data items in an XML export. Fixes issue #1404.stuconnolly2012-07-191-1/+1
|
* Add missing [super dealloc] call.stuconnolly2012-07-181-0/+2
|
* Rework QueryKit's tests to accept parameters allowing use to run them with ↵stuconnolly2012-07-1816-222/+520
| | | | different data sets.
* Remove header import that no longer exists.stuconnolly2012-07-161-1/+0
|
* Fix the display of the encoding and collation of fields that don't support ↵stuconnolly2012-07-163-33/+35
| | | | them (introduced in r3708). This also fixes the issue of re-ordering non-string fields failing due to the encoding and collaction being included.
* Remove test header.stuconnolly2012-07-161-39/+0
|
* Get rid of test case headers.stuconnolly2012-07-1510-170/+50
|
* Don't explicitly define property accessor names.stuconnolly2012-07-1511-56/+64
|
* Remove test output.stuconnolly2012-07-151-6/+2
|
* Add a new order by class.stuconnolly2012-07-1513-105/+362
|
* Comments (missing from previous commit).stuconnolly2012-07-141-2/+2
|
* Comments.stuconnolly2012-07-141-8/+8
|
* Bunch of improvements including uderlying database system support.stuconnolly2012-07-1420-53/+287
|
* Fix trim-application script output.stuconnolly2012-07-101-1/+1
|
* Add a new enum to allow us to specify the underlying database system we're ↵stuconnolly2012-07-103-0/+46
| | | | generating queries for.
* Additional QueryKit tests.stuconnolly2012-07-1010-16/+146
|
* Fix broken build.stuconnolly2012-07-091-2/+2
|
* Improve QueryKit's handling of quotes by making it on by default. Also, add ↵stuconnolly2012-07-0916-137/+445
| | | | a bunch more tests.
* Add a new SPAppController SPWindowManagement.stuconnolly2012-07-078-134/+238
|
* Fix a few more IB warnings by disabling options that we don't need.stuconnolly2012-07-071-9153/+9148
|
* Fix IB warnings.stuconnolly2012-07-061-3477/+3468
|
* Another tweak for SP r3710 merge with Codasqlprodev2012-07-051-0/+2
|
* A few more tweaks for SP r3710 merge with Codasqlprodev2012-07-054-2/+56
|
* Merged SP r3710 with Codasqlprodev2012-07-0510-20/+185
|
* Remove unnecessary import.stuconnolly2012-07-041-1/+0
|
* Move the table structure's loading logic into it's own category.stuconnolly2012-07-047-312/+413
|
* If available display the columns default encoding and collation in the ↵stuconnolly2012-07-043-26/+95
| | | | structure view. Implements issue #1355.
* - Use a per-user temporary directory for SSH tunnels (and bundle dragged ↵rowanbeentje2012-06-284-3/+12
| | | | temporary files)
* - Use a custom ControlPath for SSH tunnels in an attempt to address Issue ↵rowanbeentje2012-06-281-0/+1
| | | | #1095 (issues connecting when a connection master is already present)
* Tidy up an use enums.stuconnolly2012-06-277-13/+27
|