aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks
Commit message (Collapse)AuthorAgeFilesLines
* Merge further revisions from trunk back to the 1.0.x release branch:rowanbeentje2013-04-287-40/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - r4034: End editing for deleting content filter or query favourites, addressing exceptions and Issue #1648 - r4035: Apply schlabberdog's fix for log #3969, addressing Issue #1647 - r4036: Fix an error parsing SQL inside an unterminated delimiter statement causing an off-by-one error in positioning, addressing Issue #1643 - r4037: If date-type fields are cleared, and allow NULLs, save the cell value as NULL; this implements Issue #1638 - r4038: Alter the content filter manager and the query favourite manager to import items from a file into the Global group if the document is untitled, improving import UX and addressing Issue #1616 and Issue #1645. Also select and scroll to the newly imported items for clarity. - r4039: Fix crashes in the User Manager when fields don't validate but a save/cancel/tab switch is still triggered, addressing Issue #1627 - r4041: Tweak and improve the User Manager: Rework how data to populate the user manager is retrieved from the server, speeding up display of lots of users by a large factor; Fix support for schema permissions for the Anonymous user, and add support for '%' and '' hostnames (only showing if already set once), fixing Issue #1620; Highlight databases in the user manager that have permissions set for the selected user; Switch to using the centrally provided database list to reduce queries and remove the information_schema and performance_schema "databases"; Speed up a number of operations by tweaking the logic and queries used - r4042: Fix release builds after r4041; Update localizable strings - r4043: Set Sequel Pro to always run on Integrated Graphics on machines with both integrated and discrete, improving power consumption if nothing else is triggering the discrete GPU. This addresses Issue #1609 - r4044: Make the theme background apply to the query favourites editor - r4045: If the Custom Query editor view is active on window open, correctly set the focus in it, addressing Issue #1590 - r4046: Add support for querying the server default charset and collation; Move a bit of redundant code into a method - r4047: Restore tab bar label when cancelling a connection - r4048: Fix format string error in QueryKit - r4049: Alter the preferences favourite minimum version to avoid issues with previous runs of nightlies, which may partially address Issue #1588; Remove the old favourites key from the preferences now imports have succeeded - r4050: Allow Favorites import to read favorites from an old preferences .plist file, further addressing Issue #1588 - r4051: Change the string '=' and '!=' to be case- and collation-insensitive by default, using the Shift key (as documented in the tooltip) to trigger a BINARY exact match. This addresses Issue #1578 - r4052: When adding a database the servers default charset is now shown - r4053: Adjust keywords list to fix auto capitalisation of "ON" - r4054: Add a new SPMySQLEmptyResult class to SPMySQLFramework, returning it instead of nil if a query produces no result set. This allows per-result-set properties to be preserved, fixing issues where information like query execution time was lost - addressing Issue #1577 - r4056: Improve startup when loading from file, preventing overwrite of details read from a spf/spfs during startup. This addresses Issue #1619 - r4057: Correctly reset document state for setting it from file/when duplicating tab, further addressing Issue #1619 - r4058: Add a stub override to fix exceptions when code receiving a SPMySQLEmptyResult expects a SPMySQLStreamingResult/SPMySQLFastStreamingResult (Exception #3988) - r4060: Make some small tweaks to string BINARY handling: Correctly send the binary state/collation when reordering fields, addressing Issue #1265; Allow unticking of the binary box to save correctly, allowing conversion of fields to non-binary collations again - r4061: Fix errors when editing or moving columns on server vesions which do not support character sets/collations, addressing Issue #1629; Fix needless collation queries on those servers; Disable field enums and table encoding dropdown on those servers
* PostgresKit: Revert previous change.stuconnolly2013-01-221-3/+3
|
* PostgresKit: Fix tests, take 2.stuconnolly2013-01-221-4/+4
|
* PostgresKit: Fix tests.stuconnolly2013-01-221-1/+1
|
* PostgresKit: Add a better test failure message.stuconnolly2013-01-221-1/+1
|
* PostgresKit: Fix tests intermittently failing due to connection not being ↵stuconnolly2013-01-221-4/+9
| | | | established.
* Don't need to set the test delegate.stuconnolly2013-01-221-3/+1
|
* PostgresKit: Fix the integration tests as well as some issues that they ↵stuconnolly2013-01-164-29/+21
| | | | highlighted.
* PostgresKit: When extracting an error field check it's not null before ↵stuconnolly2013-01-161-1/+3
| | | | returning it.
* - When requesting the server vesion with no current connection, return -1 ↵stuconnolly2013-01-152-3/+9
| | | | | | | instead of zero. - When executing a query, perform the query checks before the connection check to avoid performing unnecessary library calls.
* Fix debug optimization level.stuconnolly2013-01-151-0/+1
|
* Tidy up.stuconnolly2013-01-151-3/+3
|
* Make sure the test script exits with the correct code based on the success ↵stuconnolly2013-01-142-10/+4
| | | | of the tests.
* Fix typo in test data script.stuconnolly2013-01-141-2/+2
|
* Fix typos.stuconnolly2013-01-143-2/+4
|
* Update QueryKit bundle identifier.stuconnolly2013-01-122-2/+2
|
* Update PostgresKit bundle identifiers.stuconnolly2013-01-112-2/+2
|
* - Call the NSWindow super implementation of validateMenuItem: in SPWindow, ↵rowanbeentje2013-01-051-2/+8
| | | | | | | | 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
* - Add Retina versions of the tab close buttonsrowanbeentje2012-12-1339-10/+14
| | | | | | - Recompress other PSMTabBar images where necessary - Improve drawing of the tab bar in response to window state change, allowing better colour display in edge cases and particularly when sheets are open
* Comments.stuconnolly2012-11-172-2/+7
|
* - Merge in changes from FeedbackReporter framework master up to ↵rowanbeentje2012-10-2120-3/+11
| | | | | | | 9bcc34dd34396f9e0285f96a148c2071c52e7abb, including localisation improvements and code cleanu$ - Disable retrieval of user's "Me" card from the address book to avoid Security warnings about accessing Contacts on 10.8
* Fix static analysis and release build warnings.stuconnolly2012-10-202-8/+12
|
* - Fix an incorrect selector method after recent thread naming workrowanbeentje2012-10-201-1/+1
|
* - Clean up some connection cancellation/close-during-connect edges as a ↵rowanbeentje2012-10-144-5/+13
| | | | | | | 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-144-109/+146
| | | | | | | | | 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
|
* - Improve connection error detecting in SPMySQLFrameworkrowanbeentje2012-10-061-1/+3
|
* * Forgot to include a file in last commitdmoagx2012-10-031-1/+1
|
* 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
|
* 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
|
* - Alter the build settings for compatibility with Xcode 3.2.x up to Xcode ↵rowanbeentje2012-09-232-19/+25
| | | | | | | | 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-192-25/+24
|
* Add the ability to set the default row return type.stuconnolly2012-09-162-4/+21
|
* Comments.stuconnolly2012-09-134-0/+48
|
* Updated project to run/build on Mac OSX 10.8/Xcode 4.4bamse162012-09-132-25/+26
| | | | | | Updated QueryKit project to be able to build and run tests (changed Symbols Hidden By Default to NO in Default config)