aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Alter the MySQL library build script to explicitly use the system zlib. ↵rowanbeentje2013-09-083-1/+1
| | | | | | | | This is documented as being the default, but setting this has resulted in a smaller binary and lower CPU usage with compressed MySQL connection transport. - Rebuild the libraries with the new setting - Update localisable strings
* - Update to the MySQL 5.5.33 client librariesrowanbeentje2013-09-086-10/+13
| | | | | - Tweak the build script to clarify it is now only building a two-way binary and to explicitly not build the server using the new syntax
* Allow opened SQL files to be saved back to the original file, addressing ↵rowanbeentje2013-09-089-2723/+538
| | | | | | | | | 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
* - Fix an issue that could cause invalid SQL exports if table contents ↵rowanbeentje2013-09-051-47/+35
| | | | | | | changed between two queries, addressing Issue #1726 - Remove a check against export cancellation when exporting every cell of a table, leaving the check on every row
* - 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)
* - Fix an uninitialised value in the custom query line number view which ↵rowanbeentje2013-08-281-0/+1
| | | | could cause an exception if the window was dragged very quickly near the top of the text view ruler (http://spbug.com/l/2344)
* - Add the ability for SPTextAndLinkCell arrows to be selectively disabled ↵rowanbeentje2013-08-273-7/+25
| | | | | | | on a per-cell rather than a per-column basis - Use this ability in SPTableContentDelegate to disable link arrows if the cell is showing a NULL or (not loaded) value, and also if the current row is being edited and so might be unvalidated. This addresses Issue #1790 and http://spbug.com/l/2306 .
* - Fix exceptions when shift-tabbing back from a very early cell in the ↵rowanbeentje2013-08-261-2/+2
| | | | Structure view to the last cell (http://spbug.com/l/2122)
* - Fix occasional exceptions when saves of new fields in the table structure ↵rowanbeentje2013-08-261-7/+6
| | | | fail (http://spbug.com/l/2500, http://spbug.com/l/2281, http://spbug.com/l/2046)
* - Improve thread safety within the console window, triggering draw and view ↵rowanbeentje2013-08-261-6/+8
| | | | | | | updates only on the main window - Ensure the console window is first loaded on the main thread, fixing warnings from CoreAnimation ("CoreAnimation: warning, deleted thread with uncommitted CATransaction") on startup when a background thread calls [window isVisible] and triggers a lazy awakeFromNib of the window
* - Fix an exception on 10.6 when clicking below the table list rows ↵rowanbeentje2013-08-251-6/+17
| | | | (http://spbug.com/l/1726)
* - Ensure the table row counts are correctly updated when reloading tables - ↵rowanbeentje2013-08-221-0/+2
| | | | this should address Issue #1789 and Issue #1788, and possibly Issue #1787
* - Fix hanging waiting for new result store to return if there was a query ↵rowanbeentje2013-08-141-1/+1
| | | | error, addressing Issue #1783
* - Add some overrides to SPMySQLEmptyResult to fix errors when running ↵rowanbeentje2013-08-142-1/+22
| | | | queries which don't produce a result set following the data store changes
* - Add missing function declaration for 10.7 buildsrowanbeentje2013-08-141-0/+1
|
* Rework table content and custom query data loading and storage for speed ↵rowanbeentje2013-08-1331-670/+2046
| | | | | | | | | increases and lower memory usage: - Add a new SPMySQLStreamingResultStore class to SPMySQL.framework. This class acts as both a result set and a data store for the accompanying data, storing the row information in a custom format in a custom malloc zone. - Amend SPDataStorage to wrap the new class, so original result information is stored in the one location in the custom format. Any edited information is handled by SPDataStorage for clean separation - Rework table content and custom query data data stores to use the new class. This significantly speeds up data loading, resulting in faster data loads if they weren't previously network constrained, or lower CPU usage otherwise. The memory usage is also lowered, with the memory overhead for many small cells being enormously reduced.
* PostgresKit: Add a new property to return the number of rows affected by the ↵stuconnolly2013-06-183-18/+29
| | | | last executed query.
* - Fix window update notification action within PSMTabBar, only redrawing ↵rowanbeentje2013-06-132-6/+25
| | | | the tab bar if the window state has changed. This significantly reduces CPU usage when mousing around the window by avoiding needless draws, and also addresses graphics corruption/artefacts when drawing above a blurred background, addressing Issue #1678
* Update test data script to set the timezone for the session.stuconnolly2013-05-261-0/+1
|
* Output test details in order to debug in build server.stuconnolly2013-05-261-0/+17
|
* * Fixes validation of "Show Optimized Field Type" item (issue #1729)dmoagx2013-05-241-0/+5
|
* - Address further Release/Distribution build warningsrowanbeentje2013-05-2215-64/+64
|
* - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵rowanbeentje2013-05-2166-2144/+529
| | | | enable some more
* PostgresKit: Add a common integration test case base.stuconnolly2013-05-217-92/+156
|
* Mssing from previous commit.stuconnolly2013-05-211-0/+6
|
* Comments.stuconnolly2013-05-211-1/+2
|
* PostgresKit: Implement -description on PGPostgresResult and add an ↵stuconnolly2013-05-213-0/+183
| | | | associated test.
* Issue #1515: Add support for fractional seconds in date/time data types on ↵stuconnolly2013-05-123-11/+27
| | | | server versions (>5.6.3) that support them.
* Issue #1717: Custom query export validation only needs to know the number of ↵stuconnolly2013-05-113-25/+34
| | | | rows of the current result, so don't return the actual result.
* - Fix hangs when adding columns to large tables after the table has beeen ↵rowanbeentje2013-05-092-1/+5
| | | | viewed already, addressing Issue #1710
* - Fix bit data conversion to strings to avoid memory trampling, addressing ↵rowanbeentje2013-05-081-9/+19
| | | | Issue #1708
* - Fix truncation of table content BINARY values which are being edited ↵rowanbeentje2013-05-062-3/+7
| | | | | | | in-place, addressing Issue #1702 - Ensure that truncation of data values includes an ellipsis to make it clear when performance-based truncation is occurring
* * Include Spanish translators in Creditsdmoagx2013-05-061-23/+39
|
* Update localisation comment.stuconnolly2013-04-291-1/+1
|
* Issue #1536: Add the option to force delete a table, which will disable then ↵stuconnolly2013-04-292-68/+114
| | | | re-enable foreign checks. Also, provide a more helpful error message when a table cannot be deleted because of foreign key constraints.
* - Update version number to 1.0.2rowanbeentje2013-04-282-2/+2
|
* - Fix another issue causing ALTER statements to error for binary column ↵rowanbeentje2013-04-281-1/+1
| | | | types being edited, further addressing Issue #1265
* * Fix ivars from last commitdmoagx2013-04-261-0/+10
|
* * Move some duplicate code for charset/collation to it's own classdmoagx2013-04-268-33709/+33822
|
* * Changed a query (addressing issue #1687)dmoagx2013-04-243-16/+16
| | | | * Make some strings localizable
* * Composite Foreign Keys will now show all columns in Relation view (workaround)dmoagx2013-04-214-8/+16
|
* - Fix string type detection, addressing errors when converting string types ↵rowanbeentje2013-04-163-4/+4
| | | | to blob or binary fields (addressing Issue #1453)
* - Add a spotlight comment to allow easy location of Sequel Pro with other ↵rowanbeentje2013-04-141-0/+3
| | | | search terms than the name
* - Specify the NULL status of fields when creating view placeholders on ↵rowanbeentje2013-04-141-1/+5
| | | | export, fixing problems with invalid timestamp NULL defaults, addressing Issue #1686
* - Correctly link the SSH name field, fixing issues editing and ↵rowanbeentje2013-04-141-9468/+9482
| | | | automatically filling in connection names on the SSH tab, addressing Issue #1686
* Use constants instead of hard coded strings.stuconnolly2013-04-071-58/+82
|
* - Fix process list kill query/connection actions not using the correct ID ↵rowanbeentje2013-04-031-3/+3
| | | | if the list was filtered
* Split the process list controller's table view data source and delegate ↵stuconnolly2013-04-034-66/+149
| | | | methods into their own category.
* Issue #1601: Fix menu items not being validated properly once a connection ↵stuconnolly2013-04-031-49/+63
| | | | is established.
* - Fix newline warningsrowanbeentje2013-04-031-1/+1
|