aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPFavoritesPreferencePane.m
Commit message (Collapse)AuthorAgeFilesLines
* - Cleanup: improve compatibility with 10.7 SDK to reduce compiler warningsrowanbeentje2012-02-081-1/+1
|
* - Fix addition of new passwords for favourites edited via the Preferences ↵rowanbeentje2011-10-201-4/+14
| | | | interface. This addresses Issue #1214.
* - Improve the favourites editing process to edit keychain items, rather ↵rowanbeentje2011-10-161-22/+22
| | | | than deleting and recreating them. This has two advantages: firstly, it matches the Apple recommendation, as it preserves keychain item access lists and comments for keychain items when they are edited; secondly, it works around a bug in 10.7 which appears to be a Keychain cacheing issue, causing password retrievals to return the original keychain item on launch - which is no longer valid after deletion/recreation. This addresses Issue #1197.
* - Add the ability to view hidden files in SSH/SSL key selection dialogs; ↵rowanbeentje2011-09-101-12/+25
| | | | this addresses Issue #1176
* - Ensure blank passwords for MySQL connections are passed in as NULL ↵rowanbeentje2011-05-291-5/+5
| | | | instead of an empty string; the MySQL manual suggests that maybe we should be doing this, and it may address Issue #1065.
* - Fix exception on startup if no favourites present - I think the previous ↵rowanbeentje2011-03-221-1/+3
| | | | | | | first-item preservation dates back to when the title had to be included in the favorites array, so removed - Fix favorites sorting and preservation of unsorted status
* - Fix more compiler warningsrowanbeentje2011-03-151-1/+0
| | | | | - Tweak README
* Fix more compiler warnings.stuconnolly2011-03-041-2/+2
|
* fixed compiler warningssqlprodev2011-03-011-0/+2
|
* - Improve on r3070 by also adding .crt extension support in the favouritesrowanbeentje2011-01-051-2/+2
|
* Make sure the root favorite has a name key and value. Also, update string files.stuconnolly2010-11-111-1/+1
|
* Refactor the favorite node class and fix auto-selection of the default or ↵stuconnolly2010-11-111-4/+4
| | | | last used favorite.
* Rearchitect preferences, including:stuconnolly2010-11-031-0/+902
- Split each preference pane into their own controller (subclass of SPPreferencePane, which is a subclass of NSViewController). - Each preference pane controller conforms to the protocol SPPreferencePaneProtocol to allow the main preference controller to build the toolbar. - Move the preferences upgrade function to it's own file. - Add SPFontPreviewTextField which is based on Colloquy's JVFontPreviewField to allow previewing of the selected font in the tables and editor preference panes. - Update localisable strings files.