aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/Preferences.xib
Commit message (Collapse)AuthorAgeFilesLines
* - Re-enable the fine-grained query logging preferencesrowanbeentje2009-08-311-191/+144
| | | | | | | - Add defaults for fine-grained logging preferences - Add a method to TableDocument to allow setting the query mode, and use the query mode to control logging - Set import/export and custom query to set the appropriate query modes
* • set maximum to 50000 for the Preference setting "Limit result to:"Bibiko2009-08-281-44/+8
|
* • Favorite Preferences - Favorite name issues fixed:Bibiko2009-07-311-29/+209
| | | | | | | - Trap and control the 'name' field of the new added favorite. If the user pressed 'Add Favorite' the 'name' field is set to "New Favorite". If the user do not change the 'name' field or the user deletes the field content it will be set to user@host automatically. This also fixes the issue for empty names. - focus is set to 'Host' field after "Add Favorite" - focus is set to 'Name' field after "Duplicate Favorite"
* Decrease the size of the software update frequency popup button in the ↵stuconnolly2009-07-311-12/+13
| | | | preferences.
* - Hide advanced query logging options for the time being as they are still ↵rowanbeentje2009-07-311-38/+55
| | | | non-functional
* - Add a "Frequency" menu to automatic updates prefpane, allowing users to ↵rowanbeentje2009-07-131-36/+228
| | | | choose hourly, daily, or weekly automatic checks
* - Improve handling of the new favorites interface in preferences, ↵rowanbeentje2009-07-061-140/+133
| | | | simplifying the code and fixing one or two edge cases that caused disassociation (desynch) of keychain passwords from the favorite
* - Fix favorites text fields resizing in prefs windowrowanbeentje2009-07-061-64/+50
| | | | | - Correctly select Structure view after connection
* Overhaul the connection screen:rowanbeentje2009-07-061-1124/+2246
| | | | | | | | | - Replace the connection sheet with a new connection view - Provide a tab-based selection system for Standard, Socket, and SSH connections, and show only the necessary fields. This resolves Issue #50. - Detect when "localhost" is used in error and alert the user (also to address Issue #50) - Update favorite editing to match connection view - Move connection methods to a new connection controller and tidy up TableDocument
* • added to SPArrayAdditions.h: NSArrayObjectAtIndex() inline functionBibiko2009-06-181-89/+22
| | | | | | | | | - id o = NSArrayObjectAtIndex(anArray, index) :== id o = [anArray objectAtIndex:index] - this speed up it ~3µs per call - replaced that inline function for such calls within loops to speed up them • used IMP function pointers for keepAlive calls within queryString: • set -O3 (Fastest) compiler option • allow in preference pane "Tables" to set the Limit up to 50000
* Added new logging options to preferences.avenjamin2009-06-181-33/+396
| | | | Will be implemented in near future.
* - Rename the preference pane 'Alerts' to 'Alerts & Logs'.stuconnolly2009-06-111-53/+59
| | | | | | - Move the new disable query logging to the 'Alerts & Logs' pane. - Hide the display of the new 'Shortcuts' toolbar item.
* Add a very basic preference to disable all query logging. This can be ↵stuconnolly2009-06-111-26/+79
| | | | expanded upon to disable different types of queries.
* • added to Editor Preferences:Bibiko2009-06-051-78/+187
| | | | | - "Query Background" color - checkbox "Highlight Current Query"
* Add support for SSH tunnels, improve password security, and tweaks:rowanbeentje2009-05-281-9/+133
| | | | | | | | | | | | - Implementation of a new SPSSHTunnel class, designed to closely integrate SSH tunnels within Sequel Pro. - Integration of SPSSHTunnel - new connection methods using callbacks, and CMMCPConnection integration - Keychain class upgrade to include the new SPSSHTunnel keychain password helper on the trusted access list for new passwords - Keychain passwords are now held in memory/UI for only as long as necessary, increasing password security - Updated interface to enable/add SSH tunnel functionality - Remove old SSHTunnel class - Addition of new target for the SSH Tunnel password assistant, addition as a dependency of the main target, and addition to build script to copy into resources directory - Fix a keychain password deletion crash
* - Few Changes to Query Editor Preferenceavenjamin2009-05-221-535/+724
| | | | | - Cleaned up a few preference keys - Added Caret Color to Query Editor Prefs - disabled for now.
* • fixed typo and tooltip for the general preference "Display vertical grid ↵Bibiko2009-05-201-14/+17
| | | | lines in tables"
* New preference to allow the displaying of vertical grid lines in table views.stuconnolly2009-05-191-6720/+6787
|
* Show alert when enabling Growl Notifications to let the user know about ↵avenjamin2009-05-181-6718/+6720
| | | | changing notifications in System Preferences.
* Implementation of enhancement #28: Allow customizing default value of NULL ↵stuconnolly2009-05-111-29/+106
| | | | property when adding new table fields.
* • added "Query Editor" preference pane for setting colors, font, and modes ↵Bibiko2009-05-071-44/+1424
| | | | | | | | | | | | | | | | | (from the CQ's action gear which are still customizable there) - in addition to the syntax colors it's now possible to change the fore/background color as well • added "Update Help while typing" feature in the Custom Query editor • first trial to improve syntax highlighting for large text in the Custom Query editor - if the text is larger than 10k the highlighting is performed only for the visible text area ±bias (3.5k) - if the user changes the visible area the highlighting follows time-delayed 500ms) to assure user interaction - a test with a 45MB SQL dump worked (of course a tick slowier) -- todo: improve prev/current query detection (mainly the SQLParser) - if the text size is > 6MB the completion list won't show words from the text due to parsing time - if the text size is > 6MB the line numbering will be disabled due to performance issue (improvements should follow) • some tiny clarification changes in the syntax highlighting code • some minor code cosmetics
* Fix for issue #241. Change number formatter maximum to 100 and allow 3 ↵stuconnolly2009-04-301-13/+11
| | | | integers instead of only 2.
* Make SPPreferenceController the delegate of the favorites manager splitview ↵stuconnolly2009-04-181-48/+16
| | | | and implement maximum and minimum split view sizes.
* - Add defaults for the SelectLastFavoriteUsed and LastFavoriteIndex keysrowanbeentje2009-04-171-44/+386
| | | | | | - Add the ability to configure the maximum number of items in the query history - Added appropriate minumums (0) and maximums in prefs for max history items, LIMIT count, connection timeout value
* - Fixed Issue #230 - ticked "Handle content as compound value" in ↵avenjamin2009-04-151-59/+33
| | | | | | contentArray binding for the Favorites array controller in the Preferences XIB file. - Editing the details of a favorite should now be saved.
* - Tweak the favorite button tooltips to refer to 'favorite's instead of 'row'srowanbeentje2009-04-131-8/+45
| | | | | | - Add the keyboard shortcuts advertised on the button tooltips to the buttons - When duplicating a favorite, append " Copy" to the name to ensure the keychain password isn't automatically shared and therefore accidentally changed or deleted for both when one favorite is edited.
* - Save password changes when making changes in favorites tab in the ↵rowanbeentje2009-04-131-111/+143
| | | | | | | | preferences window - Remove the now unnecessary (and never implemented) "Save" button below the favorites editor - Hook up the Remove and Duplicate favorite buttons to the correct Enable binding
* - part 5 of merge from 'avenjamin' branch into trunk.avenjamin2009-04-101-0/+4926
- committing 3 new Nib files