mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
69 lines
2.1 KiB
Objective-C
69 lines
2.1 KiB
Objective-C
/*
|
|
Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
#import "ProgressController.h"
|
|
#import "Utils.h"
|
|
#import "ValueTransformers.h"
|
|
#import "Dialogs.h"
|
|
#import "DetailsPanel.h"
|
|
#import "DirectoryPanel.h"
|
|
#import "ResultWindow.h"
|
|
#import "Consts.h"
|
|
|
|
@implementation AppDelegate
|
|
+ (NSDictionary *)defaultPreferences
|
|
{
|
|
NSMutableDictionary *d = [NSMutableDictionary dictionaryWithDictionary:[super defaultPreferences]];
|
|
[d setObject:i2n(3) forKey:@"scanType"];
|
|
[d setObject:i2n(80) forKey:@"minMatchPercentage"];
|
|
[d setObject:b2n(NO) forKey:@"wordWeighting"];
|
|
[d setObject:b2n(NO) forKey:@"matchSimilarWords"];
|
|
[d setObject:b2n(NO) forKey:@"scanTagTrack"];
|
|
[d setObject:b2n(YES) forKey:@"scanTagArtist"];
|
|
[d setObject:b2n(YES) forKey:@"scanTagAlbum"];
|
|
[d setObject:b2n(YES) forKey:@"scanTagTitle"];
|
|
[d setObject:b2n(NO) forKey:@"scanTagGenre"];
|
|
[d setObject:b2n(NO) forKey:@"scanTagYear"];
|
|
return d;
|
|
}
|
|
|
|
- (id)init
|
|
{
|
|
self = [super init];
|
|
NSMutableIndexSet *i = [NSMutableIndexSet indexSetWithIndex:4];
|
|
[i addIndex:5];
|
|
VTIsIntIn *vtScanTypeIsNotContent = [[[VTIsIntIn alloc] initWithValues:i reverse:YES] autorelease];
|
|
[NSValueTransformer setValueTransformer:vtScanTypeIsNotContent forName:@"vtScanTypeIsNotContent"];
|
|
VTIsIntIn *vtScanTypeIsTag = [[[VTIsIntIn alloc] initWithValues:[NSIndexSet indexSetWithIndex:3] reverse:NO] autorelease];
|
|
[NSValueTransformer setValueTransformer:vtScanTypeIsTag forName:@"vtScanTypeIsTag"];
|
|
_directoryPanel = nil;
|
|
return self;
|
|
}
|
|
|
|
- (NSString *)homepageURL
|
|
{
|
|
return @"http://www.hardcoded.net/dupeguru_me/";
|
|
}
|
|
|
|
- (ResultWindowBase *)createResultWindow
|
|
{
|
|
return [[ResultWindow alloc] initWithParentApp:self];
|
|
}
|
|
|
|
- (DirectoryPanel *)createDirectoryPanel
|
|
{
|
|
return [[DirectoryPanelME alloc] initWithParentApp:self];
|
|
}
|
|
|
|
- (void)removeDeadTracks
|
|
{
|
|
[(ResultWindow *)[self resultWindow] removeDeadTracks];
|
|
}
|
|
@end
|