aboutsummaryrefslogtreecommitdiffstats
path: root/Resources
Commit message (Collapse)AuthorAgeFilesLines
* Improvements to connection view outline view:rowanbeentje2012-05-201-0/+0
| | | | | | | | | | - Prevent groups from being dragged into themselves (or child nodes) to prevent data loss - Improve selection handling when manually reordering nodes - Don't allow drags of the "Favorites" title at the top of the view to prevent exceptions - Prevent the "Favorites" title from being collapsed to prevent confusion on 10.7+ - Improve group tooltips to reflect contained favourites and groups - Improve menu validation checks
* Rework connection loss handling in SPMySQL, particularly to improve ↵rowanbeentje2012-05-084-0/+0
| | | | | | | | | | | | background loss of connections: - Attempt to fix a condition causing a reconnection loop by fixing the order of connection state check and a query variable - If a connection is lost in the background, only attempt a single reconnect instead of requiring user intervention at once - Add a new connection state to handle background disconnects - If the connection has been lost in the background but is about to be used, reconnect it automatically (informing the user of loss if appropriate) - Don't attempt background reconnections if the connection has not been used for some time (Also update localisable strings, and tweak navigator controller connection usage)
* - Fix localisation of export tokens, preventing duplication of strings to ↵rowanbeentje2012-04-192-0/+0
| | | | be translated causing translation faults; this addresses Issue #1322.
* Localize user manager dialogs.stuconnolly2012-04-071-0/+0
|
* Tidy up.stuconnolly2012-04-014-23/+51
|
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-0/+0
| | | | | | | fix nightly builds - Fix warnings
* Merge in the SPMySQL Framework. This new framework should provide much of ↵rowanbeentje2012-03-171-22/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* | Update strings.stuconnolly2012-03-111-0/+0
|/
* Move QueryKit to it's own project.stuconnolly2012-02-251-22/+0
|
* - Cleanup: improve compatibility with 10.7 SDK to reduce compiler warningsrowanbeentje2012-02-081-0/+0
|
* - Add a new CSV import field escape setting, as a new default, supporting ↵rowanbeentje2012-01-061-1/+1
| | | | 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
* - Update code to use NSStrings for NSTableColumn identifiers, as per 10.7 SDKrowanbeentje2011-10-171-0/+0
| | | | | - Update localizable strings
* Add a hidden preference for specifying the long running query notification ↵stuconnolly2011-10-081-0/+2
| | | | time (currently in milliseconds). Implements issue #944
* * Add French translators to credits (translation mostly done, so we can ↵dmoagx2011-09-241-12/+36
| | | | include it in next release)
* * Add "Copy CREATE *" to context and gear menu, fixes #1190 (updated ↵dmoagx2011-09-154-0/+0
| | | | .strings files)
* - Make add relation error detail intro localisablerowanbeentje2011-09-092-0/+0
| | | | | | - If the add relation error strongly appears to be a name-already-taken error, add the name to the takenNames list to prevent it being used again and to highlight the error - Update localisable strings
* Add the beginnings of QueryKit.stuconnolly2011-09-042-1/+23
|
* Tidy up console/query controller.stuconnolly2011-09-032-0/+0
|
* * Fixes some localization spacing issues reported by Frédéric Latourdmoagx2011-09-022-0/+0
|
* - Update version numbers to 0.9.9.1rowanbeentje2011-09-012-2/+2
|
* - Update localised strings for up-to-date German and Russian translations, ↵rowanbeentje2011-08-3115-0/+172
| | | | including Russian translation of the credits file
* * Fixes some strings that were not really localizable the way they were ↵dmoagx2011-08-262-0/+0
| | | | constructed.
* Specified the application category as "Developer Tools" for Lion. This ↵avenjamin2011-08-031-0/+2
| | | | resolves issue #1133. (http://spbug.com/1133)
* Add Sparkle to credits.stuconnolly2011-07-102-4/+22
|
* * Fixes a spacing issue and an issue where MySQL keywords could be ↵dmoagx2011-07-041-0/+0
| | | | | | translated (fixes #1105) * Adds support for naming relations (fixes #948, #1085)
* - Add a bundle meta summary to the top of the bundle editorrowanbeentje2011-06-273-0/+0
| | | | | | | - 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
* - Fix exceptions seen in 0.9.9RC related to query favorites with nil query ↵rowanbeentje2011-06-202-0/+0
| | | | | | | texts (L2239) - Update localisable strings
* - Update version strings to 0.9.9 version and 2011 copyright datesrowanbeentje2011-06-1257-5/+144
| | | | | - Add German and Russian localisations
* * Add translators to creditsdmoagx2011-06-091-1/+21
|
* - Add tooltips to the previous/next tab menu items listing alternate ↵rowanbeentje2011-06-052-0/+0
| | | | | | | keyboard shortcuts - Update localizable strings
* * Fixes most parts of #1006 (Translation of file names)dmoagx2011-05-103-0/+0
| | | | * Update strings files
* - Fix a number of warnings for DBView.xib by moving some 10.6-only code ↵rowanbeentje2011-05-083-0/+0
| | | | | | | 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-1/+3
| | | | panel. Fixes issue #1036.
* Implement a large number of minor fixes and improvements to export ↵rowanbeentje2011-05-071-0/+0
| | | | | | | | | | | | | | | | | | | | | | 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
* * And this time actually with genstrings, sorrydmoagx2011-03-201-0/+0
|
* - Fix compiler warnings for MCPKit - largely typecast relatedrowanbeentje2011-03-024-0/+0
| | | | | | | | | - Fix further compiler warnings, including a couple of bugs - Disable the -wselector warnings (Multiple definition types for selector) as they're currently unsupported in LLVM - Disable the -wconversion warnings (Prototype conversion) warnings as we usually can't affect protocol declaration - Disable the -wstrict-selector-match (Strict selector matching) due to too many false positives
* • updated Credits.rtf re ShortcutRecorderBibiko2011-01-241-0/+11
|
* - Change shortcut for "Duplicate Connection Tab" to alt-T for increased ↵rowanbeentje2011-01-232-0/+0
| | | | | | | | discoverability - this improves on Issue #943 - Add alternate keybindings for tab switching - support command-shift-[ and -], and command-alt-left and right arrows to match behaviour of other applications - Update localisable strings
* • updated syntax highlighting and completion suggestions due to 5.5 additionsBibiko2011-01-211-0/+26
| | | | • improved "Format SQL" connection detection
* • implemented user-definable Soft IndentionBibiko2011-01-211-0/+4
| | | | | - instead of using \t as indention string the user can choose how many spaces should be used instead - addresses issue 956
* - When saving user changes to the database, catch errors and display them ↵rowanbeentje2011-01-203-0/+0
| | | | | | | | in a single sheet for review. This fixes a number of isGroupRow crashes on any error. - Track a host row's original host to allow host edits - Update localisable strings
* - Rework the Add Index indexes menu and the auto_increment index required ↵rowanbeentje2011-01-043-0/+0
| | | | | | | | | | | | | menu to use tag-based values when generating queries, allowing localisation of menu contents without using those localised values in queries. This addresses I$ - Remove the ability to specify a FULLTEXT auto_increment index, as I believe this isn't possible. - Prevent sheet reuse from specifying invalid storage types for PRIMARY KEYs - Fix exceptions when adding indexes to a table where every field is already indexed - Fix initialField/indexedFieldNames check to improve on r3061 - Fix toggling advanced index view after closing the sheet with the view open - Update localisable strings
* • changed the way to check for available update of Default BundlesBibiko2011-01-031-2/+0
| | | | - perform a check only if the revision number is greater as the last recorded one, in other words if an updated version of Sequel Pro was installed and runs for the very first time
* * Provide more context for Bundle Editor localizable messages (leaves one ↵dmoagx2010-12-262-0/+0
| | | | issue with genstrings, might need to set "-q")
* - Fix issues with user management and GRANT OPTION - when applying all ↵rowanbeentje2010-12-222-0/+0
| | | | | | | privileges (or removing all privileges) at once, the server treated the list of all options as 'GRANT ALL', instead of GRANT ALL WITH GRANT OPTION. - Update localisable strings files
* • preparations for managing default Bundles which will ship with SPBibiko2010-12-201-0/+4
| | | | • improved Bundle Editor to store only modified Bundles
* • HTML output windowBibiko2010-12-131-0/+2
| | | | | - enabled WebInspector in context menu for debugging - alert the user about JavaScript parsing errors and exceptions with some debug info
* * Fix a minor typo (reported by Sérgio Miranda) and update .stringsdmoagx2010-12-122-0/+0
|
* Apply a tweaked version of a patch by Aaron Linville ↵rowanbeentje2010-12-052-3/+5
| | | | | | | | | | (http://www.linville.org/) to handle table linking in .dot exports on case-insensitive servers: - Adds a new checkbox on the .dot export interface controlling the case sensitivty of link handling - Improve .dot export to use lowercase link references when the option is enabled, fixing .dot exports of table relations of table names with uppercase characters on case-insensitive servers - Check the server's case-sensitivity setting and use that to control the checkbox when using the export interface to select .dot export This addresses Issue #920.
* - Show and hide the custom query info area based on whether custom query ↵rowanbeentje2010-12-044-0/+0
| | | | | | | | | | errors occurred, starting off hidden - Add "errors"/"no errors" prefix to the custom query status area - Add an import cancelled line to the import error list when stopping imports after errors - Fix custom query error highlighting by scrolling to the error - Update localisable strings