2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2013-04-28 14:35:51 +00:00
|
|
|
Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
2010-09-30 10:17:41 +00:00
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
2009-08-05 08:59:46 +00:00
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "AppDelegate.h"
|
2011-01-18 14:35:14 +00:00
|
|
|
#import "ProgressController.h"
|
|
|
|
#import "Utils.h"
|
|
|
|
#import "ValueTransformers.h"
|
|
|
|
#import "Dialogs.h"
|
2009-11-02 15:27:54 +00:00
|
|
|
#import "DetailsPanel.h"
|
2010-02-05 15:51:00 +00:00
|
|
|
#import "DirectoryPanel.h"
|
2011-01-14 12:56:50 +00:00
|
|
|
#import "ResultWindow.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "Consts.h"
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
2012-07-31 14:27:36 +00:00
|
|
|
+ (NSDictionary *)defaultPreferences
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2012-07-31 14:27:36 +00:00
|
|
|
NSMutableDictionary *d = [NSMutableDictionary dictionaryWithDictionary:[super defaultPreferences]];
|
2009-06-01 09:55:11 +00:00
|
|
|
[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"];
|
2012-07-31 14:27:36 +00:00
|
|
|
return d;
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (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;
|
|
|
|
}
|
|
|
|
|
2011-01-13 15:20:03 +00:00
|
|
|
- (NSString *)homepageURL
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-14 12:56:50 +00:00
|
|
|
return @"http://www.hardcoded.net/dupeguru_me/";
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 12:56:50 +00:00
|
|
|
- (ResultWindowBase *)createResultWindow
|
2009-06-01 09:55:11 +00:00
|
|
|
{
|
2011-01-14 12:56:50 +00:00
|
|
|
return [[ResultWindow alloc] initWithParentApp:self];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
2011-01-14 12:56:50 +00:00
|
|
|
|
|
|
|
- (DirectoryPanel *)createDirectoryPanel
|
|
|
|
{
|
|
|
|
return [[DirectoryPanelME alloc] initWithParentApp:self];
|
|
|
|
}
|
|
|
|
|
2012-07-29 20:07:17 +00:00
|
|
|
- (void)removeDeadTracks
|
2010-01-19 11:28:15 +00:00
|
|
|
{
|
2012-07-29 20:07:17 +00:00
|
|
|
[(ResultWindow *)[self resultWindow] removeDeadTracks];
|
2010-01-19 11:28:15 +00:00
|
|
|
}
|
2009-06-01 09:55:11 +00:00
|
|
|
@end
|