aboutsummaryrefslogtreecommitdiffstats
path: root/Resources/English.lproj/IndexesView.strings
Commit message (Collapse)AuthorAgeFilesLines
* Update strings filesMax2015-04-051-0/+0
| | | | (Mainly to trigger a rebuild)
* - Remove BWToolKit from the project, using ibtool to strip out plugin ↵rowanbeentje2012-08-031-0/+0
| | | | dependencies now that all BW custom elements have been removed; remove last references and build steps.
* Rework connection loss handling in SPMySQL, particularly to improve ↵rowanbeentje2012-05-081-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)
* - Rework the Add Index indexes menu and the auto_increment index required ↵rowanbeentje2011-01-041-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
* Consolidate and improve ping code:rowanbeentje2010-09-251-0/+0
| | | | | | | | - Foreground and keepalive pings now use the same code, which has been tidied and improved - Global variables are no longer incorrectly shared across multiple instances - If a ping thread blocks in a state where pthread_cancel no longer functions, the connection is assumed to have failed (network issues etc) This should further improve MySQL crashes linked to pings, and will hopefully address Issue #830. Also update localizable strings
* - Remove a number of invalid [NSTableView makeFirstResponder] calls that ↵rowanbeentje2010-09-181-0/+0
| | | | | | | had crept into the source, replacing with the correct [NSWindow makeFirstResponder:NSTableView]. This fixes a number of exceptions. - Update localisable strings.
* Enable the "Sequel Pro" tab style by default, and include the following fixes:rowanbeentje2010-06-181-0/+0
| | | | | | | | - Fix display of the overflow menu - Improve tab spacing and internal layout - Improve tab names for documents to correctly show the database for background documents in additional cases - Update strings files
* Split the management of a table's indexes (adding and removing) to its own ↵stuconnolly2010-06-141-0/+0
controller and XIB in preparation for the UI redesign.