aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces
Commit message (Collapse)AuthorAgeFilesLines
* Fix layout issues when resizing the user manager's errors sheet.stuconnolly2012-03-241-7598/+7650
|
* Merge in the SPMySQL Framework. This new framework should provide much of ↵rowanbeentje2012-03-173-17459/+17432
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the functionality required from MCPKit and is based around its interface for relatively easy integration. Externally visible changes as a result of this merge: - Speed improvements, particularly when loading large data sets - Stability improvements, particularly related to connection state after the connection is dropped (eg Issue #1256) - Improved support for new MySQL data types, which should address Issue #1052. - Database structure retrieval and query cancellation now use a single persistent helper connection instead of lots of connections on-demand. This should help Issue #1097. - More internal commands now use queries instead of MySQL functions; for example USE queries are now used to trigger database selection, improving transcripts. This addresses Issue #1247. - Improved internal encoding work; while this needs support within the UI, it lays the foundation for issues like Issue #1280. Code improvements: - Much improved class layouts including extensive category usage - Improved documentation across framework methods - Support for fast enumeration across result objects - Rewrite fixes use of a number of deprecate functions - Much less code duplication across result set types - Improved encapsultation within the framework, limiting the number of methods exposed, and also not exposing all the MySQL headers From the Readme file: The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects. SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion (http://mysql-cocoa.sourceforge.net/), and in particular the heavily modified Sequel Pro version (http://www.sequelpro.com/). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger, and Rowan Beentje: - Connection locking (Jakob et al) - Ping & keepalive (Rowan et al) - Query cancellation (Rowan et al) - Delegate setup (Stuart et al) - SSL support (Rowan et al) - Connection checking (Rowan et al) - Version state (Stuart et al) - Maximum packet size control (Hans et al) - Result multithreading and streaming (Rowan et al) - Improved encoding support & switching (Rowan et al) - Database structure; moved to inside the app (Hans et al) - Query reattempts and error-handling approach (Rowan et al) - Geometry result class (Hans et al) - Connection proxy (Stuart et al)
| * More SPMySQLIntegration bugfixes:rowanbeentje2012-03-151-7590/+7598
| | | | | | | | | | | | - Return User Manager details as strings as some result types are marked as binary; fixes opening of user manager - User manager schema list is now a list of databases instead of a list of database dictionaries with one key; simplify model to match
| * Warning: this branch commit is largely untested, and known to throw ↵rowanbeentje2012-02-233-9978/+9861
| | | | | | | | | | | | | | | | | | | | | | | | exceptions as database structure retrieval is currently missing! Further work on SPMySQLFramework integration: - Improve SPMySQL framework build settings including correct ppc builds and a Distribution configuration for the build distributions to match - Add new convenience querying and result methods to the framework - Amend Sequel Pro source to use the new SPMySQL.framework methods everywhere, replacing MCPKit methods where they differ and improving some functions - Remove MCPKit from the source - Fix a number of warnings on Release-style builds
* | * Fixes spacing in Duplicate table sheet for some localizationsdmoagx2012-03-131-39/+53
| |
* | Remove unnecessary text view attributes.stuconnolly2012-03-111-10/+33
| |
* | Fix incorrect export menu item tags. Fixes issue #1270.stuconnolly2012-03-061-33715/+33614
|/
* - Cleanup: improve compatibility with 10.7 SDK to reduce compiler warningsrowanbeentje2012-02-081-33648/+33715
|
* - Add a new CSV import field escape setting, as a new default, supporting ↵rowanbeentje2012-01-061-3462/+3477
| | | | both backslash and double-character escaping. This will mean the vast majroty of CSVs selected for import will be read correctly by default, fixing issues such as Issue #1252
* • fixed issue for line numbering view if associated textView is scrolled ↵Bibiko2012-01-051-12/+24
| | | | | | from origin {0,0}; now it's synchronized • minor speed ups for custom query editor
* Layout fixes.stuconnolly2011-10-081-16/+18
|
* Fix IB warnings.stuconnolly2011-09-271-97/+115
|
* Fix IB warnings.stuconnolly2011-09-271-8620/+8648
|
* * Add "Copy CREATE *" to context and gear menu, fixes #1190 (updated ↵dmoagx2011-09-151-63/+148
| | | | .strings files)
* - Add the ability to view hidden files in SSH/SSL key selection dialogs; ↵rowanbeentje2011-09-102-24417/+25182
| | | | this addresses Issue #1176
* Fix for issue 1168. Whenever the database is changed load all of the ↵stuconnolly2011-09-041-99/+162
| | | | currently used relation names in a backgroud thread. In the event that the user opens the add new relation sheet during this process, the ability to enter a relation name and confirm the addition is disabled until the retrieval process is complete. There is also a new progress indicator on the add sheet to indicate this.
* * Fixes some localization spacing issues reported by Frédéric Latourdmoagx2011-09-025-279/+2824
|
* - Alter the NSNumberFormatter on the extended table info view's ↵rowanbeentje2011-08-311-51/+68
| | | | auto_increment value to use Default instead of Custom style, possibly addressing Issue #1135 (auto_increment display issues in 10.5)
* Tidy up.stuconnolly2011-08-271-33536/+33310
|
* - Lion compatibility improvement: add support for fullscreen windows, on ↵rowanbeentje2011-08-161-33472/+33535
| | | | | | | | | | | the main window only; hide SSH/SSL status when entering fullscreen mode, to prevent drawing issues - Lion compatibility improvement: update tab colours under 10.7 to match system styles - Lion compatibility improvement: fix issues dragging tabs out of windows and into other tab bars - Lion compatibility improvement: fix QuickLook issues under 10.7, including windows which couldn't be closed, fullscreened, or crashes - Fix exceptions in the bundle controller when using tab switching keys - Lion compatibility improvement: use overlay scrollers where possible
* SQL export: Disable the 'include drop syntax option' when the structure ↵stuconnolly2011-07-261-69/+67
| | | | option is not enabled.
* Add the option to the SQL export view as to whether or not the ↵stuconnolly2011-07-101-82/+142
| | | | AUTO_INCREMENT value on a table's structure is included. Defaults to not included. Implements issue #1064.
* * Fixes a spacing issue in Duplicate DB Sheetdmoagx2011-07-061-3/+18
| | | | | * Fixes a case were for string == NULL was checked instead of [string length] == 0 (fixes #1103) * Fixes a logic error while copying databases and adds ability to copy InnoDB tables with foreign key checks (fixes #1111)
* * Make "No" default for SSH questions (fixes #1093)dmoagx2011-07-051-22/+307
|
* * Fixes a spacing issue and an issue where MySQL keywords could be ↵dmoagx2011-07-041-45/+210
| | | | | | translated (fixes #1105) * Adds support for naming relations (fixes #948, #1085)
* Fixes for issue #1098:stuconnolly2011-07-041-25/+96
| | | | | | - Fix logic for enabling/disabling the index storage type popup button when changing the index type. - Add a number formatter to the index length field.
* * Fix two spacing issues in Connection Error Dialog, New Index Sheetdmoagx2011-07-032-94/+1499
|
* • fixed minimal size of Bundle Editor's right split viewBibiko2011-06-271-34/+21
| | | | | | | | • added to default bundles SHA1 und MD5 the key: <key>isDefaultBundle</key> <true/> - for both bundles description and author are missing • removed bundle file 'echo n' from SHA1 package
* - Add a bundle meta summary to the top of the bundle editorrowanbeentje2011-06-271-378/+704
| | | | | | | - Rearrange the bundle editor interface further, building on Stuart's work in r3330; particularly focussing on logically grouping fields together. - Move the "Disable" checkbox to the bottom of the window, rename it to "Disable bundle" to make the intent clear, and update the interface when it is in NSOnState
* - Rework a number of protocol defintions when refactoring to fix IB ↵rowanbeentje2011-06-212-25/+1810
| | | | compilation warnings
* * Fixes UI spacing in some translations (#969,#971,#1079)dmoagx2011-06-203-2101/+773
|
* • fixed some alignments and tried to enhance the label's space due to ↵Bibiko2011-06-201-26/+26
| | | | localizations (esp. for German and Russian)
* Re-position 'Scope' popup button.stuconnolly2011-06-191-365/+352
|
* Tidy up bundle editor UI.stuconnolly2011-06-151-898/+1000
|
* - Add an "Edit all fields in pop-up sheet" men item to the Edit menu, for ↵rowanbeentje2011-06-121-3/+55
| | | | greater visibility to novice users
* - Add tooltips to the previous/next tab menu items listing alternate ↵rowanbeentje2011-06-051-7/+25
| | | | | | | keyboard shortcuts - Update localizable strings
* - Add a "Drop Database..." alternate menu item to partially address Issue #1070rowanbeentje2011-06-051-830/+471
|
* * Fixes most parts of #1006 (Translation of file names)dmoagx2011-05-102-65/+29
| | | | * Update strings files
* - Fix a number of warnings for DBView.xib by moving some 10.6-only code ↵rowanbeentje2011-05-081-41/+823
| | | | | | | from a #ifndef SP_REFACTOR/#else/#endif to just a #ifdef SP_REFACTOR/<protocol declaration>/#endif, and remarking a few items as IBOutlets - Update localisable strings
* Re-add the ability the show the full process list in the server processes ↵stuconnolly2011-05-071-15/+75
| | | | panel. Fixes issue #1036.
* Add an 'Add New Row' menu item to the table content context menu. Completes ↵stuconnolly2011-05-071-1305/+117
| | | | the implementation of issue #939.
* Fix slight interface alignment issue.stuconnolly2011-05-071-17/+12
|
* • control the separator menu item above the "Open ... in new Tab" in ↵Bibiko2011-05-071-37/+531
| | | | TablesList's context and gear menu to avoid having two separators one after another
* Implement a large number of minor fixes and improvements to export ↵rowanbeentje2011-05-071-10/+139
| | | | | | | | | | | | | | | | | | | | | | functionality, including an overhaul of filename NSTokenField functionality: - Improve the NSTokenField used for export filenames: only tokenise reserved tokens, don't tokenise reserved words which are parts of other words, allow the comma to be used, update tokenisation during typing, and prevent whitespace triming. - Save the last selected export path, and make the path selection button open a dialog to the selected directory - Save the export filename and restore on future uses of the export dialog (only if the name contains placeholder tokens, so one-off export names aren't saved) - If the advanced options are collapsed, display a summary of the selected options next to the disclosure triangle - Display a small warning in the corner of the window if the export file cannot be imported into Sequel Pro, to warn those people attempting to back up their databases in XML - Clarify and improve the export warning dialog if files already exist or could not be created; make the simpler file-exists cases reflect OS-style dialogs, alter wording based on the number of files that failed and how they failed, and only show the "replace" or "skip" type buttons if it makes sense to do so. - Fix a mutation-during-enumeration error when skipping files - If "Cancel" is chosen in the export file creation replace/error dialog, redisplay the export sheet with the previous selection still active - Add support for year, month and day tokens in the filename token list - Don't allow blank custom filenames, before or after tokenisation, as this can cause problems - instead fall back to default filenames in those cases - Only append the extension if one hasn't been set - on all export formats, extending r3284 - If exporting to multiple files option is enabled but only one table is selected, supply that table name for filename table tokens - Update the progress bar to reflect update progress when exporting CSV data - Fix a bug causing exports to hang if the low-memory advanced option was set and content was selected to export and any empty tables were encountered - Save memory use and compression advanced export settings across sessions - Update localisable strings
* - Update the favourites text fields to use SPFavoritesPreferencePane as ↵rowanbeentje2011-04-231-103/+196
| | | | their controller instead of SPPreferencesController; this fixes issues such as the favourite name not being generated correctly, or the password being lost when a username or database field is changed.
* Fix Issue #1019 (Sidebar width not remembered):rowanbeentje2011-04-011-86/+64
| | | | | | | - This may be due to an Apple bug. I tracked it down to purely SPDatabaseDocument having a reference outlet to the activity scroll view. - Removing the reference worked as a fix; removing all code that used that reference did not. - Renaming the reference, and removing SPTableInfo's use of a reference, appears to act as a workaround. If the reference is not renamed, the bug still mainfests (!!!)
* • fixed warningsBibiko2011-03-153-22/+44
|
* Add menu item separator to table list context menu.stuconnolly2011-03-071-39/+59
|
* * UI fixes for #982 #971dmoagx2011-03-078-1121/+849
|
* - Fix trigger deletion to use the correct trigger namerowanbeentje2011-02-131-884/+124
| | | | | | | - Improve trigger deletion error process to show error sheets correctly - Fix spelling of "Statement" in interface - Tweak trigger column widths