diff --git a/Classes/FanControl.h b/Classes/FanControl.h index 8dfda7f..cb55c6b 100755 --- a/Classes/FanControl.h +++ b/Classes/FanControl.h @@ -99,7 +99,6 @@ IBOutlet id DefaultsController; MachineDefaults *mdefaults; - NSDictionary *s_sed; NSDictionary *undo_dic; @@ -107,6 +106,8 @@ NSImage *menu_image_alt; } +@property (nonatomic, strong ) NSMutableDictionary *machineDefaultsDict; + -(void)terminate:(id)sender; @@ -137,8 +138,8 @@ @interface NSNumber (NumberAdditions) -- (NSString *) tohex; -- (NSNumber*) celsius_fahrenheit; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSString *tohex; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSNumber *celsius_fahrenheit; @end diff --git a/Classes/FanControl.m b/Classes/FanControl.m index d8a40fa..ed1cc0a 100755 --- a/Classes/FanControl.m +++ b/Classes/FanControl.m @@ -32,7 +32,7 @@ @interface FanControl () + (void)copyMachinesIfNecessary; -- (BOOL)isInAutoStart; +@property (NS_NONATOMIC_IOSONLY, getter=isInAutoStart, readonly) BOOL inAutoStart; - (void)setStartAtLogin:(BOOL)enabled; + (void)checkRightStatus:(OSStatus)status; @end @@ -80,14 +80,14 @@ -(void)upgradeFavorites for (i=0;i<[rfavorites count];i++) { BOOL selected = NO; - NSArray *fans = [[rfavorites objectAtIndex:i] objectForKey:@"FanData"]; + NSArray *fans = rfavorites[i][@"FanData"]; for (j=0;j<[fans count];j++) { - if ([[[fans objectAtIndex:j] objectForKey:@"menu"] boolValue] == YES ) { + if ([fans[j][@"menu"] boolValue] == YES ) { selected = YES; } } if (selected==NO) { - [[[[rfavorites objectAtIndex:i] objectForKey:@"FanData"] objectAtIndex:0] setObject:[NSNumber numberWithBool:YES] forKey:@"menu"]; + rfavorites[i][@"FanData"][0][@"menu"] = @YES; } } @@ -95,7 +95,6 @@ -(void)upgradeFavorites -(void) awakeFromNib { - s_sed = nil; pw=[[Power alloc] init]; [pw setDelegate:self]; [pw registerForSleepWakeNotification]; @@ -108,57 +107,51 @@ -(void) awakeFromNib { mdefaults=[[MachineDefaults alloc] init:nil]; - s_sed=[mdefaults get_machine_defaults]; + self.machineDefaultsDict=[[NSMutableDictionary alloc] initWithDictionary:[mdefaults get_machine_defaults]]; - - NSMutableArray *favorites=[NSMutableArray arrayWithObjects: - [NSMutableDictionary dictionaryWithObjectsAndKeys: - @"Default", @"Title", - [s_sed objectForKey:@"Fans"], @"FanData",nil],nil]; + NSMutableArray *favorites = [[NSMutableArray alloc] init]; + + NSMutableDictionary *defaultFav = [[NSMutableDictionary alloc] initWithObjectsAndKeys:@"Default", @"Title", + [NSKeyedUnarchiver unarchiveObjectWithData:[NSKeyedArchiver archivedDataWithRootObject:[[mdefaults get_machine_defaults] objectForKey:@"Fans"]]], @"FanData",nil]; + + [favorites addObject:defaultFav]; + + NSRange range=[[MachineDefaults computerModel] rangeOfString:@"MacBook"]; if (range.length>0) { //for macbooks add a second default - MachineDefaults *msdefaults=[[MachineDefaults alloc] init:nil]; - NSMutableDictionary *sec_fav=[NSMutableDictionary dictionaryWithObjectsAndKeys:@"Higher RPM", @"Title", - [[msdefaults get_machine_defaults] objectForKey:@"Fans"], @"FanData",nil]; - [favorites addObject:sec_fav]; - int i; - for (i=0;i<[[s_sed objectForKey:@"Fans"] count];i++) { - int min_value=([[[[s_sed objectForKey:@"Fans"] objectAtIndex:i] valueForKey:@"Minspeed"] intValue])*2; - [[[[favorites objectAtIndex:1] objectForKey:@"FanData"] objectAtIndex:i] setObject:[NSNumber numberWithInt:min_value] forKey:@"selspeed"]; - + NSMutableDictionary *higherFav=[[NSMutableDictionary alloc] initWithObjectsAndKeys:@"Higher RPM", @"Title", + [NSKeyedUnarchiver unarchiveObjectWithData:[NSKeyedArchiver archivedDataWithRootObject:[[mdefaults get_machine_defaults] objectForKey:@"Fans"]]], @"FanData",nil]; + for (NSUInteger i=0;i<[_machineDefaultsDict[@"Fans"] count];i++) { + + int min_value=([[[[_machineDefaultsDict objectForKey:@"Fans"] objectAtIndex:i] objectForKey:@"Minspeed"] intValue])*2; + [[[higherFav objectForKey:@"FanData"] objectAtIndex:i] setObject:[NSNumber numberWithInt:min_value] forKey:@"selspeed"]; } - [msdefaults release]; - } + [favorites addObject:higherFav]; + + } //sync option for Macbook Pro's NSRange range_mbp=[[MachineDefaults computerModel] rangeOfString:@"MacBookPro"]; - if (range_mbp.length>0 && [[s_sed objectForKey:@"Fans"] count] == 2) { + if (range_mbp.length>0 && [_machineDefaultsDict[@"Fans"] count] == 2) { [sync setHidden:NO]; } - - NSString *feedURL = nil; - if ([SystemVersion isTiger]) { - feedURL = @"http://www.eidac.de/smcfancontrol/smcfancontrol_tiger.xml"; - } else { - feedURL = @"http://www.eidac.de/smcfancontrol/smcfancontrol.xml"; - } - //load user defaults defaults = [NSUserDefaults standardUserDefaults]; [defaults registerDefaults: [NSMutableDictionary dictionaryWithObjectsAndKeys: - [NSNumber numberWithInt:0], @"Unit", - [NSNumber numberWithInt:0], @"SelDefault", - [NSNumber numberWithBool:NO], @"AutoStart", - [NSNumber numberWithBool:NO],@"AutomaticChange", - [NSNumber numberWithInt:0],@"selbatt", - [NSNumber numberWithInt:0],@"selac", - [NSNumber numberWithInt:0],@"selload", - [NSNumber numberWithInt:0],@"MenuBar", + @0, @"Unit", + @0, @"SelDefault", + @NO, @"AutoStart", + @NO,@"AutomaticChange", + @0,@"selbatt", + @0,@"selac", + @0,@"selload", + @0,@"MenuBar", @"TC0D",@"TSensor", - feedURL,@"SUFeedURL", + @0,@"NumLaunches", + @NO,@"DonationMessageShown", [NSArchiver archivedDataWithRootObject:[NSColor blackColor]],@"MenuColor", favorites,@"Favorites", nil]]; @@ -167,13 +160,11 @@ -(void) awakeFromNib { g_numFans = [smcWrapper get_fan_num]; s_menus=[[NSMutableArray alloc] init]; - [s_menus autorelease]; int i; for(i=0;i0) { - NSMutableDictionary *toinsert=[[NSMutableDictionary alloc] initWithObjectsAndKeys:[newfavorite_title stringValue],@"Title",[[msdefaults get_machine_defaults] objectForKey:@"Fans"],@"FanData",nil]; //default as template - [toinsert setValue:[NSNumber numberWithInt:0] forKey:@"Standard"]; + NSMutableDictionary *toinsert=[[NSMutableDictionary alloc] initWithObjectsAndKeys:[newfavorite_title stringValue],@"Title",[msdefaults get_machine_defaults][@"Fans"],@"FanData",nil]; //default as template + [toinsert setValue:@0 forKey:@"Standard"]; [FavoritesController addObject:toinsert]; - [toinsert release]; [newfavoritewindow close]; [[NSApplication sharedApplication] endSheet:newfavoritewindow]; } - [msdefaults release]; [self upgradeFavorites]; } -(void) check_deletion:(id)combo{ if ([FavoritesController selectionIndex]==[[defaults objectForKey:combo] intValue]) { - [defaults setObject:[NSNumber numberWithInt:0] forKey:combo]; + [defaults setObject:@0 forKey:combo]; } } @@ -317,7 +324,7 @@ - (void) deleteAlertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode con - (IBAction)delete_favorite:(id)sender{ - NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Delete favorite",nil) defaultButton:NSLocalizedString(@"No",nil) alternateButton:NSLocalizedString(@"Yes",nil) otherButton:nil informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to delete the favorite %@?",nil), [ [ [FavoritesController arrangedObjects] objectAtIndex:[FavoritesController selectionIndex]] objectForKey:@"Title"] ]]; + NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Delete favorite",nil) defaultButton:NSLocalizedString(@"No",nil) alternateButton:NSLocalizedString(@"Yes",nil) otherButton:nil informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to delete the favorite %@?",nil), [FavoritesController arrangedObjects][[FavoritesController selectionIndex]][@"Title"] ]]; [alert beginSheetModalForWindow:mainwindow modalDelegate:self didEndSelector:@selector(deleteAlertDidEnd:returnCode:contextInfo:) contextInfo:NULL]; } @@ -331,7 +338,7 @@ -(void) readFanData:(id)caller{ int i = 0; //on init handling - if (s_sed==nil) { + if (_machineDefaultsDict==nil) { return; } @@ -370,16 +377,16 @@ -(void) readFanData:(id)caller{ if (bNeedRpm == true) { // Read the current fan speed for the desired fan and format text for display in the menubar. - NSArray *fans = [[[FavoritesController arrangedObjects] objectAtIndex:[FavoritesController selectionIndex]] objectForKey:@"FanData"]; + NSArray *fans = [FavoritesController arrangedObjects][[FavoritesController selectionIndex]][@"FanData"]; for (i=0; i1 ) { if (bind==YES) { - [[[FanController arrangedObjects] objectAtIndex:1] bind:@"selspeed" toObject:[[FanController arrangedObjects] objectAtIndex:0] withKeyPath:@"selspeed" options:nil]; - [[[FanController arrangedObjects] objectAtIndex:0] bind:@"selspeed" toObject:[[FanController arrangedObjects] objectAtIndex:1] withKeyPath:@"selspeed" options:nil]; + [[FanController arrangedObjects][1] bind:@"selspeed" toObject:[FanController arrangedObjects][0] withKeyPath:@"selspeed" options:nil]; + [[FanController arrangedObjects][0] bind:@"selspeed" toObject:[FanController arrangedObjects][1] withKeyPath:@"selspeed" options:nil]; } else { - [[[FanController arrangedObjects] objectAtIndex:1] unbind:@"selspeed"]; - [[[FanController arrangedObjects] objectAtIndex:0] unbind:@"selspeed"]; + [[FanController arrangedObjects][1] unbind:@"selspeed"]; + [[FanController arrangedObjects][0] unbind:@"selspeed"]; } } } @@ -696,14 +695,14 @@ - (BOOL)isInAutoStart BOOL found = NO; LSSharedFileListRef loginItems = LSSharedFileListCreate(kCFAllocatorDefault, kLSSharedFileListSessionLoginItems, /*options*/ NULL); NSString *path = [[NSBundle mainBundle] bundlePath]; - CFURLRef URLToToggle = (CFURLRef)[NSURL fileURLWithPath:path]; + CFURLRef URLToToggle = (__bridge CFURLRef)[NSURL fileURLWithPath:path]; //LSSharedFileListItemRef existingItem = NULL; UInt32 seed = 0U; - NSArray *currentLoginItems = [NSMakeCollectable(LSSharedFileListCopySnapshot(loginItems, &seed)) autorelease]; + NSArray *currentLoginItems = CFBridgingRelease(LSSharedFileListCopySnapshot(loginItems, &seed)); for (id itemObject in currentLoginItems) { - LSSharedFileListItemRef item = (LSSharedFileListItemRef)itemObject; + LSSharedFileListItemRef item = (__bridge LSSharedFileListItemRef)itemObject; UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes; CFURLRef URL = NULL; @@ -730,14 +729,14 @@ - (void) setStartAtLogin:(BOOL)enabled { NSString *path = [[NSBundle mainBundle] bundlePath]; OSStatus status; - CFURLRef URLToToggle = (CFURLRef)[NSURL fileURLWithPath:path]; + CFURLRef URLToToggle = (__bridge CFURLRef)[NSURL fileURLWithPath:path]; LSSharedFileListItemRef existingItem = NULL; UInt32 seed = 0U; - NSArray *currentLoginItems = [NSMakeCollectable(LSSharedFileListCopySnapshot(loginItems, &seed)) autorelease]; + NSArray *currentLoginItems = CFBridgingRelease(LSSharedFileListCopySnapshot(loginItems, &seed)); for (id itemObject in currentLoginItems) { - LSSharedFileListItemRef item = (LSSharedFileListItemRef)itemObject; + LSSharedFileListItemRef item = (__bridge LSSharedFileListItemRef)itemObject; UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes; CFURLRef URL = NULL; @@ -769,7 +768,7 @@ - (void) setStartAtLogin:(BOOL)enabled { icon = NULL; } - LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, (CFStringRef)displayName, icon, URLToToggle, /*propertiesToSet*/ NULL, /*propertiesToClear*/ NULL); + LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, (__bridge CFStringRef)displayName, icon, URLToToggle, /*propertiesToSet*/ NULL, /*propertiesToClear*/ NULL); } else if (!enabled && (existingItem != NULL)) LSSharedFileListItemRemove(loginItems, existingItem); } @@ -810,11 +809,11 @@ +(void)setRights{ [self checkRightStatus:status]; NSString *tool=@"/usr/sbin/chown"; - NSArray *argsArray = [NSArray arrayWithObjects: @"root:admin",smcpath,nil]; + NSArray *argsArray = @[@"root:admin",smcpath]; int i; char *args[255]; for(i = 0;i < [argsArray count];i++){ - args[i] = (char *)[[argsArray objectAtIndex:i]cString]; + args[i] = (char *)[argsArray[i]cString]; } args[i] = NULL; status=AuthorizationExecuteWithPrivileges(authorizationRef,[tool UTF8String],0,args,&commPipe); @@ -823,9 +822,9 @@ +(void)setRights{ //second call for suid-bit tool=@"/bin/chmod"; - argsArray = [NSArray arrayWithObjects: @"6555",smcpath,nil]; + argsArray = @[@"6555",smcpath]; for(i = 0;i < [argsArray count];i++){ - args[i] = (char *)[[argsArray objectAtIndex:i]cString]; + args[i] = (char *)[argsArray[i]cString]; } args[i] = NULL; status=AuthorizationExecuteWithPrivileges(authorizationRef,[tool UTF8String],0,args,&commPipe); @@ -849,7 +848,7 @@ - (NSString*) tohex{ - (NSNumber*) celsius_fahrenheit{ float celsius=[self floatValue]; float fahrenheit=(celsius*9)/5+32; - return [NSNumber numberWithFloat:fahrenheit]; + return @(fahrenheit); } @end diff --git a/Classes/MachineDefaults.h b/Classes/MachineDefaults.h index 6d8e4de..0adf30f 100644 --- a/Classes/MachineDefaults.h +++ b/Classes/MachineDefaults.h @@ -30,8 +30,9 @@ int machine_num; } - + (NSString *)computerModel; - - (id)init:(NSString*)p_machine; - -(NSDictionary*)get_machine_defaults; - - (void)dealloc; ++ (NSString *)computerModel; +- (instancetype)init:(NSString*)p_machine ; + +@property (NS_NONATOMIC_IOSONLY, getter=get_machine_defaults, readonly, copy) NSDictionary *_machine_defaults; + @end diff --git a/Classes/MachineDefaults.m b/Classes/MachineDefaults.m index b06f629..2805e52 100644 --- a/Classes/MachineDefaults.m +++ b/Classes/MachineDefaults.m @@ -23,59 +23,60 @@ #import "MachineDefaults.h" #import "NSFileManager+DirectoryLocations.h" +@interface MachineDefaults () +{ + +} +@end + @implementation MachineDefaults -- (id)init:(NSString*)p_machine{ +- (instancetype)init:(NSString*)p_machine{ if (self = [super init]){ machine=[MachineDefaults computerModel]; - supported_machines=[[NSArray alloc] initWithContentsOfFile:[[[NSFileManager defaultManager] applicationSupportDirectory] stringByAppendingPathComponent:@"Machines.plist"]]; + [self refreshPlist]; } return self; } - --(Boolean)is_supported{ - int i; - supported=NO; - for(i=0;i<[supported_machines count];i++) { - if ([machine isEqualToString:[[supported_machines objectAtIndex:i] objectForKey:@"Machine"]]) { - supported=YES; - machine_num=i; - } - } - return supported; +-(void)refreshPlist +{ + supported_machines=[[NSArray alloc] initWithContentsOfFile:[[[NSFileManager defaultManager] applicationSupportDirectory] stringByAppendingPathComponent:@"Machines.plist"]]; + supported=NO; + int i; + for(i=0;i<[supported_machines count];i++) { + if ([machine isEqualToString:supported_machines[i][@"Machine"]]) { + supported=YES; + machine_num=i; + } + } } - --(NSDictionary*) readfrom_plist{ +-(NSDictionary*) readFromPlist{ if (!supported) {return nil;} - return [supported_machines objectAtIndex:machine_num]; + return supported_machines[machine_num]; } --(NSDictionary*) readfrom_smc{ - if (supported) {return nil;} - int num_fans,i; - [smcWrapper init]; - num_fans=[smcWrapper get_fan_num]; +-(void) readFromSMC{ + NSUInteger num_fans=[smcWrapper get_fan_num]; NSString *desc; NSNumber *min,*max; NSData *xmldata; NSString *error; NSMutableArray *fans=[[NSMutableArray alloc] init]; - for (i = 0; i < num_fans; i++) { - min=[NSNumber numberWithInt:[smcWrapper get_min_speed:i]]; - max=[NSNumber numberWithInt:[smcWrapper get_max_speed:i]]; + for (NSUInteger i = 0; i < num_fans; i++) { + min=@([smcWrapper get_min_speed:i]); + max=@([smcWrapper get_max_speed:i]); desc=[smcWrapper get_fan_descr:i]; - [fans addObject:[NSDictionary dictionaryWithObjectsAndKeys:desc,@"Description",min,@"Minspeed",max,@"Maxspeed",min,@"selspeed",nil]]; + [fans addObject:[[NSMutableDictionary alloc] initWithDictionary:@{@"Description": desc,@"Minspeed": min,@"Maxspeed": max,@"selspeed": min}]]; } //save to plist for future NSMutableArray *supported_m=[[NSMutableArray alloc] initWithContentsOfFile:[[[NSFileManager defaultManager] applicationSupportDirectory] stringByAppendingPathComponent:@"Machines.plist"]]; - NSDictionary *new_machine= [NSDictionary dictionaryWithObjectsAndKeys:fans,@"Fans",[NSNumber numberWithInt:num_fans],@"NumFans",machine,@"Machine",@"Autogenerated",@"Comment",nil]; - [fans release]; + NSMutableDictionary *new_machine= [[NSMutableDictionary alloc] initWithDictionary:@{@"Fans": fans,@"NumFans": @(num_fans),@"Machine": machine,@"Comment": @"Autogenerated",@"Minspeed": min,@"Maxspeed": max}]; [supported_m addObject:new_machine]; //save to plist @@ -83,37 +84,36 @@ -(NSDictionary*) readfrom_smc{ format:NSPropertyListXMLFormat_v1_0 errorDescription:&error]; [xmldata writeToFile:[[[NSFileManager defaultManager] applicationSupportDirectory] stringByAppendingPathComponent:@"Machines.plist"] atomically:YES]; - [supported_m release]; - //return new machine-live-data - return new_machine; } -(NSDictionary*)get_machine_defaults{ - NSDictionary *m_defaults=nil; - if ([self is_supported]) { - m_defaults=[self readfrom_plist]; - int i; - //localize fan-descriptions - for (i=0;i<[[m_defaults objectForKey:@"Fans"] count];i++) { - NSString *newvalue=NSLocalizedString([[[m_defaults objectForKey:@"Fans"] objectAtIndex:i] objectForKey:@"Description"],nil); - [[[m_defaults objectForKey:@"Fans"] objectAtIndex:i] setValue:newvalue forKey:@"Description"]; - } - } else { - NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Alert!",nil) + + if (!supported) { + NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Alert!",nil) defaultButton:NSLocalizedString(@"Continue",nil) alternateButton:NSLocalizedString(@"Quit",nil) otherButton:nil informativeTextWithFormat:NSLocalizedString(@"smcFanControl has not been tested on this machine yet, but it should run if you follow the instructions. \n\nIf you choose to continue, please make you have no other FanControl-software running. Otherwise please quit, deinstall the other software, restart your machine and rerun smcFanControl!",nil)]; - int code=[alert runModal]; - if (code==NSAlertDefaultReturn) { - m_defaults=[self readfrom_smc]; + NSModalResponse code=[alert runModal]; + if (code == NSAlertDefaultReturn) { + [self readFromSMC]; + [self refreshPlist]; } else { [[NSApplication sharedApplication] terminate:nil]; } } - return m_defaults; + + NSDictionary *defaultsDict=[self readFromPlist]; + NSUInteger i; + //localize fan-descriptions + for (i=0;i<[defaultsDict[@"Fans"] count];i++) { + NSString *newvalue=NSLocalizedString(defaultsDict[@"Fans"][i][@"Description"],nil); + [defaultsDict[@"Fans"][i] setValue:newvalue forKey:@"Description"]; + } + + return defaultsDict; } + (NSString *)computerModel @@ -124,18 +124,13 @@ + (NSString *)computerModel if ((pexpdev = IOServiceGetMatchingService (kIOMasterPortDefault, IOServiceMatching("IOPlatformExpertDevice")))) { NSData *data; - if ((data = (id)IORegistryEntryCreateCFProperty(pexpdev, CFSTR("model"), kCFAllocatorDefault, 0))) { + if ((data = (id)CFBridgingRelease(IORegistryEntryCreateCFProperty(pexpdev, CFSTR("model"), kCFAllocatorDefault, 0)))) { computerModel = [[NSString allocWithZone:NULL] initWithCString:[data bytes] encoding:NSASCIIStringEncoding]; - [data release]; } } } return computerModel; } -- (void)dealloc{ - [super dealloc]; - //[supported_machines release]; -} @end diff --git a/Classes/NSFileManager+DirectoryLocations.h b/Classes/NSFileManager+DirectoryLocations.h index 2ffd42a..72a0084 100644 --- a/Classes/NSFileManager+DirectoryLocations.h +++ b/Classes/NSFileManager+DirectoryLocations.h @@ -31,6 +31,6 @@ inDomain:(NSSearchPathDomainMask)domainMask appendPathComponent:(NSString *)appendComponent error:(NSError **)errorOut; -- (NSString *)applicationSupportDirectory; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSString *applicationSupportDirectory; @end diff --git a/Classes/NSFileManager+DirectoryLocations.m b/Classes/NSFileManager+DirectoryLocations.m index a5f7cab..1b57ecd 100644 --- a/Classes/NSFileManager+DirectoryLocations.m +++ b/Classes/NSFileManager+DirectoryLocations.m @@ -110,7 +110,7 @@ - (NSString *)findOrCreateDirectory:(NSSearchPathDirectory)searchPathDirectory */ - (NSString *)applicationSupportDirectory { - NSString *executableName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleExecutable"]; + NSString *executableName = [[NSBundle mainBundle] infoDictionary][@"CFBundleExecutable"]; NSError *error = nil; diff --git a/Classes/Power.h b/Classes/Power.h index fd3f3e0..a29df84 100644 --- a/Classes/Power.h +++ b/Classes/Power.h @@ -37,10 +37,9 @@ } -- (id)init; +- (instancetype)init NS_DESIGNATED_INITIALIZER; -- (id)delegate; -- (void)setDelegate:(id)new_delegate; +@property (NS_NONATOMIC_IOSONLY, unsafe_unretained) id delegate; - (void)registerForSleepWakeNotification; - (void)deregisterForSleepWakeNotification; diff --git a/Classes/Power.m b/Classes/Power.m index 6427ad0..39ed9c2 100644 --- a/Classes/Power.m +++ b/Classes/Power.m @@ -31,7 +31,7 @@ @implementation Power void SleepWatcher( void * refCon, io_service_t service, natural_t messageType, void * messageArgument ){ - [(Power *)refCon powerMessageReceived: messageType withArgument: messageArgument]; + [(__bridge Power *)refCon powerMessageReceived: messageType withArgument: messageArgument]; } @@ -48,14 +48,14 @@ static void powerSourceChanged(void * refCon) powerSource = CFArrayGetValueAtIndex(powerSourcesList, i); description = IOPSGetPowerSourceDescription(powerBlob, powerSource); //work with NSArray from here - NSDictionary *n_description = (NSDictionary *)description; - [(Power *)refCon powerSourceMesssageReceived:n_description]; + NSDictionary *n_description = (__bridge NSDictionary *)description; + [(__bridge Power *)refCon powerSourceMesssageReceived:n_description]; } CFRelease(powerBlob); CFRelease(powerSourcesList); } -- (id)init{ +- (instancetype)init{ if (self = [super init]) { } @@ -65,14 +65,14 @@ - (id)init{ - (void)registerForSleepWakeNotification { - root_port = IORegisterForSystemPower(self, ¬ificationPort, SleepWatcher, ¬ifier); + root_port = IORegisterForSystemPower((__bridge void *)(self), ¬ificationPort, SleepWatcher, ¬ifier); CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(notificationPort), kCFRunLoopDefaultMode); } - (void)registerForPowerChange { - powerNotifierRunLoopSource = IOPSNotificationCreateRunLoopSource(powerSourceChanged,self); + powerNotifierRunLoopSource = IOPSNotificationCreateRunLoopSource(powerSourceChanged,(__bridge void *)(self)); if (powerNotifierRunLoopSource) { CFRunLoopAddSource(CFRunLoopGetCurrent(), powerNotifierRunLoopSource, kCFRunLoopDefaultMode); } @@ -118,7 +118,7 @@ - (void)powerMessageReceived:(natural_t)messageType withArgument:(void *) messag } - (void)powerSourceMesssageReceived:(NSDictionary *)n_description{ - if (([[n_description objectForKey:@"Power Source State"] isEqualToString:@"AC Power"] && [[n_description objectForKey:@"Is Charging"] intValue]==1) && lastsource!=1) { + if (([n_description[@"Power Source State"] isEqualToString:@"AC Power"] && [n_description[@"Is Charging"] intValue]==1) && lastsource!=1) { lastsource=1; if ([_delegate respondsToSelector:@selector(powerChangeToACLoading:)]) [_delegate powerChangeToACLoading:self]; @@ -129,7 +129,7 @@ - (void)powerSourceMesssageReceived:(NSDictionary *)n_description{ } - if (([[n_description objectForKey:@"Power Source State"] isEqualToString:@"AC Power"] && [[n_description objectForKey:@"Is Charging"] intValue]==0) && lastsource!=2) { + if (([n_description[@"Power Source State"] isEqualToString:@"AC Power"] && [n_description[@"Is Charging"] intValue]==0) && lastsource!=2) { lastsource=2; if ([_delegate respondsToSelector:@selector(powerChangeToAC:)]) [_delegate powerChangeToAC:self]; @@ -139,7 +139,7 @@ - (void)powerSourceMesssageReceived:(NSDictionary *)n_description{ } } - if (([[n_description objectForKey:@"Power Source State"] isEqualToString:@"Battery Power"]) && lastsource!=3) { + if (([n_description[@"Power Source State"] isEqualToString:@"Battery Power"]) && lastsource!=3) { lastsource=3; if ([_delegate respondsToSelector:@selector(powerChangeToBattery:)]) [_delegate powerChangeToBattery:self]; @@ -171,7 +171,6 @@ - (void)dealloc if (_delegate) [nc removeObserver:_delegate name:nil object:self]; - [super dealloc]; } diff --git a/Classes/SystemVersion.m b/Classes/SystemVersion.m index 30213d6..667b960 100644 --- a/Classes/SystemVersion.m +++ b/Classes/SystemVersion.m @@ -68,18 +68,18 @@ + (void)initialize { #endif // MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_3 #else // GTM_MACOS_SDK - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - NSDictionary *systemVersionPlist - = [NSDictionary dictionaryWithContentsOfFile:kSystemVersionPlistPath]; - NSString *version = [systemVersionPlist objectForKey:@"ProductVersion"]; - NSArray *versionInfo = [version componentsSeparatedByString:@"."]; - int length = [versionInfo count]; - sGTMSystemVersionMajor = [[versionInfo objectAtIndex:0] intValue]; - sGTMSystemVersionMinor = [[versionInfo objectAtIndex:1] intValue]; - if (length == 3) { - sGTMSystemVersionBugFix = [[versionInfo objectAtIndex:2] intValue]; + @autoreleasepool { + NSDictionary *systemVersionPlist + = [NSDictionary dictionaryWithContentsOfFile:kSystemVersionPlistPath]; + NSString *version = systemVersionPlist[@"ProductVersion"]; + NSArray *versionInfo = [version componentsSeparatedByString:@"."]; + int length = [versionInfo count]; + sGTMSystemVersionMajor = [versionInfo[0] intValue]; + sGTMSystemVersionMinor = [versionInfo[1] intValue]; + if (length == 3) { + sGTMSystemVersionBugFix = [versionInfo[2] intValue]; + } } - [pool release]; #endif // GTM_MACOS_SDK } } @@ -104,7 +104,7 @@ + (NSString*)build { if (!sBuild) { NSDictionary *systemVersionPlist = [NSDictionary dictionaryWithContentsOfFile:kSystemVersionPlistPath]; - sBuild = [[systemVersionPlist objectForKey:@"ProductBuildVersion"] retain]; + sBuild = systemVersionPlist[@"ProductBuildVersion"]; } } return sBuild; diff --git a/Classes/smcWrapper.m b/Classes/smcWrapper.m index 0477d31..ecf3677 100755 --- a/Classes/smcWrapper.m +++ b/Classes/smcWrapper.m @@ -24,15 +24,15 @@ #import "smcWrapper.h" #import -static NSArray *allSensors = nil; +NSArray *allSensors; @implementation smcWrapper io_connect_t conn; +(void)init{ SMCOpen(&conn); - allSensors = [[NSArray alloc] initWithObjects:@"TC0D",@"TC0H",@"TC0F",@"TCAH",@"TCBH",@"TC0P",nil]; + allSensors = [NSArray arrayWithObjects:@"TC0D",@"TC0P",@"TCAD",@"TC0H",@"TC0F",@"TCAH",@"TCBH",nil]; } +(void)cleanUp{ SMCClose(conn); @@ -40,7 +40,6 @@ +(void)cleanUp{ +(float) get_maintemp{ float c_temp; - SMCVal_t val; NSString *sensor = [[NSUserDefaults standardUserDefaults] objectForKey:@"TSensor"]; SMCReadKey2((char*)[sensor UTF8String], &val,conn); @@ -57,8 +56,6 @@ +(float) get_maintemp{ } } } - - return c_temp; } @@ -116,7 +113,7 @@ +(NSString*) get_fan_descr:(int)fan_number{ //kern_return_t result; NSMutableString *desc; // desc=[[NSMutableString alloc] initWithFormat:@"Fan #%d: ",fan_number+1]; - desc=[[[NSMutableString alloc]init] autorelease]; + desc=[[NSMutableString alloc]init]; sprintf(key, "F%dID", fan_number); SMCReadKey2(key, &val,conn); int i; @@ -160,19 +157,25 @@ + (BOOL)validateSMC:(NSString*)path OSStatus status; // obtain the cert info from the executable - status = SecStaticCodeCreateWithPath((CFURLRef)url, kSecCSDefaultFlags, &ref); + status = SecStaticCodeCreateWithPath((__bridge CFURLRef)url, kSecCSDefaultFlags, &ref); if (status != noErr) { return false; } - status = SecStaticCodeCheckValidity(ref, kSecCSDefaultFlags, nil); - - if (status != noErr) { - NSLog(@"Codesign verification failed: Error id = %d",status); + @try { + status = SecStaticCodeCheckValidity(ref, kSecCSDefaultFlags, nil); + + if (status != noErr) { + NSLog(@"Codesign verification failed: Error id = %d",status); + return false; + } + } + @catch (NSException *exception) { + NSLog(@"Codesign exception %@",exception); return false; } - + return true; } @@ -187,13 +190,12 @@ +(void)setKey_external:(NSString *)key value:(NSString *)value{ NSLog(@"smcFanControl: Security Error: smc-binary is not the distributed one"); return; } - NSArray *argsArray = [NSArray arrayWithObjects: @"-k",key,@"-w",value,nil]; + NSArray *argsArray = @[@"-k",key,@"-w",value]; NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: launchPath]; [task setArguments: argsArray]; [task launch]; - [task release]; } @end diff --git a/Info.plist b/Info.plist index 4854fbd..8388d73 100644 --- a/Info.plist +++ b/Info.plist @@ -7,7 +7,7 @@ CFBundleExecutable smcFanControl CFBundleGetInfoString - smcFanControl 2.5ß, Hendrik Holtmann (GPL) + smcFanControl 2.5, Hendrik Holtmann (GPL) CFBundleIconFile smcfancontrol_v2 CFBundleIdentifier @@ -19,18 +19,20 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.5ß + 2.5 CFBundleSignature ???? CFBundleVersion - 2.5ß + 2.5 LSUIElement 1 NSHumanReadableCopyright - Hendrik Holtmann(GPL) + Hendrik Holtmann (GPL) NSMainNibFile MainMenu NSPrincipalClass NSApplication + SUFeedURL + http://www.eidac.de/smcfancontrol/smcfancontrol.xml diff --git a/Ressources/Dutch.lproj/Localizable.strings b/Ressources/Dutch.lproj/Localizable.strings index 38e1576..6d2a119 100644 --- a/Ressources/Dutch.lproj/Localizable.strings +++ b/Ressources/Dutch.lproj/Localizable.strings @@ -21,3 +21,14 @@ "Alert!" = "Let op!"; "Active Setting" = "Actieve Instelling"; + + +"Remind me later" = "Remind me later"; + +"Consider a donation" = "Consider a donation"; + +"Never ask me again" = "Never ask me again"; + +"Donate over Paypal" = "Donate over Paypal"; + +"smcFanControl keeps your Mac cool since 2006.\n\nIf smcFanControl is helfpul for you and you want to support further development, a small donation over Paypal is much appreciated." = "smcFanControl keeps your Mac cool since 2006.\n\nIf smcFanControl is helfpul for you and you want to support further development, a small donation over Paypal is much appreciated."; \ No newline at end of file diff --git a/Ressources/Dutch.lproj/MainMenu.nib/designable.nib b/Ressources/Dutch.lproj/MainMenu.nib/designable.nib index b08cf84..a89216e 100644 --- a/Ressources/Dutch.lproj/MainMenu.nib/designable.nib +++ b/Ressources/Dutch.lproj/MainMenu.nib/designable.nib @@ -70,7 +70,7 @@ {213, 107} - + 256 @@ -86,7 +86,6 @@ 4352 {295, 81} - YES NO @@ -96,7 +95,6 @@ 256 {295, 17} - @@ -339,10 +337,8 @@ 1 - {{1, 0}, {295, 98}} - {{0, -17}, {295, 98}} + {{1, 17}, {295, 81}} - @@ -354,7 +350,6 @@ -2147483392 {{282, 17}, {14, 81}} - NO _doScroller: @@ -370,7 +365,6 @@ -2147483392 {{-100, -100}, {295, 14}} - NO _doScroller: @@ -388,15 +382,13 @@ {{1, 0}, {295, 17}} - - + YES {{20, 292}, {297, 99}} - 133650 @@ -413,7 +405,6 @@ 264 {{73, 395}, {177, 22}} - YES @@ -491,7 +482,6 @@ 264 {{17, 397}, {54, 17}} - YES @@ -517,7 +507,6 @@ {{285, 392}, {37, 28}} - YES @@ -544,7 +533,6 @@ {{250, 392}, {37, 28}} - YES @@ -579,7 +567,6 @@ {{13, 85}, {278, 29}} - YES @@ -605,7 +592,6 @@ 264 {{107, 58}, {168, 22}} - YES @@ -677,7 +663,6 @@ 264 {{107, 33}, {168, 22}} - YES @@ -749,7 +734,6 @@ 264 {{107, 8}, {168, 22}} - YES @@ -821,7 +805,6 @@ 256 {{42, 60}, {63, 17}} - YES @@ -841,7 +824,6 @@ 256 {{25, 24}, {80, 28}} - YES @@ -861,7 +843,6 @@ 256 {{28, 10}, {77, 17}} - YES @@ -882,7 +863,6 @@ {{13, 116}, {261, 23}} - YES @@ -906,7 +886,6 @@ 256 {{13, 155}, {137, 28}} - YES @@ -926,7 +905,6 @@ 256 {{192, 166}, {80, 18}} - YES NO @@ -994,7 +972,6 @@ 256 {{13, 193}, {111, 14}} - YES @@ -1014,7 +991,6 @@ 264 {{74, 188}, {154, 22}} - YES @@ -1113,7 +1089,6 @@ {{13, 141}, {261, 23}} - YES @@ -1142,7 +1117,6 @@ {{233, 192}, {39, 17}} - YES NO @@ -1152,13 +1126,11 @@ {{2, 2}, {299, 226}} - {{17, 41}, {303, 243}} - {0, 0} @@ -1186,7 +1158,6 @@ {{242, 13}, {80, 28}} - YES 67108864 @@ -1212,7 +1183,6 @@ {{159, 13}, {85, 28}} - YES @@ -1237,7 +1207,6 @@ {{97, 289}, {150, 22}} - YES @@ -1266,11 +1235,9 @@ {337, 436} - - - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} MainWindow @@ -1904,7 +1871,7 @@ wGw {575, 603} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2097,7 +2064,7 @@ wGw {299, 327} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2397,7 +2364,7 @@ wGw {221, 145} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2526,7 +2493,7 @@ wGw {{1, 9}, {575, 665}} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -4489,331 +4456,7 @@ wGw 879 - - - - FanControl - NSObject - - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - add_favorite: - id - - - changeMenu: - id - - - closePreferences: - id - - - close_favorite: - id - - - delete_favorite: - id - - - loginItem: - id - - - menuSelect: - id - - - paypal: - id - - - savePreferences: - id - - - save_favorite: - id - - - syncSliders: - id - - - updateCheck: - id - - - visitHomepage: - id - - - - id - id - id - id - id - id - id - id - id - id - NSTableView - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - NSMenu - - - - DefaultsController - id - - - FanController - id - - - FavoritesController - id - - - TemperatureController - id - - - applybutton - id - - - autochange - id - - - colorSelector - id - - - copyright - id - - - currentSpeed - id - - - currentSpeed1 - id - - - fanTableView - NSTableView - - - faqText - id - - - faqWindow - id - - - field1 - id - - - field2 - id - - - levelIndicator - id - - - mainwindow - id - - - newfavorite_title - id - - - newfavoritewindow - id - - - programinfo - id - - - slider1 - id - - - slider2 - id - - - sliderCell - id - - - sync - id - - - syncslider - id - - - tabview - id - - - theMenu - NSMenu - - - - IBProjectSource - ../Classes/FanControl.h - - - - FanControl - - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - add_favorite: - id - - - changeMenu: - id - - - closePreferences: - id - - - close_favorite: - id - - - delete_favorite: - id - - - loginItem: - id - - - menuSelect: - id - - - paypal: - id - - - savePreferences: - id - - - save_favorite: - id - - - syncSliders: - id - - - updateCheck: - id - - - visitHomepage: - id - - - - IBProjectSource - ../Classes/FanControl.m - - - - StatusItemWindow - NSWindow - - IBProjectSource - ../Classes/StatusItemWindow.h - - - - - - SUUpdater - NSObject - - checkForUpdates: - id - - - checkForUpdates: - - checkForUpdates: - id - - - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - + 0 IBCocoaFramework NO diff --git a/Ressources/Dutch.lproj/MainMenu.nib/keyedobjects.nib b/Ressources/Dutch.lproj/MainMenu.nib/keyedobjects.nib index c0561b8..532e0c2 100644 Binary files a/Ressources/Dutch.lproj/MainMenu.nib/keyedobjects.nib and b/Ressources/Dutch.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Ressources/English.lproj/InfoPlist.strings b/Ressources/English.lproj/InfoPlist.strings index 53821f9..ee6e38c 100644 Binary files a/Ressources/English.lproj/InfoPlist.strings and b/Ressources/English.lproj/InfoPlist.strings differ diff --git a/Ressources/English.lproj/Localizable.strings b/Ressources/English.lproj/Localizable.strings index bab0bf4..f9c586c 100644 Binary files a/Ressources/English.lproj/Localizable.strings and b/Ressources/English.lproj/Localizable.strings differ diff --git a/Ressources/German.lproj/Localizable.strings b/Ressources/German.lproj/Localizable.strings index f5bc177..ca0ab8f 100644 --- a/Ressources/German.lproj/Localizable.strings +++ b/Ressources/German.lproj/Localizable.strings @@ -21,3 +21,13 @@ "Alert!" = "Achtung!"; "Active Setting" = "Aktive Einstellung"; + +"Remind me later" = "Später erinnern"; + +"Consider a donation" = "Spenden..."; + +"Never ask me again" = "Nie wieder fragen"; + +"Donate over Paypal" = "Spenden über PayPal"; + +"smcFanControl keeps your Mac cool since 2006.\n\nIf smcFanControl is helfpul for you and you want to support further development, a small donation over Paypal is much appreciated." = "smcFanControl hält seit 2006 Macs in aller Welt kühl.\n\nWenn Sie smcFanControl gerne benutzen und Sie die Weiterentwicklung unterstützen wollen, freuen wir uns über eine kleine Spende über PayPal."; \ No newline at end of file diff --git a/Ressources/German.lproj/MainMenu.nib/designable.nib b/Ressources/German.lproj/MainMenu.nib/designable.nib index d349c1b..7c8efb7 100644 --- a/Ressources/German.lproj/MainMenu.nib/designable.nib +++ b/Ressources/German.lproj/MainMenu.nib/designable.nib @@ -86,8 +86,7 @@ 4352 {295, 81} - - + YES NO YES @@ -96,8 +95,7 @@ 256 {295, 17} - - + @@ -339,10 +337,8 @@ 1 - {{1, 0}, {295, 98}} - {{0, -17}, {295, 98}} + {{1, 17}, {295, 81}} - @@ -354,8 +350,7 @@ -2147483392 {{-100, -100}, {14, 81}} - - + NO _doScroller: @@ -370,8 +365,7 @@ -2147483392 {{-100, -100}, {295, 14}} - - + NO _doScroller: @@ -388,16 +382,14 @@ {{1, 0}, {295, 17}} - - + YES {{20, 292}, {297, 99}} - - + 133650 @@ -413,7 +405,6 @@ 264 {{73, 395}, {177, 22}} - YES @@ -491,7 +482,6 @@ 264 {{17, 399}, {54, 15}} - YES @@ -517,7 +507,7 @@ {{285, 392}, {37, 28}} - + YES 67108864 @@ -543,7 +533,7 @@ {{250, 392}, {37, 28}} - + YES 67108864 @@ -577,7 +567,7 @@ {{13, 85}, {272, 29}} - + YES 603979776 @@ -602,7 +592,6 @@ 264 {{107, 58}, {168, 22}} - YES @@ -674,7 +663,6 @@ 264 {{107, 33}, {168, 22}} - YES @@ -746,7 +734,6 @@ 264 {{107, 8}, {168, 22}} - YES @@ -818,7 +805,6 @@ 256 {{42, 63}, {63, 14}} - YES @@ -838,7 +824,6 @@ 256 {{42, 38}, {63, 14}} - YES @@ -858,7 +843,6 @@ 256 {{28, 13}, {77, 14}} - YES @@ -879,7 +863,7 @@ {{13, 116}, {261, 23}} - + YES 67108864 @@ -902,7 +886,6 @@ 256 {{13, 169}, {132, 14}} - YES @@ -922,7 +905,6 @@ 256 {{146, 166}, {80, 18}} - YES NO @@ -990,7 +972,6 @@ 256 {{13, 193}, {111, 14}} - YES @@ -1010,7 +991,6 @@ 264 {{74, 188}, {154, 22}} - YES @@ -1109,7 +1089,7 @@ {{13, 141}, {261, 23}} - + YES 67108864 @@ -1137,7 +1117,6 @@ {{233, 192}, {39, 17}} - YES NO @@ -1147,14 +1126,12 @@ {{2, 2}, {299, 226}} - {{17, 41}, {303, 243}} - - + {0, 0} 67108864 @@ -1181,7 +1158,7 @@ {{240, 13}, {82, 28}} - + YES 67108864 @@ -1207,7 +1184,7 @@ {{157, 13}, {85, 28}} - + YES 67108864 @@ -1231,7 +1208,7 @@ {{97, 289}, {85, 22}} - + YES 67108864 @@ -1260,10 +1237,9 @@ {337, 436} - - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} MainWindow @@ -1716,7 +1692,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {575, 603} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -1917,7 +1893,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {299, 327} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2218,7 +2194,7 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 {221, 145} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2347,7 +2323,7 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 {575, 665} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2358,6 +2334,14 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 + + + delegate + + + + 871 + makeKeyAndOrderFront: @@ -4299,7 +4283,7 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 - 870 + 871 @@ -4386,7 +4370,6 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 id id id - NSTableView id id id @@ -4445,10 +4428,6 @@ cyBGYXZvcml0ZW4KIkRlZmF1bHQiIHZlcndlbmRldC4 currentSpeed1 id - - fanTableView - NSTableView - faqText id diff --git a/Ressources/German.lproj/MainMenu.nib/keyedobjects.nib b/Ressources/German.lproj/MainMenu.nib/keyedobjects.nib index 2845a2c..3c0c20d 100644 Binary files a/Ressources/German.lproj/MainMenu.nib/keyedobjects.nib and b/Ressources/German.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Ressources/Spanish.lproj/InfoPlist.strings b/Ressources/Spanish.lproj/InfoPlist.strings deleted file mode 100644 index a63c17c..0000000 --- a/Ressources/Spanish.lproj/InfoPlist.strings +++ /dev/null @@ -1,3 +0,0 @@ -/* Localized versions of Info.plist keys */ - -NSHumanReadableCopyright = "by Hendrik Holtmann, 2009 (GPL License)"; \ No newline at end of file diff --git a/Ressources/Spanish.lproj/Localizable.strings b/Ressources/Spanish.lproj/Localizable.strings index 5795924..9378f55 100644 --- a/Ressources/Spanish.lproj/Localizable.strings +++ b/Ressources/Spanish.lproj/Localizable.strings @@ -20,4 +20,14 @@ "Alert!" = "¡Atención!"; -"Active Setting" = "Configuración activa"; \ No newline at end of file +"Active Setting" = "Configuración activa"; + +"Remind me later" = "Remind me later"; + +"Consider a donation" = "Consider a donation"; + +"Never ask me again" = "Never ask me again"; + +"Donate over Paypal" = "Donate over Paypal"; + +"smcFanControl keeps your Mac cool since 2006.\n\nIf smcFanControl is helfpul for you and you want to support further development, a small donation over Paypal is much appreciated." = "smcFanControl keeps your Mac cool since 2006.\n\nIf smcFanControl is helfpul for you and you want to support further development, a small donation over Paypal is much appreciated."; \ No newline at end of file diff --git a/Ressources/Spanish.lproj/MainMenu.nib/designable.nib b/Ressources/Spanish.lproj/MainMenu.nib/designable.nib index 814fe5d..37932ec 100644 --- a/Ressources/Spanish.lproj/MainMenu.nib/designable.nib +++ b/Ressources/Spanish.lproj/MainMenu.nib/designable.nib @@ -70,7 +70,7 @@ {213, 107} - + 256 @@ -86,7 +86,6 @@ 4352 {295, 81} - YES NO @@ -96,7 +95,6 @@ 256 {295, 17} - @@ -339,10 +337,8 @@ 1 - {{1, 0}, {295, 98}} - {{0, -17}, {295, 98}} + {{1, 17}, {295, 81}} - @@ -354,7 +350,6 @@ -2147483392 {{282, 17}, {14, 81}} - NO _doScroller: @@ -370,7 +365,6 @@ -2147483392 {{-100, -100}, {295, 14}} - NO _doScroller: @@ -388,15 +382,13 @@ {{1, 0}, {295, 17}} - - + YES {{20, 292}, {297, 99}} - 133650 @@ -413,7 +405,6 @@ 264 {{73, 395}, {177, 22}} - YES @@ -491,7 +482,6 @@ 264 {{17, 397}, {54, 17}} - YES @@ -517,7 +507,6 @@ {{285, 392}, {37, 28}} - YES 67108864 @@ -543,7 +532,6 @@ {{250, 392}, {37, 28}} - YES 67108864 @@ -577,7 +565,6 @@ {{13, 92}, {239, 18}} - YES 603979776 @@ -602,7 +589,6 @@ 264 {{107, 58}, {168, 22}} - YES @@ -674,7 +660,6 @@ 264 {{107, 33}, {168, 22}} - YES @@ -746,7 +731,6 @@ 264 {{107, 8}, {168, 22}} - YES @@ -818,7 +802,6 @@ 256 {{42, 60}, {63, 17}} - YES @@ -838,7 +821,6 @@ 256 {{42, 35}, {63, 17}} - YES @@ -858,7 +840,6 @@ 256 {{28, 10}, {77, 17}} - YES @@ -879,7 +860,6 @@ {{13, 117}, {183, 18}} - YES 67108864 @@ -902,7 +882,6 @@ 256 {{13, 155}, {138, 28}} - YES @@ -922,7 +901,6 @@ 256 {{151, 166}, {80, 18}} - YES NO @@ -990,7 +968,6 @@ 256 {{13, 190}, {111, 17}} - YES @@ -1010,7 +987,6 @@ 264 {{54, 188}, {174, 22}} - YES @@ -1109,7 +1085,6 @@ {{13, 142}, {222, 18}} - YES 67108864 @@ -1137,7 +1112,6 @@ {{233, 192}, {39, 17}} - YES NO @@ -1147,14 +1121,11 @@ {{2, 2}, {299, 226}} - {{17, 41}, {303, 243}} - - {0, 0} 67108864 @@ -1181,7 +1152,6 @@ {{242, 13}, {80, 28}} - YES 67108864 @@ -1207,7 +1177,6 @@ {{159, 13}, {85, 28}} - YES 67108864 @@ -1231,7 +1200,6 @@ {{97, 289}, {100, 22}} - YES 67108864 @@ -1259,11 +1227,9 @@ {337, 436} - - - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} MainWindow @@ -1713,7 +1679,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {575, 603} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -1906,7 +1872,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {299, 327} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2206,7 +2172,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {221, 145} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -2335,7 +2301,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA {575, 665} - {{0, 0}, {1680, 1027}} + {{0, 0}, {1440, 877}} {213, 129} {10000000000000, 10000000000000} YES @@ -4286,331 +4252,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA 825 - - - - FanControl - NSObject - - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - add_favorite: - id - - - changeMenu: - id - - - closePreferences: - id - - - close_favorite: - id - - - delete_favorite: - id - - - loginItem: - id - - - menuSelect: - id - - - paypal: - id - - - savePreferences: - id - - - save_favorite: - id - - - syncSliders: - id - - - updateCheck: - id - - - visitHomepage: - id - - - - id - id - id - id - id - id - id - id - id - id - NSTableView - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - NSMenu - - - - DefaultsController - id - - - FanController - id - - - FavoritesController - id - - - TemperatureController - id - - - applybutton - id - - - autochange - id - - - colorSelector - id - - - copyright - id - - - currentSpeed - id - - - currentSpeed1 - id - - - fanTableView - NSTableView - - - faqText - id - - - faqWindow - id - - - field1 - id - - - field2 - id - - - levelIndicator - id - - - mainwindow - id - - - newfavorite_title - id - - - newfavoritewindow - id - - - programinfo - id - - - slider1 - id - - - slider2 - id - - - sliderCell - id - - - sync - id - - - syncslider - id - - - tabview - id - - - theMenu - NSMenu - - - - IBProjectSource - ../Classes/FanControl.h - - - - FanControl - - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - add_favorite: - id - - - changeMenu: - id - - - closePreferences: - id - - - close_favorite: - id - - - delete_favorite: - id - - - loginItem: - id - - - menuSelect: - id - - - paypal: - id - - - savePreferences: - id - - - save_favorite: - id - - - syncSliders: - id - - - updateCheck: - id - - - visitHomepage: - id - - - - IBProjectSource - ../Classes/FanControl.m - - - - StatusItemWindow - NSWindow - - IBProjectSource - ../Classes/StatusItemWindow.h - - - - - - SUUpdater - NSObject - - checkForUpdates: - id - - - checkForUpdates: - - checkForUpdates: - id - - - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - + 0 IBCocoaFramework NO diff --git a/Ressources/Spanish.lproj/MainMenu.nib/keyedobjects.nib b/Ressources/Spanish.lproj/MainMenu.nib/keyedobjects.nib index 1a7c0c6..2e6d7ec 100644 Binary files a/Ressources/Spanish.lproj/MainMenu.nib/keyedobjects.nib and b/Ressources/Spanish.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h b/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h deleted file mode 100644 index ee901e6..0000000 --- a/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// NSApplication+AppCopies.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -@interface NSApplication (SUAppCopies) -- (int)copiesRunning; -@end diff --git a/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h b/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h deleted file mode 100644 index c995911..0000000 --- a/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h +++ /dev/null @@ -1,11 +0,0 @@ -// -// NSFileManager+Authentication.m -// Sparkle -// -// Created by Andy Matuschak on 3/9/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -@interface NSFileManager (SUAuthenticationAdditions) -- (BOOL)movePathWithAuthentication:(NSString *)src toPath:(NSString *)dst; -@end diff --git a/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h b/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h deleted file mode 100644 index f0ce7c2..0000000 --- a/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// NSFileManager+Verification.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -// For the paranoid folks! -@interface NSFileManager (SUVerification) -- (BOOL)validatePath:(NSString *)path withMD5Hash:(NSString *)hash; -- (BOOL)validatePath:(NSString *)path withEncodedDSASignature:(NSString *)encodedSignature; -@end diff --git a/Sparkle.framework/Versions/A/Headers/NSString+extras.h b/Sparkle.framework/Versions/A/Headers/NSString+extras.h deleted file mode 100755 index 498e4d0..0000000 --- a/Sparkle.framework/Versions/A/Headers/NSString+extras.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - -BSD License - -Copyright (c) 2002, Brent Simmons -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of ranchero.com or Brent Simmons nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -*/ - - -/* - NSString+extras.h - NetNewsWire - - Created by Brent Simmons on Fri Jun 14 2002. - Copyright (c) 2002 Brent Simmons. All rights reserved. -*/ - - -#import -#import - - -@interface NSString (extras) - -- (NSString *)stringWithSubstitute:(NSString *)subs forCharactersFromSet:(NSCharacterSet *)set; - -- (NSString *) trimWhiteSpace; - -- (NSString *) stripHTML; - -- (NSString *) ellipsizeAfterNWords: (int) n; - -+ (BOOL) stringIsEmpty: (NSString *) s; - - -@end diff --git a/Sparkle.framework/Versions/A/Headers/RSS.h b/Sparkle.framework/Versions/A/Headers/RSS.h deleted file mode 100755 index 82da04a..0000000 --- a/Sparkle.framework/Versions/A/Headers/RSS.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - -BSD License - -Copyright (c) 2002, Brent Simmons -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of ranchero.com or Brent Simmons nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -*/ - -/* - RSS.h - A class for reading RSS feeds. - - Created by Brent Simmons on Wed Apr 17 2002. - Copyright (c) 2002 Brent Simmons. All rights reserved. -*/ - - -#import -#import -#import "NSString+extras.h" - - -@interface RSS : NSObject { - - NSDictionary *headerItems; - NSMutableArray *newsItems; - NSString *version; - - BOOL flRdf; - BOOL normalize; - } - - -/*Public*/ - -- (RSS *) initWithTitle: (NSString *) title andDescription: (NSString *) description; - -- (RSS *) initWithData: (NSData *) rssData normalize: (BOOL) fl; - -- (RSS *) initWithURL: (NSURL *) url normalize: (BOOL) fl; -- (RSS *) initWithURL: (NSURL *) url normalize: (BOOL) fl userAgent:(NSString *)userAgent; - -- (NSDictionary *) headerItems; - -- (NSMutableArray *) newsItems; - -- (NSString *) version; - -// AMM's extensions for Sparkle -- (NSDictionary *)newestItem; - - -/*Private*/ - -- (void) createheaderdictionary: (CFXMLTreeRef) tree; - -- (void) createitemsarray: (CFXMLTreeRef) tree; - -- (void) setversionstring: (CFXMLTreeRef) tree; - -- (void) flattenimagechildren: (CFXMLTreeRef) tree into: (NSMutableDictionary *) dictionary; - -- (void) flattensourceattributes: (CFXMLNodeRef) node into: (NSMutableDictionary *) dictionary; - -- (CFXMLTreeRef) getchanneltree: (CFXMLTreeRef) tree; - -- (CFXMLTreeRef) getnamedtree: (CFXMLTreeRef) currentTree name: (NSString *) name; - -- (void) normalizeRSSItem: (NSMutableDictionary *) rssItem; - -- (NSString *) getelementvalue: (CFXMLTreeRef) tree; - -@end diff --git a/Sparkle.framework/Versions/A/Headers/SUAppcast.h b/Sparkle.framework/Versions/A/Headers/SUAppcast.h index 209fe20..71a04ef 100644 --- a/Sparkle.framework/Versions/A/Headers/SUAppcast.h +++ b/Sparkle.framework/Versions/A/Headers/SUAppcast.h @@ -6,22 +6,32 @@ // Copyright 2006 Andy Matuschak. All rights reserved. // -#import +#ifndef SUAPPCAST_H +#define SUAPPCAST_H -@class RSS, SUAppcastItem; -@interface SUAppcast : NSObject { +@protocol SUAppcastDelegate; + +@class SUAppcastItem; +@interface SUAppcast : NSObject +{ +@private NSArray *items; - id delegate; + NSString *userAgentString; + id delegate; + NSString *downloadFilename; + NSURLDownload *download; } +@property (assign) id delegate; +@property (copy) NSString *userAgentString; - (void)fetchAppcastFromURL:(NSURL *)url; -- (void)setDelegate:delegate; -- (SUAppcastItem *)newestItem; - (NSArray *)items; +@end +@protocol SUAppcastDelegate +- (void)appcastDidFinishLoading:(SUAppcast *)appcast; +- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; @end -@interface NSObject (SUAppcastDelegate) -- appcastDidFinishLoading:(SUAppcast *)appcast; -@end \ No newline at end of file +#endif diff --git a/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h index c0202e3..b253577 100644 --- a/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h +++ b/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h @@ -6,52 +6,57 @@ // Copyright 2006 Andy Matuschak. All rights reserved. // -#import +#ifndef SUAPPCASTITEM_H +#define SUAPPCASTITEM_H - -@interface SUAppcastItem : NSObject { +@interface SUAppcastItem : NSObject +{ +@private NSString *title; NSDate *date; - NSString *description; + NSString *itemDescription; NSURL *releaseNotesURL; - NSString *DSASignature; - NSString *MD5Sum; + NSString *DSASignature; + NSString *minimumSystemVersion; + NSString *maximumSystemVersion; NSURL *fileURL; - NSString *fileVersion; NSString *versionString; -} - -// Initializes with data from a dictionary provided by the RSS class. -- initWithDictionary:(NSDictionary *)dict; - -- (NSString *)title; -- (void)setTitle:(NSString *)aTitle; + NSString *displayVersionString; -- (NSDate *)date; -- (void)setDate:(NSDate *)aDate; + NSDictionary *deltaUpdates; -- (NSString *)description; -- (void)setDescription:(NSString *)aDescription; + NSDictionary *propertiesDictionary; -- (NSURL *)releaseNotesURL; -- (void)setReleaseNotesURL:(NSURL *)aReleaseNotesURL; - -- (NSString *)DSASignature; -- (void)setDSASignature:(NSString *)aDSASignature; + NSURL *infoURL; // UK 2007-08-31 +} +@property (copy, readonly) NSString *title; +@property (copy, readonly) NSDate *date; +@property (copy, readonly) NSString *itemDescription; +@property (retain, readonly) NSURL *releaseNotesURL; +@property (copy, readonly) NSString *DSASignature; +@property (copy, readonly) NSString *minimumSystemVersion; +@property (copy, readonly) NSString *maximumSystemVersion; +@property (retain, readonly) NSURL *fileURL; +@property (copy, readonly) NSString *versionString; +@property (copy, readonly) NSString *displayVersionString; +@property (copy, readonly) NSDictionary *deltaUpdates; +@property (retain, readonly) NSURL *infoURL; -- (NSString *)MD5Sum; -- (void)setMD5Sum:(NSString *)aMd5Sum; +// Initializes with data from a dictionary provided by the RSS class. +- (id)initWithDictionary:(NSDictionary *)dict; +- (id)initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error; -- (NSURL *)fileURL; -- (void)setFileURL:(NSURL *)aFileURL; +- (BOOL)isDeltaUpdate; +- (BOOL)isCriticalUpdate; -- (NSString *)fileVersion; -- (void)setFileVersion:(NSString *)aFileVersion; +// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. +- (NSDictionary *)propertiesDictionary; -- (NSString *)versionString; -- (void)setVersionString:(NSString *)versionString; +- (NSURL *)infoURL; // UK 2007-08-31 @end + +#endif diff --git a/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h b/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h deleted file mode 100644 index fc0ac9f..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// SUAutomaticUpdateAlert.h -// Sparkle -// -// Created by Andy Matuschak on 3/18/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -@class SUAppcastItem; -@interface SUAutomaticUpdateAlert : NSWindowController { - SUAppcastItem *updateItem; -} - -- initWithAppcastItem:(SUAppcastItem *)item; - -- (IBAction)relaunchNow:sender; -- (IBAction)relaunchLater:sender; - -@end diff --git a/Sparkle.framework/Versions/A/Headers/SUConstants.h b/Sparkle.framework/Versions/A/Headers/SUConstants.h deleted file mode 100644 index bfbe625..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUConstants.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// SUConstants.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -extern NSString *SUUpdaterWillRestartNotification; - -extern NSString *SUCheckAtStartupKey; -extern NSString *SUFeedURLKey; -extern NSString *SUShowReleaseNotesKey; -extern NSString *SUSkippedVersionKey; -extern NSString *SUScheduledCheckIntervalKey; -extern NSString *SULastCheckTimeKey; -extern NSString *SUExpectsDSASignatureKey; -extern NSString *SUPublicDSAKeyKey; -extern NSString *SUAutomaticallyUpdateKey; -extern NSString *SUAllowsAutomaticUpdatesKey; \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h b/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h deleted file mode 100644 index e83d152..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// SUStatusChecker.h -// Sparkle -// -// Created by Evan Schoenberg on 7/6/06. -// - -#import -#import - -@class SUStatusChecker; - -@protocol SUStatusCheckerDelegate -//versionString will be nil and isNewVersion will be NO if version checking fails. -- (void)statusChecker:(SUStatusChecker *)statusChecker foundVersion:(NSString *)versionString isNewVersion:(BOOL)isNewVersion; -@end - -@interface SUStatusChecker : SUUpdater { - id scDelegate; -} - -// Create a status checker which will notifiy delegate once the appcast version is determined. -// Notification occurs via the method defined in the SUStatusCheckerDelegate informal protocol. -+ (SUStatusChecker *)statusCheckerForDelegate:(id)delegate; - -@end diff --git a/Sparkle.framework/Versions/A/Headers/SUStatusController.h b/Sparkle.framework/Versions/A/Headers/SUStatusController.h deleted file mode 100644 index 19a3f89..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUStatusController.h +++ /dev/null @@ -1,33 +0,0 @@ -// -// SUStatusController.h -// Sparkle -// -// Created by Andy Matuschak on 3/14/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - - -@interface SUStatusController : NSWindowController { - double progressValue, maxProgressValue; - NSString *title, *statusText, *buttonTitle; - IBOutlet NSButton *actionButton; -} - -// Pass 0 for the max progress value to get an indeterminate progress bar. -// Pass nil for the status text to not show it. -- (void)beginActionWithTitle:(NSString *)title maxProgressValue:(double)maxProgressValue statusText:(NSString *)statusText; - -// If isDefault is YES, the button's key equivalent will be \r. -- (void)setButtonTitle:(NSString *)buttonTitle target:target action:(SEL)action isDefault:(BOOL)isDefault; -- (void)setButtonEnabled:(BOOL)enabled; - -- (double)progressValue; -- (void)setProgressValue:(double)value; -- (double)maxProgressValue; -- (void)setMaxProgressValue:(double)value; - -- (void)setStatusText:(NSString *)statusText; - -@end diff --git a/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h b/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h deleted file mode 100644 index da111c1..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// SUUnarchiver.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - - -@interface SUUnarchiver : NSObject { - id delegate; -} - -- (void)unarchivePath:(NSString *)path; -- (void)setDelegate:delegate; - -@end - -@interface NSObject (SUUnarchiverDelegate) -- (void)unarchiver:(SUUnarchiver *)unarchiver extractedLength:(long)length; -- (void)unarchiverDidFinish:(SUUnarchiver *)unarchiver; -- (void)unarchiverDidFail:(SUUnarchiver *)unarchiver; -@end \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h b/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h deleted file mode 100644 index 69c2817..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// SUUpdateAlert.h -// Sparkle -// -// Created by Andy Matuschak on 3/12/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -typedef enum -{ - SUInstallUpdateChoice, - SURemindMeLaterChoice, - SUSkipThisVersionChoice -} SUUpdateAlertChoice; - -@class WebView, SUAppcastItem; -@interface SUUpdateAlert : NSWindowController { - SUAppcastItem *updateItem; - id delegate; - - IBOutlet WebView *releaseNotesView; - IBOutlet NSTextField *description; - NSProgressIndicator *releaseNotesSpinner; - BOOL webViewFinishedLoading; -} - -- initWithAppcastItem:(SUAppcastItem *)item; -- (void)setDelegate:delegate; - -- (IBAction)installUpdate:sender; -- (IBAction)skipThisVersion:sender; -- (IBAction)remindMeLater:sender; - -@end - -@interface NSObject (SUUpdateAlertDelegate) -- (void)updateAlert:(SUUpdateAlert *)updateAlert finishedWithChoice:(SUUpdateAlertChoice)updateChoice; -@end diff --git a/Sparkle.framework/Versions/A/Headers/SUUpdater.h b/Sparkle.framework/Versions/A/Headers/SUUpdater.h index 5f82914..4c54a91 100644 --- a/Sparkle.framework/Versions/A/Headers/SUUpdater.h +++ b/Sparkle.framework/Versions/A/Headers/SUUpdater.h @@ -6,50 +6,177 @@ // Copyright 2006 Andy Matuschak. All rights reserved. // -#import - -// Before you use Sparkle in your app, you must set SUFeedURL in Info.plist to the -// address of the appcast on your webserver. If you don't already have an -// appcast, please see the Sparkle documentation to learn about how to set one up. - -// .zip, .dmg, .tar, .tbz, .tgz archives are supported at this time. - -// By default, Sparkle offers to show the user the release notes of the build they'll be -// getting, which it assumes are in the description (or body) field of the relevant RSS item. -// Set SUShowReleaseNotes to in Info.plist to hide the button. - -@class SUAppcastItem, SUUpdateAlert, SUStatusController; -@interface SUUpdater : NSObject { - SUAppcastItem *updateItem; - - SUStatusController *statusController; - SUUpdateAlert *updateAlert; - - NSURLDownload *downloader; - NSString *downloadPath; - +#ifndef SUUPDATER_H +#define SUUPDATER_H + +#import "SUVersionComparisonProtocol.h" +#import "SUVersionDisplayProtocol.h" + +@class SUUpdateDriver, SUAppcastItem, SUHost, SUAppcast; + +@interface SUUpdater : NSObject +{ +@private NSTimer *checkTimer; - NSTimeInterval checkInterval; - - BOOL verbose; - BOOL updateInProgress; + SUUpdateDriver *driver; + + NSString *customUserAgentString; + SUHost *host; + IBOutlet id delegate; } +@property (assign) id delegate; + ++ (SUUpdater *)sharedUpdater; ++ (SUUpdater *)updaterForBundle:(NSBundle *)bundle; +- (id)initForBundle:(NSBundle *)bundle; + +- (NSBundle *)hostBundle; + +- (void)setAutomaticallyChecksForUpdates:(BOOL)automaticallyChecks; +- (BOOL)automaticallyChecksForUpdates; + +- (void)setUpdateCheckInterval:(NSTimeInterval)interval; +- (NSTimeInterval)updateCheckInterval; + +- (void)setFeedURL:(NSURL *)feedURL; +- (NSURL *)feedURL; // *** MUST BE CALLED ON MAIN THREAD *** + +- (void)setUserAgentString:(NSString *)userAgent; +- (NSString *)userAgentString; + +- (void)setSendsSystemProfile:(BOOL)sendsSystemProfile; +- (BOOL)sendsSystemProfile; + +- (void)setAutomaticallyDownloadsUpdates:(BOOL)automaticallyDownloadsUpdates; +- (BOOL)automaticallyDownloadsUpdates; // This IBAction is meant for a main menu item. Hook up any menu item to this action, // and Sparkle will check for updates and report back its findings verbosely. -- (IBAction)checkForUpdates:sender; +- (IBAction)checkForUpdates:(id)sender; -// This method is similar to the above, but it's intended for updates initiated by -// the computer instead of by the user. It does not alert the user when he is up to date, -// and it remains silent about network errors in fetching the feed. This is what you -// want to call to update programmatically; only use checkForUpdates: with buttons and menu items. +// This kicks off an update meant to be programmatically initiated. That is, it will display no UI unless it actually finds an update, +// in which case it proceeds as usual. If the fully automated updating is turned on, however, this will invoke that behavior, and if an +// update is found, it will be downloaded and prepped for installation. - (void)checkForUpdatesInBackground; -// This method allows you to schedule a check to run every time interval. You can -// pass 0 to this method to cancel a previously scheduled timer. You probably don't want -// to call this directly: if you set a SUScheduledCheckInterval key in Info.plist or -// the user defaults, Sparkle will set this up for you automatically on startup. You might -// just want to call this every time the user changes the setting in the preferences. -- (void)scheduleCheckWithInterval:(NSTimeInterval)interval; +// Date of last update check. Returns nil if no check has been performed. +- (NSDate*)lastUpdateCheckDate; + +// This begins a "probing" check for updates which will not actually offer to update to that version. The delegate methods, though, +// (up to updater:didFindValidUpdate: and updaterDidNotFindUpdate:), are called, so you can use that information in your UI. +- (void)checkForUpdateInformation; + +// Call this to appropriately schedule or cancel the update checking timer according to the preferences for time interval and automatic checks. This call does not change the date of the next check, but only the internal NSTimer. +- (void)resetUpdateCycle; + +- (BOOL)updateInProgress; + +@end + +// ----------------------------------------------------------------------------- +// SUUpdater Notifications for events that might be interesting to more than just the delegate +// The updater will be the notification object +// ----------------------------------------------------------------------------- +extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification; +extern NSString *const SUUpdaterDidFindValidUpdateNotification; +extern NSString *const SUUpdaterDidNotFindUpdateNotification; +extern NSString *const SUUpdaterWillInstallUpdateNotification; +extern NSString *const SUUpdaterWillRelaunchApplicationNotification; + +// Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification & SUUpdaterWillInstallUpdateNotification userInfos +extern NSString *const SUUpdaterAppcastItemNotificationKey; +// Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo +extern NSString *const SUUpdaterAppcastNotificationKey; + +// ----------------------------------------------------------------------------- +// SUUpdater Delegate: +// ----------------------------------------------------------------------------- + +@interface NSObject (SUUpdaterDelegateInformalProtocol) + +// Use this to keep Sparkle from popping up e.g. while your setup assistant is showing: +- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle; + +// This method allows you to add extra parameters to the appcast URL, potentially based on whether or not Sparkle will also be sending along the system profile. This method should return an array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user. +- (NSArray *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; + +// Override this to dynamically specify the entire URL. +- (NSString*)feedURLStringForUpdater:(SUUpdater*)updater; + +// Use this to override the default behavior for Sparkle prompting the user about automatic update checks. +- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)bundle; + +// Implement this if you want to do some special handling with the appcast once it finishes loading. +- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; + +// If you're using special logic or extensions in your appcast, implement this to use your own logic for finding +// a valid update, if any, in the given appcast. +- (SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)bundle; + +// Sent when a valid update is found by the update driver. +- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update; + +// Sent when a valid update is not found. +- (void)updaterDidNotFindUpdate:(SUUpdater *)update; + +// Sent immediately before installing the specified update. +- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)update; + +// Return YES to delay the relaunch until you do some processing; invoke the given NSInvocation to continue. +// This is not called if the user didn't relaunch on the previous update, in that case it will immediately +// restart. +- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)update untilInvoking:(NSInvocation *)invocation; + +// Some apps *can not* be relaunched in certain circumstances. They can use this method +// to prevent a relaunch "hard": +- (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater; + +// Called immediately before relaunching. +- (void)updaterWillRelaunchApplication:(SUUpdater *)updater; + +// This method allows you to provide a custom version comparator. +// If you don't implement this method or return nil, the standard version comparator will be used. +- (id )versionComparatorForUpdater:(SUUpdater *)updater; + +// This method allows you to provide a custom version comparator. +// If you don't implement this method or return nil, the standard version displayer will be used. +- (id )versionDisplayerForUpdater:(SUUpdater *)updater; + +// Returns the path which is used to relaunch the client after the update is installed. By default, the path of the host bundle. +- (NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; + +// Called before and after, respectively, an updater shows a modal alert window, to give the host +// the opportunity to hide attached windows etc. that may get in the way: +-(void) updaterWillShowModalAlert:(SUUpdater *)updater; +-(void) updaterDidShowModalAlert:(SUUpdater *)updater; + +// Called when an update is scheduled to be silently installed on quit. +// The invocation can be used to trigger an immediate silent install and relaunch. +- (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)update immediateInstallationInvocation:(NSInvocation *)invocation; +- (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)update; + +@end + + +// ----------------------------------------------------------------------------- +// Constants: +// ----------------------------------------------------------------------------- + +#ifndef DEBUG +#define DEBUG 0 +#endif + +// Define some minimum intervals to avoid DOS-like checking attacks. These are in seconds. +#if defined(DEBUG) && DEBUG && 0 +#define SU_MIN_CHECK_INTERVAL 60 +#else +#define SU_MIN_CHECK_INTERVAL 60*60 +#endif + +#if defined(DEBUG) && DEBUG && 0 +#define SU_DEFAULT_CHECK_INTERVAL 60 +#else +#define SU_DEFAULT_CHECK_INTERVAL 60*60*24 +#endif -@end \ No newline at end of file +#endif diff --git a/Sparkle.framework/Versions/A/Headers/SUUtilities.h b/Sparkle.framework/Versions/A/Headers/SUUtilities.h deleted file mode 100644 index 5af3550..0000000 --- a/Sparkle.framework/Versions/A/Headers/SUUtilities.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// SUUtilities.h -// Sparkle -// -// Created by Andy Matuschak on 3/12/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -id SUInfoValueForKey(NSString *key); -NSString *SUHostAppName(); -NSString *SUHostAppDisplayName(); -NSString *SUHostAppVersion(); -NSString *SUHostAppVersionString(); - -NSComparisonResult SUStandardVersionComparison(NSString * versionA, NSString * versionB); - -// If running make localizable-strings for genstrings, ignore the error on this line. -NSString *SULocalizedString(NSString *key, NSString *comment); diff --git a/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h b/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h new file mode 100644 index 0000000..6c65ea4 --- /dev/null +++ b/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h @@ -0,0 +1,29 @@ +// +// SUVersionComparisonProtocol.h +// Sparkle +// +// Created by Andy Matuschak on 12/21/07. +// Copyright 2007 Andy Matuschak. All rights reserved. +// + +#ifndef SUVERSIONCOMPARISONPROTOCOL_H +#define SUVERSIONCOMPARISONPROTOCOL_H + +#import + +/*! + @protocol + @abstract Implement this protocol to provide version comparison facilities for Sparkle. +*/ +@protocol SUVersionComparison + +/*! + @method + @abstract An abstract method to compare two version strings. + @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. +*/ +- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! + +@end + +#endif diff --git a/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h b/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h new file mode 100644 index 0000000..368b9c9 --- /dev/null +++ b/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h @@ -0,0 +1,27 @@ +// +// SUVersionDisplayProtocol.h +// EyeTV +// +// Created by Uli Kusterer on 08.12.09. +// Copyright 2009 Elgato Systems GmbH. All rights reserved. +// + +#import + + +/*! + @protocol + @abstract Implement this protocol to apply special formatting to the two + version numbers. +*/ +@protocol SUVersionDisplay + +/*! + @method + @abstract An abstract method to format two version strings. + @discussion You get both so you can display important distinguishing + information, but leave out unnecessary/confusing parts. +*/ +-(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; + +@end diff --git a/Sparkle.framework/Versions/A/Headers/Sparkle.h b/Sparkle.framework/Versions/A/Headers/Sparkle.h index 13e9b21..08dd577 100644 --- a/Sparkle.framework/Versions/A/Headers/Sparkle.h +++ b/Sparkle.framework/Versions/A/Headers/Sparkle.h @@ -2,21 +2,20 @@ // Sparkle.h // Sparkle // -// Created by Andy Matuschak on 3/16/06. +// Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) // Copyright 2006 Andy Matuschak. All rights reserved. // -#import "SUUpdater.h" -#import "SUUtilities.h" -#import "SUConstants.h" -#import "SUAppcast.h" -#import "SUAppcastItem.h" -#import "SUUpdateAlert.h" -#import "SUAutomaticUpdateAlert.h" -#import "SUStatusController.h" -#import "SUUnarchiver.h" -#import "SUStatusChecker.h" +#ifndef SPARKLE_H +#define SPARKLE_H -#import "NSApplication+AppCopies.h" -#import "NSFileManager+Authentication.h" -#import "NSFileManager+Verification.h" \ No newline at end of file +// This list should include the shared headers. It doesn't matter if some of them aren't shared (unless +// there are name-space collisions) so we can list all of them to start with: + +#import + +#import +#import +#import + +#endif diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist new file mode 100644 index 0000000..1366821 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist @@ -0,0 +1,50 @@ + + + + + BuildMachineOSBuild + 13C64 + CFBundleDevelopmentRegion + English + CFBundleExecutable + Autoupdate + CFBundleIconFile + Sparkle + CFBundleIdentifier + org.andymatuschak.sparkle.Autoupdate + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.6 + CFBundleSignature + ???? + CFBundleVersion + 1.6 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 5B103i + DTPlatformVersion + GM + DTSDKBuild + 13A595 + DTSDKName + macosx10.9 + DTXcode + 0510 + DTXcodeBuild + 5B103i + LSBackgroundOnly + 1 + LSMinimumSystemVersion + 10.6 + LSUIElement + 1 + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate new file mode 100755 index 0000000..5704b4e Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib new file mode 100644 index 0000000..356987e Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Sparkle.icns b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Sparkle.icns new file mode 100644 index 0000000..ac96d1b Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Sparkle.icns differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings new file mode 100644 index 0000000..28c2c21 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings new file mode 100644 index 0000000..a50d6bf Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings new file mode 100644 index 0000000..8c349bd Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings new file mode 100644 index 0000000..fe50db5 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings new file mode 100644 index 0000000..c459871 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings new file mode 100644 index 0000000..ee69407 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings new file mode 100644 index 0000000..e0b6512 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings new file mode 100644 index 0000000..68ae6e0 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings new file mode 100644 index 0000000..99955af Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings new file mode 100644 index 0000000..ec3f8d2 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings new file mode 100644 index 0000000..d5df79d Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings new file mode 100644 index 0000000..95923ee Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings new file mode 100644 index 0000000..d10801f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings new file mode 100644 index 0000000..0f2ef4d Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings new file mode 100644 index 0000000..69853a3 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings new file mode 100644 index 0000000..2a6c99f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings new file mode 100644 index 0000000..349f17f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings new file mode 100644 index 0000000..38bb70d Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings new file mode 100644 index 0000000..889a658 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings new file mode 100644 index 0000000..fbebf96 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings new file mode 100644 index 0000000..323bb70 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings new file mode 100644 index 0000000..ccc268f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings new file mode 100644 index 0000000..c3f3d9e Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings new file mode 100644 index 0000000..68f34b5 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings new file mode 100644 index 0000000..17fcca0 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources new file mode 100644 index 0000000..0bc837e --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources @@ -0,0 +1,573 @@ + + + + + files + + Resources/SUStatus.nib + + AY4YXjlQrzqM9SfsrxpSB1B1u+k= + + Resources/Sparkle.icns + + RAPi1GDm7RjA+JlOSVD1eYK+1VA= + + Resources/ar.lproj/Sparkle.strings + + hash + + dM38Ha/cZwg8Sls9xWHXg0+oKvQ= + + optional + + + Resources/cs.lproj/Sparkle.strings + + hash + + FlXetLwR0j5/1odm0Db+H2CctTg= + + optional + + + Resources/da.lproj/Sparkle.strings + + hash + + /IwCWEjabs9+XPC2kpnVYBcIsAU= + + optional + + + Resources/de.lproj/Sparkle.strings + + hash + + QtXxl9WDwzVVxXrSvEcYxzgYnp8= + + optional + + + Resources/en.lproj/Sparkle.strings + + hash + + zzMk9fvGPMnNUAXXV/+jnYJnziE= + + optional + + + Resources/es.lproj/Sparkle.strings + + hash + + GrNcWzFjNuy3aBJY7IG8OL9BnEM= + + optional + + + Resources/fr.lproj/Sparkle.strings + + hash + + 5z8VRMQoNLwAyzB9My8omBTkKZA= + + optional + + + Resources/is.lproj/Sparkle.strings + + hash + + d0sFFGqw9ifMmvrnHhIgvezLdfE= + + optional + + + Resources/it.lproj/Sparkle.strings + + hash + + HodRH2wN987WiLqfo9YkRcEa1AM= + + optional + + + Resources/ja.lproj/Sparkle.strings + + hash + + iRM0gMYfeAM58HxcdGHlGJqSFYc= + + optional + + + Resources/ko.lproj/Sparkle.strings + + hash + + 72vg45GkQZIgSVEw6gTdm4ewl8c= + + optional + + + Resources/nl.lproj/Sparkle.strings + + hash + + 8FkGwpespW8x/FyRktfq1gF03Rk= + + optional + + + Resources/pl.lproj/Sparkle.strings + + hash + + JBZVMxBpAMwrWcyc+dgE6K4wv3Y= + + optional + + + Resources/pt_BR.lproj/Sparkle.strings + + hash + + m0/z0E7FyKhR88ARE7krxlBddIE= + + optional + + + Resources/pt_PT.lproj/Sparkle.strings + + hash + + WnZVm2N1QLkSKFEXroDxWwQaEaI= + + optional + + + Resources/ro.lproj/Sparkle.strings + + hash + + H7PP1/P5528PLJWO/CMO22lrYSk= + + optional + + + Resources/ru.lproj/Sparkle.strings + + hash + + zk1n3RGCHav3+MVeWQsPfR+ZSJo= + + optional + + + Resources/sk.lproj/Sparkle.strings + + hash + + zt6PAVDMa8jGWGNq3+Ji28mrbBs= + + optional + + + Resources/sl.lproj/Sparkle.strings + + hash + + dgUB5F/WJ5Td9OA6QTa8c0FNn1I= + + optional + + + Resources/sv.lproj/Sparkle.strings + + hash + + BYZnFFxRUyXZshGKoeGKOKZUhvA= + + optional + + + Resources/th.lproj/Sparkle.strings + + hash + + egT6SGyVhdOvD7rEK46LORU4AcI= + + optional + + + Resources/tr.lproj/Sparkle.strings + + hash + + 5DY87FLxTqUqML4xDc2ijrL/U/Y= + + optional + + + Resources/uk.lproj/Sparkle.strings + + hash + + hL54lBspraUdyo0J8GLbd35jROY= + + optional + + + Resources/zh_CN.lproj/Sparkle.strings + + hash + + wSKJNIlrBnFcVPjJctSy9AHpIlU= + + optional + + + Resources/zh_TW.lproj/Sparkle.strings + + hash + + bkwIz4OBKwtmku2hCdjEC3hUCYo= + + optional + + + + files2 + + Resources/SUStatus.nib + + AY4YXjlQrzqM9SfsrxpSB1B1u+k= + + Resources/Sparkle.icns + + RAPi1GDm7RjA+JlOSVD1eYK+1VA= + + Resources/ar.lproj/Sparkle.strings + + hash + + dM38Ha/cZwg8Sls9xWHXg0+oKvQ= + + optional + + + Resources/cs.lproj/Sparkle.strings + + hash + + FlXetLwR0j5/1odm0Db+H2CctTg= + + optional + + + Resources/da.lproj/Sparkle.strings + + hash + + /IwCWEjabs9+XPC2kpnVYBcIsAU= + + optional + + + Resources/de.lproj/Sparkle.strings + + hash + + QtXxl9WDwzVVxXrSvEcYxzgYnp8= + + optional + + + Resources/en.lproj/Sparkle.strings + + hash + + zzMk9fvGPMnNUAXXV/+jnYJnziE= + + optional + + + Resources/es.lproj/Sparkle.strings + + hash + + GrNcWzFjNuy3aBJY7IG8OL9BnEM= + + optional + + + Resources/fr.lproj/Sparkle.strings + + hash + + 5z8VRMQoNLwAyzB9My8omBTkKZA= + + optional + + + Resources/is.lproj/Sparkle.strings + + hash + + d0sFFGqw9ifMmvrnHhIgvezLdfE= + + optional + + + Resources/it.lproj/Sparkle.strings + + hash + + HodRH2wN987WiLqfo9YkRcEa1AM= + + optional + + + Resources/ja.lproj/Sparkle.strings + + hash + + iRM0gMYfeAM58HxcdGHlGJqSFYc= + + optional + + + Resources/ko.lproj/Sparkle.strings + + hash + + 72vg45GkQZIgSVEw6gTdm4ewl8c= + + optional + + + Resources/nl.lproj/Sparkle.strings + + hash + + 8FkGwpespW8x/FyRktfq1gF03Rk= + + optional + + + Resources/pl.lproj/Sparkle.strings + + hash + + JBZVMxBpAMwrWcyc+dgE6K4wv3Y= + + optional + + + Resources/pt_BR.lproj/Sparkle.strings + + hash + + m0/z0E7FyKhR88ARE7krxlBddIE= + + optional + + + Resources/pt_PT.lproj/Sparkle.strings + + hash + + WnZVm2N1QLkSKFEXroDxWwQaEaI= + + optional + + + Resources/ro.lproj/Sparkle.strings + + hash + + H7PP1/P5528PLJWO/CMO22lrYSk= + + optional + + + Resources/ru.lproj/Sparkle.strings + + hash + + zk1n3RGCHav3+MVeWQsPfR+ZSJo= + + optional + + + Resources/sk.lproj/Sparkle.strings + + hash + + zt6PAVDMa8jGWGNq3+Ji28mrbBs= + + optional + + + Resources/sl.lproj/Sparkle.strings + + hash + + dgUB5F/WJ5Td9OA6QTa8c0FNn1I= + + optional + + + Resources/sv.lproj/Sparkle.strings + + hash + + BYZnFFxRUyXZshGKoeGKOKZUhvA= + + optional + + + Resources/th.lproj/Sparkle.strings + + hash + + egT6SGyVhdOvD7rEK46LORU4AcI= + + optional + + + Resources/tr.lproj/Sparkle.strings + + hash + + 5DY87FLxTqUqML4xDc2ijrL/U/Y= + + optional + + + Resources/uk.lproj/Sparkle.strings + + hash + + hL54lBspraUdyo0J8GLbd35jROY= + + optional + + + Resources/zh_CN.lproj/Sparkle.strings + + hash + + wSKJNIlrBnFcVPjJctSy9AHpIlU= + + optional + + + Resources/zh_TW.lproj/Sparkle.strings + + hash + + bkwIz4OBKwtmku2hCdjEC3hUCYo= + + optional + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Sparkle.framework/Versions/A/Resources/Info.plist b/Sparkle.framework/Versions/A/Resources/Info.plist index 82cd009..2c2586f 100644 --- a/Sparkle.framework/Versions/A/Resources/Info.plist +++ b/Sparkle.framework/Versions/A/Resources/Info.plist @@ -3,9 +3,9 @@ BuildMachineOSBuild - 12A269 + 13C64 CFBundleDevelopmentRegion - English + en CFBundleExecutable Sparkle CFBundleIdentifier @@ -16,23 +16,25 @@ Sparkle CFBundlePackageType FMWK + CFBundleShortVersionString + 1.6.0 CFBundleSignature ???? CFBundleVersion - 1.1 + 6f24f56 DTCompiler - com.apple.compilers.llvmgcc42 + com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 4F1003 + 5B103i DTPlatformVersion GM DTSDKBuild - 9L31a + 13A595 DTSDKName - macosx10.5 + macosx10.9 DTXcode - 0441 + 0510 DTXcodeBuild - 4F1003 + 5B103i diff --git a/Sparkle.framework/Versions/A/Resources/License.txt b/Sparkle.framework/Versions/A/Resources/License.txt new file mode 100644 index 0000000..08364c6 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/License.txt @@ -0,0 +1,38 @@ +Copyright (c) 2006 Andy Matuschak + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +================= +EXTERNAL LICENSES +================= + +License for bspatch.c and bsdiff.c, from bsdiff 4.3 (: +/*- + * Copyright 2003-2005 Colin Percival + * All rights reserved + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted providing that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ diff --git a/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist b/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist new file mode 100644 index 0000000..63644f0 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist @@ -0,0 +1,182 @@ + + + + + ADP2,1 + Developer Transition Kit + iMac1,1 + iMac G3 (Rev A-D) + iMac4,1 + iMac (Core Duo) + iMac4,2 + iMac for Education (17-inch, Core Duo) + iMac5,1 + iMac (Core 2 Duo, 17 or 20 inch, SuperDrive) + iMac5,2 + iMac (Core 2 Duo, 17 inch, Combo Drive) + iMac6,1 + iMac (Core 2 Duo, 24 inch, SuperDrive) + iMac8,1 + iMac (April 2008) + MacBook1,1 + MacBook (Core Duo) + MacBook2,1 + MacBook (Core 2 Duo) + MacBook4,1 + MacBook (Core 2 Duo Feb 2008) + MacBookAir1,1 + MacBook Air (January 2008) + MacBookAir2,1 + MacBook Air (June 2009) + MacBookAir3,1 + MacBook Air (October 2010) + MacBookPro1,1 + MacBook Pro Core Duo (15-inch) + MacBookPro1,2 + MacBook Pro Core Duo (17-inch) + MacBookPro2,1 + MacBook Pro Core 2 Duo (17-inch) + MacBookPro2,2 + MacBook Pro Core 2 Duo (15-inch) + MacBookPro3,1 + MacBook Pro Core 2 Duo (15-inch LED, Core 2 Duo) + MacBookPro3,2 + MacBook Pro Core 2 Duo (17-inch HD, Core 2 Duo) + MacBookPro4,1 + MacBook Pro (Core 2 Duo Feb 2008) + Macmini1,1 + Mac Mini (Core Solo/Duo) + MacPro1,1 + Mac Pro (four-core) + MacPro2,1 + Mac Pro (eight-core) + MacPro3,1 + Mac Pro (January 2008 4- or 8- core "Harpertown") + MacPro4,1 + Mac Pro (March 2009) + MacPro5,1 + Mac Pro (August 2010) + PowerBook1,1 + PowerBook G3 + PowerBook2,1 + iBook G3 + PowerBook2,2 + iBook G3 (FireWire) + PowerBook2,3 + iBook G3 + PowerBook2,4 + iBook G3 + PowerBook3,1 + PowerBook G3 (FireWire) + PowerBook3,2 + PowerBook G4 + PowerBook3,3 + PowerBook G4 (Gigabit Ethernet) + PowerBook3,4 + PowerBook G4 (DVI) + PowerBook3,5 + PowerBook G4 (1GHz / 867MHz) + PowerBook4,1 + iBook G3 (Dual USB, Late 2001) + PowerBook4,2 + iBook G3 (16MB VRAM) + PowerBook4,3 + iBook G3 Opaque 16MB VRAM, 32MB VRAM, Early 2003) + PowerBook5,1 + PowerBook G4 (17 inch) + PowerBook5,2 + PowerBook G4 (15 inch FW 800) + PowerBook5,3 + PowerBook G4 (17-inch 1.33GHz) + PowerBook5,4 + PowerBook G4 (15 inch 1.5/1.33GHz) + PowerBook5,5 + PowerBook G4 (17-inch 1.5GHz) + PowerBook5,6 + PowerBook G4 (15 inch 1.67GHz/1.5GHz) + PowerBook5,7 + PowerBook G4 (17-inch 1.67GHz) + PowerBook5,8 + PowerBook G4 (Double layer SD, 15 inch) + PowerBook5,9 + PowerBook G4 (Double layer SD, 17 inch) + PowerBook6,1 + PowerBook G4 (12 inch) + PowerBook6,2 + PowerBook G4 (12 inch, DVI) + PowerBook6,3 + iBook G4 + PowerBook6,4 + PowerBook G4 (12 inch 1.33GHz) + PowerBook6,5 + iBook G4 (Early-Late 2004) + PowerBook6,7 + iBook G4 (Mid 2005) + PowerBook6,8 + PowerBook G4 (12 inch 1.5GHz) + PowerMac1,1 + Power Macintosh G3 (Blue & White) + PowerMac1,2 + Power Macintosh G4 (PCI Graphics) + PowerMac10,1 + Mac Mini G4 + PowerMac10,2 + Mac Mini (Late 2005) + PowerMac11,2 + Power Macintosh G5 (Late 2005) + PowerMac12,1 + iMac G5 (iSight) + PowerMac2,1 + iMac G3 (Slot-loading CD-ROM) + PowerMac2,2 + iMac G3 (Summer 2000) + PowerMac3,1 + Power Macintosh G4 (AGP Graphics) + PowerMac3,2 + Power Macintosh G4 (AGP Graphics) + PowerMac3,3 + Power Macintosh G4 (Gigabit Ethernet) + PowerMac3,4 + Power Macintosh G4 (Digital Audio) + PowerMac3,5 + Power Macintosh G4 (Quick Silver) + PowerMac3,6 + Power Macintosh G4 (Mirrored Drive Door) + PowerMac4,1 + iMac G3 (Early/Summer 2001) + PowerMac4,2 + iMac G4 (Flat Panel) + PowerMac4,4 + eMac + PowerMac4,5 + iMac G4 (17-inch Flat Panel) + PowerMac5,1 + Power Macintosh G4 Cube + PowerMac6,1 + iMac G4 (USB 2.0) + PowerMac6,3 + iMac G4 (20-inch Flat Panel) + PowerMac6,4 + eMac (USB 2.0, 2005) + PowerMac7,2 + Power Macintosh G5 + PowerMac7,3 + Power Macintosh G5 + PowerMac8,1 + iMac G5 + PowerMac8,2 + iMac G5 (Ambient Light Sensor) + PowerMac9,1 + Power Macintosh G5 (Late 2005) + RackMac1,1 + Xserve G4 + RackMac1,2 + Xserve G4 (slot-loading, cluster node) + RackMac3,1 + Xserve G5 + Xserve1,1 + Xserve (Intel Xeon) + Xserve2,1 + Xserve (January 2008 quad-core) + + diff --git a/Sparkle.framework/Versions/A/Resources/SUStatus.nib b/Sparkle.framework/Versions/A/Resources/SUStatus.nib index 378b22f..356987e 100644 Binary files a/Sparkle.framework/Versions/A/Resources/SUStatus.nib and b/Sparkle.framework/Versions/A/Resources/SUStatus.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..2d1b77b Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ar.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..09c833c Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..b8925e7 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..366eee7 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings new file mode 100644 index 0000000..28c2c21 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index 15daf30..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.nib deleted file mode 100644 index 17f2f3d..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings deleted file mode 100644 index 0d2ad7b..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib index ac43a0c..335264f 100644 Binary files a/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib index 2084963..fe70bf2 100644 Binary files a/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..813b525 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings index 2246bc4..a50d6bf 100644 Binary files a/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/cy.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/cy.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index b619eb4..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/cy.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/cy.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/cy.lproj/SUUpdateAlert.nib deleted file mode 100644 index 81c59b7..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/cy.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/cy.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/cy.lproj/Sparkle.strings deleted file mode 100644 index a4bc70c..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/cy.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib index d371ff2..211e718 100644 Binary files a/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/da.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/da.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..1873d43 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/da.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib index d51f9ad..42395b2 100644 Binary files a/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..e7e9244 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings index 0142767..8c349bd 100644 Binary files a/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib index 0808fc6..19970aa 100644 Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib index aeec008..69fccfc 100644 Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..c59bf3c Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings index 9c95065..fe50db5 100644 Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib index c4201cf..512c1c5 100644 Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..6cd02b2 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib index be3dbd9..e856f9d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..43b2737 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings index e03fad7..c459871 100644 Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib index b619eb4..7ffc7de 100644 Binary files a/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib index 236c082..f67fced 100644 Binary files a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..f927ba6 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings index a4bc70c..ee69407 100644 Binary files a/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index e7f6143..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib deleted file mode 100644 index ac21bcb..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings deleted file mode 100644 index a343002..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib index 552a5bd..d8de857 100644 Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib index 0cd65e6..a084b19 100644 Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..455956a Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings index 311ed9a..e0b6512 100644 Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/fr_CA.lproj b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj new file mode 120000 index 0000000..f9834a3 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj @@ -0,0 +1 @@ +fr.lproj \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index e4c7ba0..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.nib deleted file mode 100644 index af7bfbb..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings deleted file mode 100644 index d557afb..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index b619eb4..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib deleted file mode 100644 index 4fbd2d6..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings deleted file mode 100644 index a4bc70c..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/id.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/id.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index b619eb4..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/id.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/id.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/id.lproj/SUUpdateAlert.nib deleted file mode 100644 index c815112..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/id.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/id.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/id.lproj/Sparkle.strings deleted file mode 100644 index a4bc70c..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/id.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib index b619eb4..89825fb 100644 Binary files a/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib index 44b9da5..2172c0d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..c028ca5 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings index 360cc86..68ae6e0 100644 Binary files a/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib index 53fa5b3..337b6d0 100644 Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib index 0e8d6a6..7cc884b 100644 Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..285596b Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings index 17897a4..99955af 100644 Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib index d317046..61d2a29 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib index 00b088d..e26de92 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..ebd5759 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings index b06220b..ec3f8d2 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib index b619eb4..e7a8d46 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib index aeb4628..89f887e 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..b96e5c6 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings index a4bc70c..d5df79d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib index b619eb4..35a8de2 100644 Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib index 26b2e8a..efcda34 100644 Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..ab2c86f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings index a4bc70c..95923ee 100644 Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/no.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/no.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index b619eb4..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/no.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/no.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/no.lproj/SUUpdateAlert.nib deleted file mode 100644 index 36947a7..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/no.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/no.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/no.lproj/Sparkle.strings deleted file mode 100644 index 91b1892..0000000 Binary files a/Sparkle.framework/Versions/A/Resources/no.lproj/Sparkle.strings and /dev/null differ diff --git a/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib index 6da4ab1..0646f3f 100644 Binary files a/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib index dc2fbf3..1b4d495 100644 Binary files a/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..601a537 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings index 4dc80fd..d10801f 100644 Binary files a/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/pt.lproj b/Sparkle.framework/Versions/A/Resources/pt.lproj new file mode 120000 index 0000000..3c1c9f6 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/pt.lproj @@ -0,0 +1 @@ +pt_BR.lproj \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..4f3f9a2 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..22f50aa Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..be998ba Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..f1699da Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings new file mode 100644 index 0000000..0f2ef4d Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..c3603d5 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..2d371c4 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..7b6d719 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings new file mode 100644 index 0000000..69853a3 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..74da8fd Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ro.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..5479318 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..94d24c7 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..ec2921b Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings new file mode 100644 index 0000000..2a6c99f Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib index b619eb4..8022f52 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib index b2f8b50..dae9954 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..fda58df Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings index 557cbdd..349f17f 100644 Binary files a/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib index 7a79f4d..3afea8d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib index 13cdb31..15e760d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..8449e38 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings index acf1c4c..38bb70d 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..60cfe74 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..c3bd698 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..1ff5bc3 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings new file mode 100644 index 0000000..889a658 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib index b619eb4..a1ac5f9 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib index c4116cc..58e6d1a 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..9900d55 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings index 57e9233..fbebf96 100644 Binary files a/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib index b619eb4..e1377a4 100644 Binary files a/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/th.lproj/SUPasswordPrompt.nib b/Sparkle.framework/Versions/A/Resources/th.lproj/SUPasswordPrompt.nib new file mode 100644 index 0000000..646d64e Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/th.lproj/SUPasswordPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib index 2b1c6e3..239b8f7 100644 Binary files a/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..143ff91 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings index a4bc70c..323bb70 100644 Binary files a/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib index 6e20460..26ac291 100644 Binary files a/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib index 4f31fd7..d1204db 100644 Binary files a/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..9d52626 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings index d55194e..ccc268f 100644 Binary files a/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib new file mode 100644 index 0000000..83dbcbf Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib new file mode 100644 index 0000000..939e0cb Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..8e2bf73 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings new file mode 100644 index 0000000..c3f3d9e Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib index f165c1a..a4dbbe7 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib index 0d56dd1..4d95c96 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..e09cd78 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings index 0923051..68f34b5 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib index b619eb4..c4b9e9b 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib index 9be9428..6e98d7e 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib and b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib new file mode 100644 index 0000000..935b007 Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib differ diff --git a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings index a548680..17fcca0 100644 Binary files a/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings differ diff --git a/Sparkle.framework/Versions/A/Sparkle b/Sparkle.framework/Versions/A/Sparkle index c37ca00..99ee420 100755 Binary files a/Sparkle.framework/Versions/A/Sparkle and b/Sparkle.framework/Versions/A/Sparkle differ diff --git a/Sparkle.framework/Versions/A/_CodeSignature/CodeResources b/Sparkle.framework/Versions/A/_CodeSignature/CodeResources deleted file mode 100644 index bef0ba5..0000000 --- a/Sparkle.framework/Versions/A/_CodeSignature/CodeResources +++ /dev/null @@ -1,740 +0,0 @@ - - - - - files - - Resources/Info.plist - - rXjTVsZpOl98U+gMINZ2ovIlBOA= - - Resources/SUStatus.nib - - PMQ+F2t+VY+WWds3qmITXHCHZmQ= - - Resources/ca.lproj/SUAutomaticUpdateAlert.nib - - hash - - bng7kzd985AXrjeNNbHgMp3bJcA= - - optional - - - Resources/ca.lproj/SUUpdateAlert.nib - - hash - - yaKR1u/XIxrIlKnf3gbXa5WEdqU= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash - - Zt1kgAjDoAyvHZrhbl/9gBncHdo= - - optional - - - Resources/cs.lproj/SUAutomaticUpdateAlert.nib - - hash - - O54u6UTAf7OK9CeqIDr+bNCfTC0= - - optional - - - Resources/cs.lproj/SUUpdateAlert.nib - - hash - - OnlWIGM/M9U3rQ3ojiwUjK59o3c= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash - - u+0SN9FQMDgI0l2HErDv75HaijU= - - optional - - - Resources/cy.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/cy.lproj/SUUpdateAlert.nib - - hash - - m8k+PTiWeufJFK45/xxsSvp8GKU= - - optional - - - Resources/cy.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/da.lproj/SUAutomaticUpdateAlert.nib - - hash - - 7vHWzBtmLfirqepvUUKTC7NFWe8= - - optional - - - Resources/da.lproj/SUUpdateAlert.nib - - hash - - DHfrjNStmSTwKB9gBlEtWN7BdQQ= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash - - rnBzgseeGaayGYxQfiohw5WiA9g= - - optional - - - Resources/de.lproj/SUAutomaticUpdateAlert.nib - - hash - - stKrxHTKemn9IhiNLhf9OUe496s= - - optional - - - Resources/de.lproj/SUUpdateAlert.nib - - hash - - 6wG85SPcSfnvBZkgkrLJifjHF2k= - - optional - - - Resources/de.lproj/Sparkle.strings - - hash - - IBkV6dwh7AlVseo2f2UCQnaskQI= - - optional - - - Resources/en.lproj/SUAutomaticUpdateAlert.nib - - hash - - KJcUzIpBfFLXj474CqG1plEfRa0= - - optional - - - Resources/en.lproj/SUUpdateAlert.nib - - hash - - TFT+gcPw29AqPeiwUwO422ruvss= - - optional - - - Resources/en.lproj/Sparkle.strings - - hash - - sjxHQgF4p53nQeTuUGNF24VltA8= - - optional - - - Resources/es.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/es.lproj/SUUpdateAlert.nib - - hash - - nigT7+0TXQC6EmzwPx+EY2PFqZ8= - - optional - - - Resources/es.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/fi.lproj/SUAutomaticUpdateAlert.nib - - hash - - ynw5nxdaaijE0JTYbN3D2nGMdeU= - - optional - - - Resources/fi.lproj/SUUpdateAlert.nib - - hash - - MGg5zHGYHawh5vy5ApMa+ky+S7E= - - optional - - - Resources/fi.lproj/Sparkle.strings - - hash - - eknfYMQ3+PNfTcHgHHw4YQNCxkg= - - optional - - - Resources/fr.lproj/SUAutomaticUpdateAlert.nib - - hash - - 0d54VXPJZ3bTE0fPDf3HSBC8vxA= - - optional - - - Resources/fr.lproj/SUUpdateAlert.nib - - hash - - 8u70la7PgihhXeIiklBloXxxOKQ= - - optional - - - Resources/fr.lproj/Sparkle.strings - - hash - - ddZGUwbZ4M5HzHckPlfuT3X4jUs= - - optional - - - Resources/he.lproj/SUAutomaticUpdateAlert.nib - - hash - - X5IxNLmD8LRDQvGXYyFTSkaqlUI= - - optional - - - Resources/he.lproj/SUUpdateAlert.nib - - hash - - +gLuyfbVEEiSJtmeIufWRBVeLRQ= - - optional - - - Resources/he.lproj/Sparkle.strings - - hash - - QhsUgpSK0LmE1p5Egt7rEEDFzBs= - - optional - - - Resources/hu.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/hu.lproj/SUUpdateAlert.nib - - hash - - niLSNOpZDKYjgQhRSQrgACpRpwg= - - optional - - - Resources/hu.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/id.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/id.lproj/SUUpdateAlert.nib - - hash - - Qu0+CwIAwPo+WykyWBI6ykNtX6c= - - optional - - - Resources/id.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/is.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/is.lproj/SUUpdateAlert.nib - - hash - - Kk7gn4Uexj6dATTCIVldElbbxAI= - - optional - - - Resources/is.lproj/Sparkle.strings - - hash - - x2u0qBgmjpl4f6JxARVOcxCbjMs= - - optional - - - Resources/it.lproj/SUAutomaticUpdateAlert.nib - - hash - - 7cx7KzQRJS1weZFMJpW4+6UxBT0= - - optional - - - Resources/it.lproj/SUUpdateAlert.nib - - hash - - 9BdiachxoYbIXvYI6eIdYR+YSrw= - - optional - - - Resources/it.lproj/Sparkle.strings - - hash - - oIilNd5r5lsB9AyFrhIzwGKIOVE= - - optional - - - Resources/ja.lproj/SUAutomaticUpdateAlert.nib - - hash - - mPNqghcUUlQtsQyzp4PZL8tppnU= - - optional - - - Resources/ja.lproj/SUUpdateAlert.nib - - hash - - C9B1IOasDum/hcjn5Ivt++0Tj/Q= - - optional - - - Resources/ja.lproj/Sparkle.strings - - hash - - XFo3M2UlsXVrnqbgQUu5XTUnu5w= - - optional - - - Resources/ko.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/ko.lproj/SUUpdateAlert.nib - - hash - - +MYtI+1TsO8iSo5MvxXSFz+Wn9U= - - optional - - - Resources/ko.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/nl.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/nl.lproj/SUUpdateAlert.nib - - hash - - uV8BfH45MCWCPx2Nd6yHxkmPNBs= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/no.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/no.lproj/SUUpdateAlert.nib - - hash - - YuRm0tXJAbzFDiD5TY8FYO59p7w= - - optional - - - Resources/no.lproj/Sparkle.strings - - hash - - 7biydCAYrIS5nucSFDDRRwkFWyI= - - optional - - - Resources/pl.lproj/SUAutomaticUpdateAlert.nib - - hash - - /F1jK/PTzQmkkBtusg6tVoQU8lQ= - - optional - - - Resources/pl.lproj/SUUpdateAlert.nib - - hash - - l/7saxW4s7EtcxAmU/kUdTl+r8g= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - LdPLgc98aKLgaYEq4CVLcoU2quQ= - - optional - - - Resources/ru.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/ru.lproj/SUUpdateAlert.nib - - hash - - quQSeGScwlB5LAKhxu3HiDgFOCY= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - eAG8eJRow5dvx38YhCJewgx3brM= - - optional - - - Resources/sk.lproj/SUAutomaticUpdateAlert.nib - - hash - - 0k+kTyoLVAeJH7gYjMFFhW7M2/c= - - optional - - - Resources/sk.lproj/SUUpdateAlert.nib - - hash - - iWM3lj++kzYK9A09cdrHgqczHbU= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - 0xnHfE5ETDfVMV/xZAXplz+f03M= - - optional - - - Resources/sv.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/sv.lproj/SUUpdateAlert.nib - - hash - - 0vCZj0sdHqp+OJEf1FoIEXnveC8= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - CEsV4Nj2kH5iAYcugwXhR6iHtrI= - - optional - - - Resources/th.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/th.lproj/SUUpdateAlert.nib - - hash - - XwzSXmuSLYok5duqBS0IxppKwx0= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - Z2C52pKivAcv7TODPbszIEWk4bE= - - optional - - - Resources/tr.lproj/SUAutomaticUpdateAlert.nib - - hash - - o8EEoDtAp6jXh7mXqLx0FJZYU14= - - optional - - - Resources/tr.lproj/SUUpdateAlert.nib - - hash - - TuQsW4TxTBUt6eda0aDQsjI4b6A= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - 78jmMLiNoBU4BQI8C4xQ4iP7klM= - - optional - - - Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib - - hash - - s1hQkcSWvNA1WJkb/JkN1Vq58yk= - - optional - - - Resources/zh_CN.lproj/SUUpdateAlert.nib - - hash - - pi+VzfSyAJFfv7Y9lbCYDGek5jM= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - MALIO9OslZfUEe5OoQSygmvkjz8= - - optional - - - Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib - - hash - - aZeuSlOBvhgBP88jMCvqBMrBx1c= - - optional - - - Resources/zh_TW.lproj/SUUpdateAlert.nib - - hash - - gujgpWRdQaNR8AK4ZoXDG2J6OgA= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - NkxQSvfv8Jd0iOSfFRsmuAVwzeo= - - optional - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^version.plist$ - - - - diff --git a/smcFanControl.xcodeproj/project.pbxproj b/smcFanControl.xcodeproj/project.pbxproj index c7e820e..c4ec3d5 100644 --- a/smcFanControl.xcodeproj/project.pbxproj +++ b/smcFanControl.xcodeproj/project.pbxproj @@ -25,8 +25,8 @@ 8985F1590ADD0B5500F9EC46 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8985F1580ADD0B5500F9EC46 /* Security.framework */; }; 8987FBD20B878B3900A5ED8E /* smc.png in Resources */ = {isa = PBXBuildFile; fileRef = 8987FBD00B878B3900A5ED8E /* smc.png */; }; 89949E8D0AEEA37700077E93 /* Power.m in Sources */ = {isa = PBXBuildFile; fileRef = 89949E8C0AEEA37700077E93 /* Power.m */; }; - 899D59DC15E1CF60003E322D /* smc in CopyFiles */ = {isa = PBXBuildFile; fileRef = 8924ECEE15AC96E70031730C /* smc */; }; - 899D59DD15E1CFFF003E322D /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 895BDA390B8F8F42003CD894 /* Sparkle.framework */; }; + 899D59DC15E1CF60003E322D /* smc in CopyFiles */ = {isa = PBXBuildFile; fileRef = 8924ECEE15AC96E70031730C /* smc */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 899D59DD15E1CFFF003E322D /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 895BDA390B8F8F42003CD894 /* Sparkle.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; 89B243200B7E351000CAD103 /* smcfancontrol_v2.icns in Resources */ = {isa = PBXBuildFile; fileRef = 89B2431F0B7E351000CAD103 /* smcfancontrol_v2.icns */; }; 89C053BE0ADAB7630037CA16 /* smc.c in Sources */ = {isa = PBXBuildFile; fileRef = 89C053BC0ADAB7630037CA16 /* smc.c */; }; 89E7D3650ADE819B000F67AB /* Machines.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89E7D3640ADE819B000F67AB /* Machines.plist */; }; @@ -101,7 +101,6 @@ 894A494A0ADBEEF4008785F3 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; 894DC9E20F8AA367006A046F /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = Spanish; path = Spanish.lproj/MainMenu.nib; sourceTree = ""; }; 894DC9E30F8AA36F006A046F /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = Spanish; path = Spanish.lproj/F.A.Q.rtf; sourceTree = ""; }; - 894DC9E40F8AA37C006A046F /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/InfoPlist.strings; sourceTree = ""; }; 894DC9E60F8AA399006A046F /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/Localizable.strings; sourceTree = ""; }; 89559A830BAC338400DBA37E /* smcover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = smcover.png; sourceTree = ""; }; 895BDA390B8F8F42003CD894 /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = ""; }; @@ -301,7 +300,7 @@ 29B97313FDCFA39411CA2CEA /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0510; + LastUpgradeCheck = 0610; TargetAttributes = { 8924ECED15AC96E70031730C = { DevelopmentTeam = MC98392EJC; @@ -383,7 +382,6 @@ isa = PBXVariantGroup; children = ( 089C165DFE840E0CC02AAC07 /* English */, - 894DC9E40F8AA37C006A046F /* Spanish */, ); name = InfoPlist.strings; sourceTree = ""; @@ -430,8 +428,8 @@ ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "Developer ID Application: Hendrik Holtmann"; - "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Developer ID Application: Hendrik Holtmann"; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = ""; COPY_PHASE_STRIP = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; @@ -457,8 +455,8 @@ ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "Developer ID Application: Hendrik Holtmann"; - "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Developer ID Application: Hendrik Holtmann"; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = ""; COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_C_LANGUAGE_STANDARD = gnu99; @@ -478,6 +476,8 @@ C01FCF4B08A954540054247B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + CLANG_ENABLE_OBJC_ARC = YES; CODE_SIGN_IDENTITY = "Developer ID Application: Hendrik Holtmann"; COMBINE_HIDPI_IMAGES = YES; COPY_PHASE_STRIP = NO; @@ -498,8 +498,9 @@ "$(inherited)", "\"$(SDKROOT)/usr/lib/system\"", ); - MACOSX_DEPLOYMENT_TARGET = 10.5; + MACOSX_DEPLOYMENT_TARGET = 10.6; ONLY_ACTIVE_ARCH = NO; + OTHER_CODE_SIGN_FLAGS = "--deep"; PRODUCT_NAME = smcFanControl; PROVISIONING_PROFILE = ""; SDKROOT = macosx; @@ -511,6 +512,8 @@ C01FCF4C08A954540054247B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + CLANG_ENABLE_OBJC_ARC = YES; CODE_SIGN_IDENTITY = "Developer ID Application: Hendrik Holtmann"; COMBINE_HIDPI_IMAGES = YES; FRAMEWORK_SEARCH_PATHS = ( @@ -530,8 +533,9 @@ "$(inherited)", "\"$(SDKROOT)/usr/lib/system\"", ); - MACOSX_DEPLOYMENT_TARGET = 10.5; + MACOSX_DEPLOYMENT_TARGET = 10.6; ONLY_ACTIVE_ARCH = NO; + OTHER_CODE_SIGN_FLAGS = "--deep"; PRODUCT_NAME = smcFanControl; PROVISIONING_PROFILE = ""; SDKROOT = macosx; diff --git a/smcFanControl.xcodeproj/project.xcworkspace/xcuserdata/hendrikh.xcuserdatad/UserInterfaceState.xcuserstate b/smcFanControl.xcodeproj/project.xcworkspace/xcuserdata/hendrikh.xcuserdatad/UserInterfaceState.xcuserstate index 126c6a3..2d921dd 100644 Binary files a/smcFanControl.xcodeproj/project.xcworkspace/xcuserdata/hendrikh.xcuserdatad/UserInterfaceState.xcuserstate and b/smcFanControl.xcodeproj/project.xcworkspace/xcuserdata/hendrikh.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 0364d00..d64e322 100644 --- a/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -11,16 +11,14 @@ continueAfterRunningActions = "No" scope = "0" stopOnStyle = "0"> - - - - + + + + + + diff --git a/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcschemes/smcFanControl.xcscheme b/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcschemes/smcFanControl.xcscheme index d8150df..3d22965 100644 --- a/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcschemes/smcFanControl.xcscheme +++ b/smcFanControl.xcodeproj/xcuserdata/hendrikh.xcuserdatad/xcschemes/smcFanControl.xcscheme @@ -1,6 +1,6 @@