- Implemented App Sandboxing in a more friendly manner. - All sandboxed paths will need to be set in Preferences. Set as loose a path as you want. The shortest path will be preferred. - Removed Last.fm client support, as it was non-functional by now, unfortunately. Maybe something better can come in the future. - Added support for insecure SSL to the HTTP/S reader, in case anyone needs streams which are "protected" by self-signed or expired certificates, without having to futz around by adding certificates to the system settings, especially for expired certificates that can't otherwise be dodged this way. If you want to import your old playlists to the new version, copy the contents of `~/Library/Application Support/Cog` to the alternate sandbox path: `~/Library/Containers/org.cogx.cog/Data/Library/Application `... ...continued...`Support/Cog`. The preferences file will migrate to the new version automatically. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
42 lines
979 B
Objective-C
42 lines
979 B
Objective-C
//
|
|
// PreferencesController.h
|
|
// Preferences
|
|
//
|
|
// Created by Vincent Spader on 9/4/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PreferencePanePlugin.h"
|
|
|
|
#import "GeneralPane.h"
|
|
#import "HotKeyPane.h"
|
|
#import "MIDIPane.h"
|
|
#import "OutputPane.h"
|
|
|
|
@interface GeneralPreferencesPlugin : NSObject <PreferencePanePlugin> {
|
|
IBOutlet HotKeyPane *hotKeyPane;
|
|
IBOutlet OutputPane *outputPane;
|
|
IBOutlet MIDIPane *midiPane;
|
|
IBOutlet GeneralPane *generalPane;
|
|
|
|
IBOutlet NSView *playlistView;
|
|
IBOutlet NSView *updatesView;
|
|
IBOutlet NSView *notificationsView;
|
|
IBOutlet NSView *appearanceView;
|
|
|
|
__weak IBOutlet NSButton *iTunesStyleCheck;
|
|
}
|
|
|
|
- (HotKeyPane *)hotKeyPane;
|
|
- (OutputPane *)outputPane;
|
|
- (MIDIPane *)midiPane;
|
|
- (GeneralPane *)generalPane;
|
|
|
|
- (GeneralPreferencePane *)updatesPane;
|
|
- (GeneralPreferencePane *)playlistPane;
|
|
- (GeneralPreferencePane *)notificationsPane;
|
|
- (GeneralPreferencePane *)appearancePane;
|
|
|
|
@end
|