aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/Preferences.xib
Commit message (Collapse)AuthorAgeFilesLines
* • outsourced keyword completion and function completion lists to ↵Bibiko2010-03-081-5/+61
| | | | | | | | | | | CompletionTokens.plist • SPQueryController manages keyword and function completion lists now; this reduces the memory usage a bit and the list is easier to edit • added pre-defined function argument snippets to CompletionTokens.plist (auto-generated from mysql's HELP) • added Preference option for Editor whether a function completion should insert () and if found the function argument snippets automatically or not - last ) will be linked as autopaired then • changed behaviour for wrapping a selection into `"'() etc. - now it re-selects the original selection after wrapping and in addition last wrap character is now marked as autopair-linked • improved logic for popping up the auto-completion list
* • added to CustomQuery's CMTextView the option to set auto-completion ↵Bibiko2010-03-071-3/+385
| | | | | | on/off, settable in Prefs and gear menu - if inserted completion is marked as function it inserts snippet (${}1:) so far; function parameters as snippets follows soon
* • CSV Import Field MapperBibiko2010-03-061-26/+239
| | | | | - fixed some issues for displaying the default values for auto_increment and time_stamp • added possibility to change the tab stop width in each CMTextView via Preference setting in Editor window
* • CMTextView's colours are set via observer, live changed in editable ↵Bibiko2010-01-301-35/+316
| | | | | | | | textviews • added Preference setting "Table font" in "Table" pane to set the table font/size for all result tables (Content, Custom Query) • added to SPTableView the method setFont: • fixed the initialisation of vars in CMTextView (fixes the displaying of create syntax)
* - With the improved row count support and behaviour, replace the old "Fetch ↵rowanbeentje2010-01-021-124/+263
| | | | correct row count" preference with a new Table row counts query level (never, only for small tables, always), defaulting to only for small tables - boundary currently set to 5MB. This addresses Issue #500
* - Replace the LIMIT interface on the content view with a pagination control ↵rowanbeentje2009-11-231-99/+59
| | | | | | | | at the bottom. This addresses the last of Issue #49 and implements Issue #133; jump-to and two prefs affecting loading are available in a popup when clicking the pagination interface. - Format row counts at the bottom of the content pane - Increase the MCPStreamingResult buffer for a stronger workaround for #463
* Resolve IB checkbox warnings.stuconnolly2009-11-171-54/+19
|
* Preferences interface tweaks.stuconnolly2009-11-151-60/+194
|
* All users to resize the 'Favorites' preference pane.stuconnolly2009-11-051-307/+1047
|
* • Finish off implementation to set the default selection view mode. Issue #249avenjamin2009-11-021-92/+13
|
* • Initial work to set the default view mode when connecting. Issue #249avenjamin2009-11-021-1152/+751
| | | | • Organize constants into groups
* Add 'EUC-KR Korean (euckr)' to the default encoding dropdown in the ↵stuconnolly2009-11-011-75/+148
| | | | preferences to make it consistent with the 'View Using Encoding' menu item.
* Highlight current query preference label change.stuconnolly2009-10-161-117/+767
|
* • fixed truncating issue of Pref's Favorite List table viewBibiko2009-10-121-342/+437
| | | | | - now favorite name/host will be truncated correctly - added tooltip for truncated favorites
* - 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