From: Zygo Blaxell Date: Wed, 11 Oct 2023 22:17:38 +0000 (-0400) Subject: From https://www.jwz.org/xscreensaver/xscreensaver-6.08.tar.gz X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c43268adc2e7a932ca5427db7b18d37ef53f7ad;p=xscreensaver From https://www.jwz.org/xscreensaver/xscreensaver-6.08.tar.gz -rw-rw-r-- 1 zblaxell zblaxell 19990058 Oct 10 20:41 xscreensaver-6.08.tar.gz a7e75a2ae1110354ffaa639f4c38ec0506cabf2b xscreensaver-6.08.tar.gz --- diff --git a/OSX/Makefile b/OSX/Makefile index 33348cb9..892fe04f 100644 --- a/OSX/Makefile +++ b/OSX/Makefile @@ -49,12 +49,16 @@ release:: Sparkle.framework: rm -rf bin sparkle-bin - tar -vxjf ../archive/Sparkle-1.27.0.tar.xz \ + tar -vxjf ../archive/Sparkle-2.5.0.tar.xz \ --exclude CHANGELOG \ --exclude LICENSE \ + --exclude INSTALL \ + --exclude Entitlements \ --exclude SampleAppcast.xml \ --exclude Sparkle.framework.dSYM \ - --exclude Sparkle\ Test\ App\* + --exclude Sparkle\ Test\ App\* \ + --exclude Symbols \ + --exclude sparkle.app mv bin sparkle-bin # Download and resize images from jwz.org. @@ -103,8 +107,8 @@ $(THUMBDIR)/%.png: if [ ! -d $(THUMBDIR) ]; then mkdir -p $(THUMBDIR) ; fi ; \ rm -f "$$FILE2" "$$TMP" ; \ set +e ; \ - if [ -f "$$HOME/www/$(BASE)/$$FILE1" ]; then \ - cp -p "$$HOME/www/$(BASE)/$$FILE1" "$$TMP" ; \ + if [ -f "$$HOME/www/$(BASE)$$FILE1" ]; then \ + cp -p "$$HOME/www/$(BASE)$$FILE1" "$$TMP" ; \ else \ echo "downloading $$URL..." ; \ $(WGET) "$$URL" > "$$TMP" ; \ @@ -494,65 +498,143 @@ staple:: xcrun stapler validate "$$DMG" ; \ -# When debugging, sometimes I have to reset the preferences for all -# the savers. Also I like FPS to be turned on, and them all to be -# pointed at the same image directory. +# When running under legacyScreenSaver or System Settings, saver preferences +# are read from: +# +# Library/Containers/com.apple.ScreenSaver.Engine.legacyScreenSaver/Data/\ +# Library/Preferences/ByHost/org.jwz.xscreensaver.$NAME.$UUID.plist +# +# When running under SaverRunner, they are read from: +# +# Library/Preferences/ByHost/org.jwz.xscreensaver.$NAME.$UUID.plist +# +# The "defaults read" and "defaults write" commands only access the +# "Preferences" version, not the "Containers" version. Some documentation +# suggests that "defaults" should be using the "Containers" if run from +# Terminal with "Full Disk Access" enabled, but that is not the case, at +# least as of macOS 14.0. +# +# Extra kink: the "XScreenSaverUpdater.app" program, not being sandboxed +# or by-host, writes to: +# +# Library/Preferences/org.jwz.xscreensaver.XScreenSaverUpdater.plist +# +# but the screen savers' Settings panels, when changing the update frequency, +# write to a sandboxed, but not by-host, plist file: +# +# Library/Containers/com.apple.ScreenSaver.Engine.legacyScreenSaver/Data/\ +# Library/Preferences/org.jwz.xscreensaver.XScreenSaverUpdater.plist +# +# XScreenSaverView checkForUpdates has a kludge to work around that. +# +# +# "make show_prefs" lists both sets of preferences of each saver. +# +# "make reset_prefs" sets both sets of Preferences to my preferred +# values for debugging. # show_prefs:: @cd build/Debug ; \ + UUID=`/usr/sbin/system_profiler SPHardwareDataType | \ + sed -n 's/^ *Hardware UUID: *//p'` ; \ + DOM="org.jwz.xscreensaver" ; \ + CNT="$$HOME/Library/Containers" ; \ + CNT="$$CNT/com.apple.ScreenSaver.Engine.legacyScreenSaver" ; \ + CN1="$$CNT/Data/Library/Preferences/$$DOM" ; \ + CN2="$$CNT/Data/Library/Preferences/ByHost/$$DOM" ; \ + TMP=/tmp/$$.plist ; \ for f in *.saver ; do \ f=`echo "$$f" | sed 's/\..*//'` ; \ echo "########################## $$f" ; \ + defaults -currentHost read "$$f" 2>&- ; \ + f2="$$CN2.$$f.$$UUID.plist" ; \ + if [ -f "$$f2" ] ; then \ + cp "$$f2" "$$TMP" ; \ + defaults read "$$TMP" ; \ + fi ; \ + done ; \ + \ + for f in Apple2 Phosphor ; do \ + echo "########################## $$f app" ; \ defaults -currentHost read org.jwz.xscreensaver."$$f" 2>&- ; \ done ; \ - for f in Apple2 Phosphor updater ; do \ - echo "########################## $$f" ; \ + for f in XScreenSaverUpdater ; do \ + echo "########################## $$f app" ; \ defaults read org.jwz.xscreensaver."$$f" 2>&- ; \ - done + f2="$$CN1.$$f.plist" ; \ + if [ -f "$$f2" ] ; then \ + cp "$$f2" "$$TMP" ; \ + defaults read "$$TMP" ; \ + fi ; \ + done ; \ + rm "$$TMP" reset_prefs:: @cd build/Debug ; \ - W1='defaults' ; \ - W2="$$W1 -currentHost write" ; \ - img='~/Pictures/Screensaver' ; \ + IMG='~/Pictures/Screensaver' ; \ + UUID=`/usr/sbin/system_profiler SPHardwareDataType | \ + sed -n 's/^ *Hardware UUID: *//p'` ; \ + DOM="org.jwz.xscreensaver" ; \ + LIB="$$HOME/Library/Preferences/ByHost/$$DOM" ; \ + CNT="$$HOME/Library/Containers" ; \ + CNT="$$CNT/com.apple.ScreenSaver.Engine.legacyScreenSaver" ; \ + CN1="$$CNT/Data/Library/Preferences/$$DOM" ; \ + CN2="$$CNT/Data/Library/Preferences/ByHost/$$DOM" ; \ + \ + function ddelete() { \ + name="$$1" ; \ + rm -f "$$HOME/Library/Preferences/$$DOM.$$name.plist" \ + "$$LIB.$$name.$$UUID.plist" \ + "$$CN1.$$name.plist" \ + "$$CN2.$$name.$$UUID.plist" ; \ + } ; \ + \ + function dwrite() { \ + name="$$1" ; \ + shift ; \ + F1="$$LIB.$$name.$$UUID.plist" ; \ + F2="$$CN2.$$name.$$UUID.plist" ; \ + if [ -f "$$F2" ]; then mv "$$F2" "$$F1" ; fi ; \ + defaults -currentHost write "$$DOM.$$name" "$$@" ; \ + cp -p "$$F1" "$$F2" ; \ + } ; \ + \ for f in *.saver ; do \ name=`echo "$$f" | sed 's/\..*//'` ; \ + if [ "$$name" = RandomXScreenSaver ]; then continue ; fi ; \ echo "########################## $$name" ; \ - domain="org.jwz.xscreensaver" ; \ - dd="$$domain.$$name" ; \ - $$W1 -currentHost delete "$$dd" 2>&- ; \ - $$W2 "$$dd" doFPS -bool true ; \ + ddelete $$name ; \ + dwrite $$name doFPS -bool true ; \ if [ -f $$f/Contents/Resources/xscreensaver-text ] ; then \ - $$W2 "$$dd" textMode url ; \ + dwrite $$name textMode url ; \ fi ; \ if [ -f $$f/Contents/Resources/xscreensaver-getimage-file ] ; then \ - $$W2 "$$dd" chooseRandomImages -bool true ; \ - $$W2 "$$dd" grabDesktopImages -bool false ; \ - $$W2 "$$dd" imageDirectory "$$img" ; \ - fi ; \ - if ( strings "$$f/Contents/MacOS/$$name" | \ - grep NSOpenGLContext >/dev/null ) ; then \ - $$W2 "$$dd" multiSample -bool true ; \ + dwrite $$name chooseRandomImages -bool true ; \ + dwrite $$name grabDesktopImages -bool false ; \ + dwrite $$name imageDirectory "$$IMG" ; \ fi ; \ done ; \ \ - $$W1 delete "$$domain.Apple2" 2>&- ; \ - $$W1 delete "$$domain.Phosphor" 2>&- ; \ - $$W1 delete "$$domain.updater" 2>&- ; \ - $$W1 write "$$domain.updater" SUScheduledCheckIntervalKey 86400; \ - \ - $$W2 "$$domain.BoxFit" grab -bool true ; \ - $$W2 "$$domain.FlipFlop" textured -bool true ; \ - $$W2 "$$domain.GLSlideshow" titles -bool true ; \ - $$W2 "$$domain.Photopile" titles -bool true ; \ - $$W2 "$$domain.SkyTentacles" mode cel ; \ - $$W2 "$$domain.Sonar" ping \ + dwrite "Apple2" mode basic ; \ + dwrite "BoxFit" grab -bool true ; \ + dwrite "FlipFlop" textured -bool true ; \ + dwrite "GLSlideshow" titles -bool true ; \ + dwrite "MapScroller" mapLevel 18 ; \ + dwrite "MapScroller" origin "37.7710,-122.4126"; \ + dwrite "Photopile" titles -bool true ; \ + dwrite "SkyTentacles" mode cel ; \ + dwrite "Sonar" ping \ '/etc/hosts,$$HOME/.ssh/known_hosts,$$HOME/.ssh/known_hosts2' ; \ - $$W2 "$$domain.XMatrix" matrixFont small ; \ - $$W2 "$$domain.XMatrix" textMode literal ; \ - $$W2 "$$domain.XMatrix" textLiteral "MONKEY BUTTER" ; \ - -# defaults -currentHost write org.jwz.xscreensaver.FontGlide debugMetrics -bool true -# defaults -currentHost write org.jwz.xscreensaver.StarWars debug -bool true -# defaults -currentHost write org.jwz.xscreensaver.StarWars textMode file -# defaults -currentHost write org.jwz.xscreensaver.StarWars textFile ~/src/xscreensaver/hacks/glx/zalgo.txt + dwrite "XMatrix" matrixFont small ; \ + dwrite "XMatrix" textMode literal ; \ + dwrite "XMatrix" textLiteral "MONKEY BUTTER" ; \ + \ + name="XScreenSaverUpdater" ; \ + echo "########################## $$name" ; \ + defaults delete "$$DOM.$$name" ; \ + defaults write "$$DOM.$$name" SUScheduledCheckInterval -string 86400 ;\ + cp -p "$$HOME/Library/Preferences/$$DOM.$$name.plist" \ + "$$CN1.$$name.plist" ; \ + + +# log stream --debug --pred 'process contains[cd] "saver"' diff --git a/OSX/PrefsReader.m b/OSX/PrefsReader.m index 8fbebffa..84c01f1c 100644 --- a/OSX/PrefsReader.m +++ b/OSX/PrefsReader.m @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright (c) 2006-2019 Jamie Zawinski +/* xscreensaver, Copyright © 2006-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -23,6 +23,7 @@ #import "PrefsReader.h" #import "Updater.h" #import "screenhackI.h" +#import "nslog.h" #ifndef HAVE_IPHONE @@ -34,9 +35,10 @@ routines directly, while presenting the same API as NSUserDefaults. We need this so that global prefs will go into the file - Library/Preferences/org.jwz.xscreensaver.updater.plist instead of into - Library/Preferences/ByHost/org.jwz.xscreensaver.Maze.XXXXX.plist - with the per-saver prefs. + Library/Preferences/org.jwz.xscreensaver.XScreenSaverUpdater.plist + instead of into + Library/Containers/com.apple.ScreenSaver.Engine.legacyScreenSaver/Data/\ + Library/Preferences/ByHost/org.jwz.xscreensaver.Maze.XXXXXXXXXXXX.plist The ScreenSaverDefaults class *almost* does this, but it always writes into the ByHost subdirectory, which means it's not readable by an app @@ -473,11 +475,11 @@ NSLog(@"warning: no preference \"%s\" [string]", name); return NULL; } - if (! [o isKindOfClass:[NSString class]]) { - // Yeah, we do this sometimes. It's fine. - // NSLog(@"asked for %s as a string, but it is a %@", name, [o class]); + + if ([o isKindOfClass:[NSNumber class]]) o = [(NSNumber *) o stringValue]; - } + else if ([o isKindOfClass:[NSDate class]]) + o = [(NSDate *) o description]; NSString *os = (NSString *) o; char *result = strdup ([os cStringUsingEncoding:NSUTF8StringEncoding]); diff --git a/OSX/README b/OSX/README index 6105cd0e..7bfd6255 100644 --- a/OSX/README +++ b/OSX/README @@ -35,9 +35,12 @@ Make sure everything works: - Set "Signing Certificate" to "Apple Development" for Debug and Release. - Change "Bundle Identifier" from "org.jwz" to "org.YOURNAME". - - There will probably be a build error related to Sonar and ICMP. - Click on the red error icon to see the error message and follow the - instructions there to fix it. + - If you get errors about curl being unable to download thumbnail images, + you need to add Xcode.app to "Full Disk Access" in System Settings. + + - There might be a build error related to Sonar and ICMP. Click on the red + error icon to see the error message and follow the instructions there to + fix it. To build and test a macOS saver: diff --git a/OSX/Randomizer.h b/OSX/Randomizer.h index d171c57b..190bae50 100644 --- a/OSX/Randomizer.h +++ b/OSX/Randomizer.h @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright (c) 2020 Jamie Zawinski +/* xscreensaver, Copyright © 2020 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that diff --git a/OSX/Randomizer.m b/OSX/Randomizer.m index 095ae301..100f87e0 100644 --- a/OSX/Randomizer.m +++ b/OSX/Randomizer.m @@ -17,8 +17,11 @@ #import "XScreenSaverView.h" #import "yarandom.h" #include +#import "nslog.h" #define VENTURA_KLUDGE +#define SONOMA_KLUDGE +#undef CATCH_SIGNALS # undef ya_rand_init # undef abort @@ -223,6 +226,8 @@ resource_key_for_name (NSString *s, BOOL screen_p, NSDictionary *screen_ids) NSArray *bundle_paths_enabled; BOOL first_time_p; int fade_duration; + Bool animating_p; + Bool preview_p; NSTextField *crash_label; enum { JUMPCUT, FADE, CROSSFADE } crossfade_mode; } @@ -234,6 +239,10 @@ static NSMutableArray *all_saver_views = NULL; - (id)initWithFrame:(NSRect)frame isPreview:(BOOL)p { + NSLog (@"%@: initWithFrame %gx%g+%g+%g, %d", [self blurb], + frame.size.width, frame.size.height, frame.origin.x, frame.origin.y, + p); + // On macOS 10.15, isPreview is always YES, so if the window is big, // assume it should be NO. Fixed in macOS 11.0. if (p && frame.size.width >= 640) @@ -247,11 +256,10 @@ static NSMutableArray *all_saver_views = NULL; ya_rand_init (0); - first_time_p = TRUE; - + preview_p = p; + first_time_p = TRUE; crossfade_mode = CROSSFADE; // Maybe make this a preference? - - fade_duration = 5; + fade_duration = 5; NSBundle *nsb = [NSBundle bundleForClass:[self class]]; NSAssert1 (nsb, @"no bundle for class %@", [self class]); @@ -309,9 +317,10 @@ static NSMutableArray *all_saver_views = NULL; crash_label.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable; [crash_label retain]; +#if 0 # ifndef __OPTIMIZE__ // Dump the entire resource database. - NSLog(@"defaults for %@", name); + NSLog (@"%@: defaults for %@", [self blurb], name); NSDictionary *d = [[prefs defaults] dictionaryRepresentation]; for (NSObject *key in [[d allKeys] sortedArrayUsingSelector:@selector(compare:)]) { @@ -320,6 +329,7 @@ static NSMutableArray *all_saver_views = NULL; } NSLog (@"---"); # endif +#endif #ifdef VENTURA_KLUDGE if (! p) { // isPreview @@ -336,6 +346,70 @@ static NSMutableArray *all_saver_views = NULL; } #endif // VENTURA_KLUDGE +# ifdef SONOMA_KLUDGE // Duplicated in XScreenSaverView.m + + /* Oct 2023, macOS 14.0: we get startAnimation on each screen, but + stopAnimation is never called, and our process (legacyScreenSaver) + never exits. This means that the screen saver just keeps running + forever in the background on an invisible window, burning CPU! + + That invisible window is both 'visible' and 'onActiveSpace', and has + no parentWindow, so its invisibility is not detectable. + + However, there is a "com.apple.screensaver.willstop" notification and + from that we can intuit that we should send ourselves stopAnimation. + + Except, stopAnimation() isn't great for a couple of reasons: + + First: after a few days, the legacyScreenSaver module might have all + 250+ screen saver bundles loaded. Aside from their memory usage and + static code, there is also an open file handle for each bundle, and + each resource in each bundle. + + Second: somehow, legacyScreenSaver is managing to send animateOneFrame + messages to savers that have already been stopped upon previous runs. + Maybe it is holding on to old, expired copies of Randomizer and + re-running those? So, screw it, let's just exit() instead. + + */ + if (!p) { + [[NSDistributedNotificationCenter defaultCenter] + addObserverForName: @"com.apple.screensaver.willstop" + object: nil + queue: nil + usingBlock:^(NSNotification *n) { + if ([self isAnimating]) { + NSLog (@"%@: received %@", [self blurb], [n name]); + [self stopAnimation]; + } else { + NSLog (@"%@: received %@ but already stopped", + [self blurb], [n name]); + } + NSLog (@"%@: exiting", [self blurb]); + [[NSApplication sharedApplication] terminate:self]; + }]; + + // Do it before sleeping as well. This is redundant, I think. + // On macOS 14.0 we *do* receive stopAnimation before suspend, but even + // if we didn't, it would just mean that savers would keep running for + // a fraction of a second between un-suspend and un-blank. + // + [[[NSWorkspace sharedWorkspace] notificationCenter] + addObserverForName: NSWorkspaceWillSleepNotification + object: nil + queue: nil + usingBlock:^(NSNotification *n) { + if ([self isAnimating]) { + NSLog (@"%@: received %@", [self blurb], [n name]); + [self stopAnimation]; + } else { + NSLog (@"%@: received %@ but already stopped", + [self blurb], [n name]); + } + }]; + } +# endif // SONOMA_KLUDGE + return self; } @@ -379,7 +453,7 @@ static NSMutableArray *all_saver_views = NULL; // only take the first one seen. $HOME overrides System. NSString *o = [seen objectForKey:[name lowercaseString]]; if (o) { - // NSLog(@"omitting %@ for %@", p, o); + // NSLog(@"%@: omitting %@ for %@", [self blurb], p, o); continue; } @@ -388,7 +462,7 @@ static NSMutableArray *all_saver_views = NULL; NSString *res = resource_key_for_name (name, FALSE, NULL); BOOL disabled = get_boolean (res, prefs); if (disabled) { - // NSLog(@"disabled: %@", name); + // NSLog(@"%@: disabled: %@", [self blurb], name); } else { [paths_enabled addObject: p]; } @@ -397,7 +471,7 @@ static NSMutableArray *all_saver_views = NULL; } if (count) - NSLog(@"found %d in %@", count, dir); + NSLog(@"%@: found %d in %@", [self blurb], count, dir); } [seen release]; @@ -417,12 +491,26 @@ static NSMutableArray *all_saver_views = NULL; BOOL enabled_p = !get_boolean (key, prefs); if (!enabled_p && verbose) { NSString *desc = [aa objectAtIndex:1]; - NSLog (@"savers disabled on screen %@ (%@)", key, desc); + NSLog (@"%@: savers disabled on %@", [self blurb], desc); } return enabled_p; } +- (NSString *) blurb { return [self blurb: self.window]; } + +- (NSString *) blurb: (NSWindow *)w +{ + NSString *s = @"Randomizer"; + if (@available (macOS 10.15, *)) { + NSString *n = (w && w.screen ? [w.screen localizedName] : nil); + if (n && n.length) + s = [NSString stringWithFormat: @"%@: %@", s, n]; + } + return s; +} + + - (ScreenSaverView *) loadSaverWithFrame:(NSRect)frame { Class sclass = 0; @@ -434,11 +522,11 @@ static NSMutableArray *all_saver_views = NULL; return nil; if ([self isPreview]) { - NSLog(@"loading built-in saver"); + NSLog(@"%@: loading built-in saver", [self blurb]); sclass = [RandomizerAttractMode class]; } else { if (! [bundle_paths_enabled count]) { - // NSLog(@"no savers available"); + // NSLog(@"@: no savers available", [self blurb]); [[NSException exceptionWithName: NSInternalInconsistencyException reason: @"no savers available" userInfo: nil] @@ -446,7 +534,7 @@ static NSMutableArray *all_saver_views = NULL; } else { path = [bundle_paths_enabled objectAtIndex: (random() % [bundle_paths_enabled count])]; - NSLog(@"loading saver %@", path); + NSLog(@"%@: loading saver %@", [self blurb], path); NSBundle *bundle = [NSBundle bundleWithPath:path]; if (bundle) sclass = [bundle principalClass]; @@ -454,7 +542,7 @@ static NSMutableArray *all_saver_views = NULL; } if (! sclass) { - //NSLog(@"no class in bundle: %@", path); + //NSLog(@"%@: no class in bundle: %@", [self blurb], path); [[NSException exceptionWithName: NSInternalInconsistencyException reason: [NSString stringWithFormat: @"no class in bundle: %@", path] @@ -493,7 +581,7 @@ static NSMutableArray *all_saver_views = NULL; } if (! saver2) { - //NSLog(@"unable to instantiate: %@", path); + //NSLog(@"%@: unable to instantiate: %@", [self blurb], path); [[NSException exceptionWithName: NSInternalInconsistencyException reason: [NSString stringWithFormat: @"unable to instantiate: %@", path] @@ -506,9 +594,11 @@ static NSMutableArray *all_saver_views = NULL; [saver2 retain]; [saver2 setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable]; +# ifdef CATCH_SIGNALS // XScreenSaverView catches signals in initWithFrame (to log a backtrace) // so we have to catch our signals after that. [self initSignalHandlers]; +# endif return saver2; } @@ -517,7 +607,8 @@ static NSMutableArray *all_saver_views = NULL; - (void) handleException: (NSException *)e in:(NSObject *)o { // This will catch calls to abort and exit (via jwxyz_abort) but not SEGV. - NSLog (@"Caught exception %@: %@", + NSLog (@"%@: Caught exception %@: %@", + [self blurb], (o ? [o className] : @""), [e reason]); [crash_label setStringValue: @@ -533,46 +624,58 @@ static NSMutableArray *all_saver_views = NULL; } -// Throwing an exception from a signal handler is a terrible idea, but my -// thinking was, "it might work, and what's the worst that can happen? -// We crash anyway?" Well, it turns out, the exception is caught, the -// error text shows up on the screen, and after that we're hung and you -// can't unlock the screen. So... that's worse. -// -// But let's try re-invoking the current process on signal, and just -// restarting legacyScreenSaver or whatever from scratch. Maybe that -// will work? Nope. The re-exec works under SaverTester, but when -// legacyScreenSaver is re-exec'd with the same args, the savers do -// not re-launch. -// -#if 1 +#ifdef CATCH_SIGNALS static int saved_argc = 0; static char **saved_argv, *saved_execpath; - static void sighandler (int sig) { signal (sig, SIG_DFL); - const char *s = "randomizer caught signal\n"; - write (fileno (stderr), s, strlen(s)); // no fprintf in signal handler + char s[100]; // no fprintf in signal handler + strcpy (s, "Randomizer: signal "); + strcat (s, sys_signame[sig]); + strcat (s, "\n"); + write (fileno (stderr), s, strlen(s)); # if 0 + // Throwing an exception from a signal handler is a terrible idea, but my + // thinking was, "it might work, and what's the worst that can happen? + // We crash anyway?" Well, it turns out, the exception is caught, the + // error text shows up on the screen, and after that we're hung and you + // can't unlock the screen. So... that's worse. + // + // macOS 14.0 update: throwing the exception no longer hangs, but nor + // does it make the error message show up. + // [[NSException exceptionWithName: NSInternalInconsistencyException reason: [NSString stringWithFormat: @"Signal %s", sys_signame[sig]] userInfo: nil] raise]; -# else +# elif 0 + // Ok, let's try re-invoking the current process on signal, and just + // restarting legacyScreenSaver or whatever from scratch. Maybe that + // will work? Nope. The re-exec works under SaverTester, but when + // legacyScreenSaver is re-exec'd with the same args, the savers do + // not re-launch. + // if (saved_argc) { - NSLog (@"randomizer: signal: re-executing %s", saved_execpath); + NSLog (@"randomizer: signal %s: re-executing %s", + sys_signame[sig], saved_execpath); execvp (saved_execpath, saved_argv); // Somehow after the exec, SIGTERM stops working. So that's great. -# undef exit +# undef exit exit (1); } +# elif 0 + // Nope, this doesn't work either. + system ("open -a ScreenSaverEngine"); +# else + // Even this doesn't work. + NSLog (@"%s", s); # endif } @@ -584,9 +687,10 @@ catch_signal (int sig, void (*handler) (int)) sigemptyset (&a.sa_mask); a.sa_flags = SA_NODEFER; -# if 0 // This isn't working +# if 0 + // This should allow us to handle a signal on the main stack instead of + // the signal stack, but it doesn't work. a.sa_handler = SIG_IGN; - dispatch_source_t src = dispatch_source_create (DISPATCH_SOURCE_TYPE_SIGNAL, sig, 0, dispatch_get_global_queue (0, 0)); @@ -643,17 +747,15 @@ catch_signal (int sig, void (*handler) (int)) //catch_signal (SIGKILL, sighandler); // -9 untrappable catch_signal (SIGXCPU, sighandler); catch_signal (SIGXFSZ, sighandler); - NSLog (@"installed signal handlers for %s", saved_execpath); + NSLog (@"%@: installed signal handlers for %s", [self blurb], saved_execpath); return; ERR: saved_argc = 0; - NSLog (@"randomizer: error getting argv"); + NSLog (@"%@: error getting argv", [self blurb]); } -#else -- (void) initSignalHandlers {} -#endif +#endif // CATCH_SIGNALS - (void)unloadSaver:(BOOL)firstp @@ -662,7 +764,7 @@ catch_signal (int sig, void (*handler) (int)) cycle_timer = 0; ScreenSaverView *ss = (firstp ? saver1 : saver2); if (!ss) return; - NSLog(@"unloading saver %@", [ss className]); + NSLog(@"%@: unloading saver %@", [self blurb], [ss className]); @try { if ([ss isAnimating]) [ss stopAnimation]; } @catch (NSException *e) { [self handleException:e in:ss]; } @@ -697,12 +799,18 @@ catch_signal (int sig, void (*handler) (int)) @catch (NSException *e) { [self handleException:e in:nil]; } if (saver1) { - [self addSubview: saver1]; - saver1.alphaValue = 1; - [self.window makeFirstResponder: saver1]; + @try { + [self addSubview: saver1]; // Sometimes gets "invalid GL context" + saver1.alphaValue = 1; + [self.window makeFirstResponder: saver1]; + } + @catch (NSException *e) { + [self handleException:e in:saver1]; + [self unloadSaver: TRUE]; + } } - [self launchCycleTimer]; + [self launchCycleTimer]; break; @@ -735,11 +843,20 @@ catch_signal (int sig, void (*handler) (int)) } if (saver1) - NSLog(@"crossfade %@ to %@", [saver1 className], [saver2 className]); + NSLog(@"%@: crossfade %@ to %@", [self blurb], + [saver1 className], [saver2 className]); else - NSLog(@"fade in %@", [saver2 className]); + NSLog(@"%@: fade in %@", [self blurb], [saver2 className]); - [self addSubview: saver2]; + @try { + [self addSubview: saver2]; // Sometimes gets "invalid GL context" + } + @catch (NSException *e) { + [self handleException:e in:saver2]; + [self unloadSaver: FALSE]; + return; + } + saver2.alphaValue = 0; @try { [saver2 startAnimation]; } @@ -809,6 +926,14 @@ catch_signal (int sig, void (*handler) (int)) - (void)launchCycleTimer { + if (cycle_timer) [cycle_timer invalidate]; + cycle_timer = 0; + + if (! [self isAnimating]) { + NSLog (@"%@: not animating, not launching cycle timer", [self blurb]); + return; + } + // Parse the cycle time out of whatever garbage is in preferences. // NSObject *o = [[prefs defaults] objectForKey: @CYCLE_TIME]; @@ -847,14 +972,13 @@ catch_signal (int sig, void (*handler) (int)) if (t2 > max) t2 = max; double off = (enabled_screens ? t2 * which_enabled / enabled_screens : 0); interval += off; - if (off) NSLog(@"screen %d cycle offset: %d sec", which_screen, (int) off); + if (off) + NSLog (@"%@: screen %d cycle offset: %d sec", + [self blurb], which_screen, (int) off); } - if (cycle_timer) [cycle_timer invalidate]; - cycle_timer = 0; - if (! [self isPreview]) { - NSLog(@"cycle_timer %.1f", interval); + NSLog (@"%@: cycle_timer %.1f", [self blurb], interval); cycle_timer = [NSTimer scheduledTimerWithTimeInterval: interval target: self @@ -867,11 +991,18 @@ catch_signal (int sig, void (*handler) (int)) - (void)cycleSaver { - NSLog(@"cycle timer"); if (cycle_timer) [cycle_timer invalidate]; cycle_timer = 0; + [crash_label removeFromSuperview]; [crash_label setStringValue:@""]; + + if (! [self isAnimating]) { + NSLog (@"%@: not animating, not cycling", [self blurb]); + return; + } + + NSLog(@"%@: cycle timer", [self blurb]); [self fadeSaverOut]; } @@ -895,6 +1026,16 @@ catch_signal (int sig, void (*handler) (int)) - (void)startAnimation { + if ([self isAnimating]) { + NSLog (@"%@: startAnimation called while animating", [self blurb]); + return; + // [self stopAnimation]; + } else { + NSLog (@"%@: startAnimation", [self blurb]); + } + + animating_p = TRUE; + // Do the initial load of the saver here rather than in initWithFrame // so that we have self.window and check whether this screen is disabled. // @@ -923,6 +1064,13 @@ catch_signal (int sig, void (*handler) (int)) - (void)stopAnimation { + if ([self isAnimating]) + NSLog (@"%@: stopAnimation", [self blurb]); + else + NSLog (@"%@: stopAnimation but already stopped", [self blurb]); + + animating_p = FALSE; + if (cycle_timer) [cycle_timer invalidate]; cycle_timer = 0; @@ -946,29 +1094,21 @@ catch_signal (int sig, void (*handler) (int)) } -- (BOOL)isAnimating -{ - BOOL a = FALSE; - if (saver1) a = [saver1 isAnimating]; - else if (saver2) a = [saver2 isAnimating]; - return a; -} - - -- (BOOL)isPreview -{ - BOOL p = [super isPreview]; - if (saver1) p = [saver1 isPreview]; - else if (saver2) p = [saver2 isPreview]; - return p; -} +// Originally this just returned whether either saver1 or saver2 was +// animating, but since, as of macOS 14.0, legacyScreenSaver never exits, +// we need to track whether we *should* be animating instead, or there +// can be a race with crossfades that results in savers running when they +// should be dead. +// +- (BOOL) isAnimating { return animating_p; } +- (BOOL) isPreview { return preview_p; } - (void)animateOneFrame { #if 0 if (! (random() % 2000)) { - NSLog(@"randomizer: BOOM ####"); + NSLog(@"%@: BOOM ####", [self blurb]); // int x = 123; char segv = * ((char *)x); #undef abort abort(); @@ -1004,12 +1144,13 @@ catch_signal (int sig, void (*handler) (int)) June 2023, macOS 13.4: On a system with 3 screens, initWithFrame is called on every screen, but viewDidMoveToWindow is called only on screen 3 -- but - that screen's view has the frame of screen 0! So we get only one saver + that screen's view has the frame of screen 1! So we get only one saver running, and it is the wrong size. We detect and correct this insanity with the VENTURA_KLUDGE stuff. */ - (void) viewDidMoveToWindow { + NSLog (@"%@: viewDidMoveToWindow", [self blurb]); if (self.window && self.window.frame.size.width > 0 && self.window.frame.size.height > 0) @@ -1018,6 +1159,7 @@ catch_signal (int sig, void (*handler) (int)) - (void) viewWillMoveToWindow:(NSWindow *)window { + NSLog (@"%@: viewWillMoveToWindow", [self blurb: window]); if (window == nil) [self stopAnimation]; } @@ -1052,8 +1194,8 @@ catch_signal (int sig, void (*handler) (int)) } if (!v) { - NSLog (@"%s: screen %d %gx%g+%g+%g had no saver view", - tag, i, + NSLog (@"%@: %s: screen %d %gx%g+%g+%g had no saver view", + [self blurb], tag, i, w.frame.size.width, w.frame.size.height, w.frame.origin.x, w.frame.origin.y); } else { @@ -1064,17 +1206,17 @@ catch_signal (int sig, void (*handler) (int)) v.frame.size.height == target.size.height && v.frame.origin.x == target.origin.x && v.frame.origin.y == target.origin.y) { - NSLog (@"%s: screen %d %gx%g+%g+%g had correct view frame" + NSLog (@"%@: %s: screen %d %gx%g+%g+%g had correct view frame" " %gx%g+%g+%g", - tag, i, + [self blurb], tag, i, w.frame.size.width, w.frame.size.height, w.frame.origin.x, w.frame.origin.y, target.size.width, target.size.height, target.origin.x, target.origin.y); } else { - NSLog (@"%s: screen %d %gx%g+%g+%g had view frame" + NSLog (@"%@: %s: screen %d %gx%g+%g+%g had view frame" " %gx%g+%g+%g instead of %gx%g+%g+%g", - tag, i, + [self blurb], tag, i, w.frame.size.width, w.frame.size.height, w.frame.origin.x, w.frame.origin.y, v.frame.size.width, v.frame.size.height, @@ -1106,8 +1248,8 @@ catch_signal (int sig, void (*handler) (int)) for (NSView *v1 in all_saver_views) { if (!v1.window) { v = v1; - NSLog (@"%s: screen %d %gx%g+%g+%g: attaching saver view", - tag, i, + NSLog (@"%@: %s: screen %d %gx%g+%g+%g: attaching saver view", + [self blurb], tag, i, w.frame.size.width, w.frame.size.height, w.frame.origin.x, w.frame.origin.y); attached_p = TRUE; @@ -1128,9 +1270,9 @@ catch_signal (int sig, void (*handler) (int)) v.frame.origin.x != target.origin.x || v.frame.origin.y != target.origin.y) { if (!attached_p) - NSLog (@"%s: screen %d %gx%g+%g+%g: correcting frame: " + NSLog (@"%@: %s: screen %d %gx%g+%g+%g: correcting frame: " "%gx%g+%g+%g => %gx%g+%g+%g", - tag, i, + [self blurb], tag, i, w.frame.size.width, w.frame.size.height, w.frame.origin.x, w.frame.origin.y, v.frame.size.width, v.frame.size.height, @@ -1168,6 +1310,7 @@ catch_signal (int sig, void (*handler) (int)) - (void) dealloc { + NSLog (@"%@: dealloc", [self blurb]); [self unloadSaver: TRUE]; [self unloadSaver: FALSE]; [crash_label release]; diff --git a/OSX/Randomizer.plist b/OSX/Randomizer.plist index fe88e0e2..5ad6c76f 100644 --- a/OSX/Randomizer.plist +++ b/OSX/Randomizer.plist @@ -17,7 +17,7 @@ CFBundleSignature ???? CFBundleVersion - 6.07 + 6.08 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSPrincipalClass @@ -25,12 +25,12 @@ LSApplicationCategoryType public.app-category.entertainment CFBundleShortVersionString - 6.07 + 6.08 CFBundleLongVersionString - 6.07 + 6.08 CFBundleGetInfoString - 6.07 + 6.08 NSHumanReadableCopyright - 6.07 + 6.08 diff --git a/OSX/SaverRunner.m b/OSX/SaverRunner.m index 30f0b7b5..79e6afaf 100644 --- a/OSX/SaverRunner.m +++ b/OSX/SaverRunner.m @@ -34,6 +34,7 @@ #import "SaverListController.h" #import "XScreenSaverGLView.h" #import "yarandom.h" +#import "nslog.h" #ifdef HAVE_IPHONE @@ -469,7 +470,6 @@ [self aboutOff:TRUE]; // It does goofy things if we rotate while it's up # if 1 - NSLog(@"## orient"); [CATransaction commit]; [_saverView orientationChanged]; return; @@ -479,17 +479,12 @@ [coordinator animateAlongsideTransition:^ (id context) { // This executes repeatedly during the rotation. -NSLog(@"## animate %@", context); } completion:^(id context) { -NSLog(@"## completion %@", context); // This executes once when the rotation has finished. [CATransaction commit]; [_saverView orientationChanged]; }]; // No code goes here, as it would execute before the above completes. - - NSLog(@"## queued = %d", queued); - } /* Not called @@ -1131,9 +1126,12 @@ relabel_menus (NSObject *v, NSString *old_str, NSString *new_str) stringByDeletingLastPathComponent]]; // Finally, look in standard MacOS screensaver directories. -// [dirs addObject: @"~/Library/Screen Savers"]; -// [dirs addObject: @"/Library/Screen Savers"]; -// [dirs addObject: @"/System/Library/Screen Savers"]; +// [dirs addObject: [@"~/Library/Screen Savers" +// stringByExpandingTildeInPath]]; +// [dirs addObject: [@"/Library/Screen Savers" +// stringByExpandingTildeInPath]]; +// [dirs addObject: [@"/System/Library/Screen Savers" +// stringByExpandingTildeInPath]]; # else // HAVE_IPHONE @@ -1605,7 +1603,7 @@ FAIL: // If there's only one saver, run that. if (!forced && [saverNames count] == 1) - forced = [[saverNames allValues] objectAtIndex:0]; + forced = [[saverNames allKeys] objectAtIndex:0]; # ifdef HAVE_IPHONE NSString *prev = [prefs stringForKey:@"selectedSaverName"]; diff --git a/OSX/SaverRunner.plist b/OSX/SaverRunner.plist index 64d551ae..8df2256d 100644 --- a/OSX/SaverRunner.plist +++ b/OSX/SaverRunner.plist @@ -17,7 +17,7 @@ CFBundleSignature ???? CFBundleVersion - 6.07 + 6.08 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSPrincipalClass @@ -25,13 +25,13 @@ LSApplicationCategoryType public.app-category.entertainment CFBundleShortVersionString - 6.07 + 6.08 CFBundleLongVersionString - 6.07 + 6.08 CFBundleGetInfoString - 6.07 + 6.08 NSHumanReadableCopyright - 6.07 + 6.08 NSMainNibFile SaverRunner CFBundleIconFile diff --git a/OSX/Sparkle.framework/Autoupdate b/OSX/Sparkle.framework/Autoupdate new file mode 120000 index 00000000..1a4fc02c --- /dev/null +++ b/OSX/Sparkle.framework/Autoupdate @@ -0,0 +1 @@ +Versions/Current/Autoupdate \ No newline at end of file diff --git a/OSX/Sparkle.framework/Updater.app b/OSX/Sparkle.framework/Updater.app new file mode 120000 index 00000000..18f32235 --- /dev/null +++ b/OSX/Sparkle.framework/Updater.app @@ -0,0 +1 @@ +Versions/Current/Updater.app \ No newline at end of file diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h deleted file mode 100644 index 41cd5743..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h +++ /dev/null @@ -1,43 +0,0 @@ -// -// SPUDownloadData.h -// Sparkle -// -// Created by Mayur Pawashe on 8/10/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif - -#import "SUExport.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - * A class for containing downloaded data along with some information about it. - */ -SU_EXPORT @interface SPUDownloadData : NSObject - -- (instancetype)initWithData:(NSData *)data textEncodingName:(NSString * _Nullable)textEncodingName MIMEType:(NSString * _Nullable)MIMEType; - -/*! - * The raw data that was downloaded. - */ -@property (nonatomic, readonly) NSData *data; - -/*! - * The IANA charset encoding name if available. Eg: "utf-8" - */ -@property (nonatomic, readonly, nullable, copy) NSString *textEncodingName; - -/*! - * The MIME type if available. Eg: "text/plain" - */ -@property (nonatomic, readonly, nullable, copy) NSString *MIMEType; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloader.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloader.h deleted file mode 100644 index 5eee9bd5..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloader.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// SPUDownloader.h -// Downloader -// -// Created by Mayur Pawashe on 4/1/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SPUDownloaderProtocol.h" - -@protocol SPUDownloaderDelegate; - -// This object implements the protocol which we have defined. It provides the actual behavior for the service. It is 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection. -@interface SPUDownloader : NSObject - -// Due to XPC remote object reasons, this delegate is strongly referenced -// Invoke cleanup when done with this instance -- (instancetype)initWithDelegate:(id )delegate; - -@end diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h deleted file mode 100644 index 76e7e750..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h +++ /dev/null @@ -1,38 +0,0 @@ -// -// SPUDownloaderDelegate.h -// Sparkle -// -// Created by Mayur Pawashe on 4/1/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif - -NS_ASSUME_NONNULL_BEGIN - -@class SPUDownloadData; - -@protocol SPUDownloaderDelegate - -// This is only invoked for persistent downloads -- (void)downloaderDidSetDestinationName:(NSString *)destinationName temporaryDirectory:(NSString *)temporaryDirectory; - -// Under rare cases, this may be called more than once, in which case the current progress should be reset back to 0 -// This is only invoked for persistent downloads -- (void)downloaderDidReceiveExpectedContentLength:(int64_t)expectedContentLength; - -// This is only invoked for persistent downloads -- (void)downloaderDidReceiveDataOfLength:(uint64_t)length; - -// downloadData is nil if this is a persisent download, otherwise it's non-nil if it's a temporary download -- (void)downloaderDidFinishWithTemporaryDownloadData:(SPUDownloadData * _Nullable)downloadData; - -- (void)downloaderDidFailWithError:(NSError *)error; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h deleted file mode 100644 index ebe477fe..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h +++ /dev/null @@ -1,34 +0,0 @@ -// -// SPUDownloaderProtocol.h -// PersistentDownloader -// -// Created by Mayur Pawashe on 4/1/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif - -NS_ASSUME_NONNULL_BEGIN - -@class SPUURLRequest; - -// The protocol that this service will vend as its API. This header file will also need to be visible to the process hosting the service. -@protocol SPUDownloaderProtocol - -- (void)startPersistentDownloadWithRequest:(SPUURLRequest *)request bundleIdentifier:(NSString *)bundleIdentifier desiredFilename:(NSString *)desiredFilename; - -- (void)startTemporaryDownloadWithRequest:(SPUURLRequest *)request; - -- (void)downloadDidFinish; - -- (void)cleanup; - -- (void)cancel; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h deleted file mode 100644 index 4bde75aa..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// SPUDownloaderSession.h -// Sparkle -// -// Created by Deadpikle on 12/20/17. -// Copyright © 2017 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SPUDownloader.h" -#import "SPUDownloaderProtocol.h" - -NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0) -@interface SPUDownloaderSession : SPUDownloader - -@end diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h b/OSX/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h deleted file mode 100644 index 69496147..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// SPUURLRequest.h -// Sparkle -// -// Created by Mayur Pawashe on 5/19/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif - -NS_ASSUME_NONNULL_BEGIN - -// A class that wraps NSURLRequest and implements NSSecureCoding -// This class exists because NSURLRequest did not support NSSecureCoding in macOS 10.8 -// I have not verified if NSURLRequest in 10.9 implements NSSecureCoding or not -@interface SPUURLRequest : NSObject - -// Creates a new URL request -// Only these properties are currently tracked: -// * URL -// * Cache policy -// * Timeout interval -// * HTTP header fields -// * networkServiceType -+ (instancetype)URLRequestWithRequest:(NSURLRequest *)request; - -@property (nonatomic, readonly) NSURLRequest *request; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUAppcast.h b/OSX/Sparkle.framework/Versions/A/Headers/SUAppcast.h deleted file mode 100644 index d807b938..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUAppcast.h +++ /dev/null @@ -1,31 +0,0 @@ -// -// SUAppcast.h -// Sparkle -// -// Created by Andy Matuschak on 3/12/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#ifndef SUAPPCAST_H -#define SUAPPCAST_H - -#import -#import "SUExport.h" - -NS_ASSUME_NONNULL_BEGIN - -@class SUAppcastItem; -SU_EXPORT @interface SUAppcast : NSObject - -@property (copy, nullable) NSString *userAgentString; -@property (copy, nullable) NSDictionary *httpHeaders; - -- (void)fetchAppcastFromURL:(NSURL *)url inBackground:(BOOL)bg completionBlock:(void (^)(NSError *_Nullable))err; -- (SUAppcast *)copyWithoutDeltaUpdates; - -@property (readonly, copy, nullable) NSArray *items; -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/OSX/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h deleted file mode 100644 index 77bcb1f8..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h +++ /dev/null @@ -1,58 +0,0 @@ -// -// SUAppcastItem.h -// Sparkle -// -// Created by Andy Matuschak on 3/12/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#ifndef SUAPPCASTITEM_H -#define SUAPPCASTITEM_H - -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -#else -#import -#endif -#import "SUExport.h" -@class SUSignatures; - -SU_EXPORT @interface SUAppcastItem : NSObject -@property (copy, readonly) NSString *title; -@property (copy, readonly) NSString *dateString; -@property (copy, readonly) NSDate *date; -@property (copy, readonly) NSString *itemDescription; -@property (strong, readonly) NSURL *releaseNotesURL; -@property (strong, readonly) SUSignatures *signatures; -@property (copy, readonly) NSString *minimumSystemVersion; -@property (copy, readonly) NSString *maximumSystemVersion; -@property (strong, readonly) NSURL *fileURL; -@property (nonatomic, readonly) uint64_t contentLength; -@property (copy, readonly) NSString *versionString; -@property (copy, readonly) NSString *osString; -@property (copy, readonly) NSString *displayVersionString; -@property (copy, readonly) NSDictionary *deltaUpdates; -@property (strong, readonly) NSURL *infoURL; -@property (copy, readonly) NSNumber* phasedRolloutInterval; -@property (copy, readonly) NSString *minimumAutoupdateVersion; - -// Initializes with data from a dictionary provided by the RSS class. -- (instancetype)initWithDictionary:(NSDictionary *)dict; -- (instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString **)error; - -@property (getter=isDeltaUpdate, readonly) BOOL deltaUpdate; -@property (getter=isCriticalUpdate, readonly) BOOL criticalUpdate; -@property (getter=isMacOsUpdate, readonly) BOOL macOsUpdate; -@property (getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate; - -// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. -@property (readonly, copy) NSDictionary *propertiesDictionary; - -- (NSURL *)infoURL; - -@end - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h b/OSX/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h deleted file mode 100644 index 3756a378..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// SUCodeSigningVerifier.h -// Sparkle -// -// Created by Andy Matuschak on 7/5/12. -// -// - -#ifndef SUCODESIGNINGVERIFIER_H -#define SUCODESIGNINGVERIFIER_H - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SUExport.h" - -SU_EXPORT @interface SUCodeSigningVerifier : NSObject -+ (BOOL)codeSignatureAtBundleURL:(NSURL *)oldBundlePath matchesSignatureAtBundleURL:(NSURL *)newBundlePath error:(NSError **)error; -+ (BOOL)codeSignatureIsValidAtBundleURL:(NSURL *)bundlePath error:(NSError **)error; -+ (BOOL)bundleAtURLIsCodeSigned:(NSURL *)bundlePath; -+ (NSDictionary *)codeSignatureInfoAtBundleURL:(NSURL *)bundlePath; -@end - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUErrors.h b/OSX/Sparkle.framework/Versions/A/Headers/SUErrors.h deleted file mode 100644 index 4d00f845..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUErrors.h +++ /dev/null @@ -1,58 +0,0 @@ -// -// SUErrors.h -// Sparkle -// -// Created by C.W. Betts on 10/13/14. -// Copyright (c) 2014 Sparkle Project. All rights reserved. -// - -#ifndef SUERRORS_H -#define SUERRORS_H - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SUExport.h" - -/** - * Error domain used by Sparkle - */ -SU_EXPORT extern NSString *const SUSparkleErrorDomain; - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wc++98-compat" -typedef NS_ENUM(OSStatus, SUError) { - // Appcast phase errors. - SUAppcastParseError = 1000, - SUNoUpdateError = 1001, - SUAppcastError = 1002, - SURunningFromDiskImageError = 1003, - SURunningTranslocated = 1004, - SUWebKitTerminationError = 1005, - - // Download phase errors. - SUTemporaryDirectoryError = 2000, - SUDownloadError = 2001, - - // Extraction phase errors. - SUUnarchivingError = 3000, - SUSignatureError = 3001, - - // Installation phase errors. - SUFileCopyFailure = 4000, - SUAuthenticationFailure = 4001, - SUMissingUpdateError = 4002, - SUMissingInstallerToolError = 4003, - SURelaunchError = 4004, - SUInstallationError = 4005, - SUDowngradeError = 4006, - SUInstallationCancelledError = 4007, - - // System phase errors - SUSystemPowerOffError = 5000 -}; -#pragma clang diagnostic pop - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUExport.h b/OSX/Sparkle.framework/Versions/A/Headers/SUExport.h deleted file mode 100644 index 3e3f8a16..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUExport.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// SUExport.h -// Sparkle -// -// Created by Jake Petroules on 2014-08-23. -// Copyright (c) 2014 Sparkle Project. All rights reserved. -// - -#ifndef SUEXPORT_H -#define SUEXPORT_H - -#ifdef BUILDING_SPARKLE -#define SU_EXPORT __attribute__((visibility("default"))) -#else -#define SU_EXPORT -#endif - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h b/OSX/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h deleted file mode 100644 index ed11921a..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h +++ /dev/null @@ -1,52 +0,0 @@ -// -// SUStandardVersionComparator.h -// Sparkle -// -// Created by Andy Matuschak on 12/21/07. -// Copyright 2007 Andy Matuschak. All rights reserved. -// - -#ifndef SUSTANDARDVERSIONCOMPARATOR_H -#define SUSTANDARDVERSIONCOMPARATOR_H - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SUExport.h" -#import "SUVersionComparisonProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - Sparkle's default version comparator. - - This comparator is adapted from MacPAD, by Kevin Ballard. - It's "dumb" in that it does essentially string comparison, - in components split by character type. -*/ -SU_EXPORT @interface SUStandardVersionComparator : NSObject - -/*! - Initializes a new instance of the standard version comparator. - */ -- (instancetype)init; - -/*! - Returns a singleton instance of the comparator. - - It is usually preferred to alloc/init new a comparator instead. -*/ -+ (SUStandardVersionComparator *)defaultComparator; - -/*! - Compares version strings through textual analysis. - - See the implementation for more details. -*/ -- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; -@end - -NS_ASSUME_NONNULL_END -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUUpdater.h b/OSX/Sparkle.framework/Versions/A/Headers/SUUpdater.h deleted file mode 100644 index 45cd984d..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUUpdater.h +++ /dev/null @@ -1,233 +0,0 @@ -// -// SUUpdater.h -// Sparkle -// -// Created by Andy Matuschak on 1/4/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#ifndef SUUPDATER_H -#define SUUPDATER_H - -#if __has_feature(modules) -@import Cocoa; -#else -#import -#endif -#import "SUExport.h" -#import "SUVersionComparisonProtocol.h" -#import "SUVersionDisplayProtocol.h" - -@class SUAppcastItem, SUAppcast; - -@protocol SUUpdaterDelegate; - -/*! - The main API in Sparkle for controlling the update mechanism. - - This class is used to configure the update paramters as well as manually - and automatically schedule and control checks for updates. - */ -SU_EXPORT @interface SUUpdater : NSObject - -@property (unsafe_unretained) IBOutlet id delegate; - -/*! - The shared updater for the main bundle. - - This is equivalent to passing [NSBundle mainBundle] to SUUpdater::updaterForBundle: - */ -+ (SUUpdater *)sharedUpdater; - -/*! - The shared updater for a specified bundle. - - If an updater has already been initialized for the provided bundle, that shared instance will be returned. - */ -+ (SUUpdater *)updaterForBundle:(NSBundle *)bundle; - -/*! - Designated initializer for SUUpdater. - - If an updater has already been initialized for the provided bundle, that shared instance will be returned. - */ -- (instancetype)initForBundle:(NSBundle *)bundle; - -/*! - Explicitly checks for updates and displays a progress dialog while doing so. - - This method is meant for a main menu item. - Connect any menu item to this action in Interface Builder, - and Sparkle will check for updates and report back its findings verbosely - when it is invoked. - - This will find updates that the user has opted into skipping. - */ -- (IBAction)checkForUpdates:(id)sender; - -/*! - The menu item validation used for the -checkForUpdates: action - */ -- (BOOL)validateMenuItem:(NSMenuItem *)menuItem; - -/*! - Checks for updates, but does not display any UI unless an update is found. - - This is meant for programmatically initating a check for updates. That is, - it will display no UI unless it actually finds an update, in which case it - proceeds as usual. - - If automatic downloading of updates it turned on and allowed, however, - this will invoke that behavior, and if an update is found, it will be downloaded - in the background silently and will be prepped for installation. - - This will not find updates that the user has opted into skipping. - */ -- (void)checkForUpdatesInBackground; - -/*! - A property indicating whether or not to check for updates automatically. - - Setting this property will persist in the host bundle's user defaults. - The update schedule cycle will be reset in a short delay after the property's new value is set. - This is to allow reverting this property without kicking off a schedule change immediately - */ -@property BOOL automaticallyChecksForUpdates; - -/*! - A property indicating whether or not updates can be automatically downloaded in the background. - - Note that automatic downloading of updates can be disallowed by the developer - or by the user's system if silent updates cannot be done (eg: if they require authentication). - In this case, -automaticallyDownloadsUpdates will return NO regardless of how this property is set. - - Setting this property will persist in the host bundle's user defaults. - */ -@property BOOL automaticallyDownloadsUpdates; - -/*! - A property indicating the current automatic update check interval. - - Setting this property will persist in the host bundle's user defaults. - The update schedule cycle will be reset in a short delay after the property's new value is set. - This is to allow reverting this property without kicking off a schedule change immediately - */ -@property NSTimeInterval updateCheckInterval; - -/*! - Begins a "probing" check for updates which will not actually offer to - update to that version. - - However, the delegate methods - SUUpdaterDelegate::updater:didFindValidUpdate: and - SUUpdaterDelegate::updaterDidNotFindUpdate: will be called, - so you can use that information in your UI. - - Updates that have been skipped by the user will not be found. - */ -- (void)checkForUpdateInformation; - -/*! - The URL of the appcast used to download update information. - - Setting this property will persist in the host bundle's user defaults. - If you don't want persistence, you may want to consider instead implementing - SUUpdaterDelegate::feedURLStringForUpdater: or SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: - - This property must be called on the main thread. - */ -@property (copy) NSURL *feedURL; - -/*! - The host bundle that is being updated. - */ -@property (readonly, strong) NSBundle *hostBundle; - -/*! - The bundle this class (SUUpdater) is loaded into. - */ -@property (strong, readonly) NSBundle *sparkleBundle; - -/*! - The user agent used when checking for and downloading updates. - - The default implementation can be overrided. - */ -@property (nonatomic, copy) NSString *userAgentString; - -/*! - The HTTP headers used when checking for and downloading updates. - - The keys of this dictionary are HTTP header fields (NSString) and values are corresponding values (NSString) - */ -@property (copy) NSDictionary *httpHeaders; - -/*! - A property indicating whether or not the user's system profile information is sent when checking for updates. - - Setting this property will persist in the host bundle's user defaults. - */ -@property BOOL sendsSystemProfile; - -/*! - A property indicating the decryption password used for extracting updates shipped as Apple Disk Images (dmg) - */ -@property (nonatomic, copy) NSString *decryptionPassword; - -/*! - This function ignores normal update schedule, ignores user preferences, - and interrupts users with an unwanted immediate app update. - - WARNING: this function should not be used in regular apps. This function - is a user-unfriendly hack only for very special cases, like unstable - rapidly-changing beta builds that would not run correctly if they were - even one day out of date. - - Instead of this function you should set `SUAutomaticallyUpdate` to `YES`, - which will gracefully install updates when the app quits. - - For UI-less/daemon apps that aren't usually quit, instead of this function, - you can use the delegate method - SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationInvocation: - or - SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationBlock: - to immediately start installation when an update was found. - - A progress dialog is shown but the user will never be prompted to read the - release notes. - - This function will cause update to be downloaded twice if automatic updates are - enabled. - - You may want to respond to the userDidCancelDownload delegate method in case - the user clicks the "Cancel" button while the update is downloading. - */ -- (void)installUpdatesIfAvailable __attribute__((deprecated("This method is deprecated. Please set SUAutomaticallyUpdate in your Info.plist or use automaticallyDownloadsUpdates property instead."))); - -/*! - Returns the date of last update check. - - \returns \c nil if no check has been performed. - */ -@property (readonly, copy) NSDate *lastUpdateCheckDate; - -/*! - Appropriately schedules or cancels 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; - -/*! - A property indicating whether or not an update is in progress. - - Note this property is not indicative of whether or not user initiated updates can be performed. - Use SUUpdater::validateMenuItem: for that instead. - */ -@property (readonly) BOOL updateInProgress; - -@end - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h b/OSX/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h deleted file mode 100644 index ec844d04..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h +++ /dev/null @@ -1,352 +0,0 @@ -// -// SUUpdaterDelegate.h -// Sparkle -// -// Created by Mayur Pawashe on 12/25/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif - -#import "SUExport.h" - -@protocol SUVersionComparison, SUVersionDisplay; -@class SUUpdater, SUAppcast, SUAppcastItem; - -NS_ASSUME_NONNULL_BEGIN - -// ----------------------------------------------------------------------------- -// SUUpdater Notifications for events that might be interesting to more than just the delegate -// The updater will be the notification object -// ----------------------------------------------------------------------------- -SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification; -SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification; -SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification; -SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification; -#define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification; -#define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification; - -// Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo -SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey; -// Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo -SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey; - -// ----------------------------------------------------------------------------- -// SUUpdater Delegate: -// ----------------------------------------------------------------------------- - -/*! - Provides methods to control the behavior of an SUUpdater object. - */ -@protocol SUUpdaterDelegate -@optional - -/*! - Returns whether to allow Sparkle to pop up. - - For example, this may be used to prevent Sparkle from interrupting a setup assistant. - - \param updater The SUUpdater instance. - */ -- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)updater; - -/*! - Returns additional parameters to append to the appcast URL's query string. - - This is potentially based on whether or not Sparkle will also be sending along the system profile. - - \param updater The SUUpdater instance. - \param sendingProfile Whether the system profile will also be sent. - - \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; - -/*! - Returns a custom appcast URL. - - Override this to dynamically specify the entire URL. - - An alternative may be to use SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: - and let the server handle what kind of feed to provide. - - \param updater The SUUpdater instance. - */ -- (nullable NSString *)feedURLStringForUpdater:(SUUpdater *)updater; - -/*! - Returns whether Sparkle should prompt the user about automatic update checks. - - Use this to override the default behavior. - - \param updater The SUUpdater instance. - */ -- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)updater; - -/*! - Called after Sparkle has downloaded the appcast from the remote server. - - Implement this if you want to do some special handling with the appcast once it finishes loading. - - \param updater The SUUpdater instance. - \param appcast The appcast that was downloaded from the remote server. - */ -- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; - -/*! - Returns the item in the appcast corresponding to the update that should be installed. - - 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. - - \param appcast The appcast that was downloaded from the remote server. - \param updater The SUUpdater instance. - */ -- (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)updater; - -/*! - Called when a valid update is found by the update driver. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - */ -- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item; - -/*! - Called just before the scheduled update driver prompts the user to install an update. - - \param updater The SUUpdater instance. - - \return YES to allow the update prompt to be shown (the default behavior), or NO to suppress it. - */ -- (BOOL)updaterShouldShowUpdateAlertForScheduledUpdate:(SUUpdater *)updater forItem:(SUAppcastItem *)item; - -/*! - Called after the user dismisses the update alert. - - \param updater The SUUpdater instance. - \param permanently YES if the alert will not appear again for this update; NO if it may reappear. - */ -- (void)updater:(SUUpdater *)updater didDismissUpdateAlertPermanently:(BOOL)permanently forItem:(SUAppcastItem *)item; - -/*! - Called when a valid update is not found. - - \param updater The SUUpdater instance. - */ -- (void)updaterDidNotFindUpdate:(SUUpdater *)updater; - -/*! - Called when the user clicks the Skip This Version button. - - \param updater The SUUpdater instance. - */ -- (void)updater:(SUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item; - -/*! - Called immediately before downloading the specified update. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be downloaded. - \param request The mutable URL request that will be used to download the update. - */ -- (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request; - -/*! - Called immediately after succesfull download of the specified update. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that has been downloaded. - */ -- (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item; - -/*! - Called after the specified update failed to download. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that failed to download. - \param error The error generated by the failed download. - */ -- (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error; - -/*! - Called when the user clicks the cancel button while and update is being downloaded. - - \param updater The SUUpdater instance. - */ -- (void)userDidCancelDownload:(SUUpdater *)updater; - -/*! - Called immediately before extracting the specified downloaded update. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be extracted. - */ -- (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item; - -/*! - Called immediately after extracting the specified downloaded update. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that has been extracted. - */ -- (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item; - -/*! - Called immediately before installing the specified update. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - */ -- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; - -/*! - Returns whether the relaunch should be delayed in order to perform other tasks. - - This is not called if the user didn't relaunch on the previous update, - in that case it will immediately restart. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - \param invocation The invocation that must be completed with `[invocation invoke]` before continuing with the relaunch. - - \return \c YES to delay the relaunch until \p invocation is invoked. - */ -- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation; - -/*! - Returns whether the relaunch should be delayed in order to perform other tasks. - - This is not called if the user didn't relaunch on the previous update, - in that case it will immediately restart. - - This method acts as a simpler alternative to SUUpdaterDelegate::updater:shouldPostponeRelaunchForUpdate:untilInvoking: avoiding usage of NSInvocation, which is not available in Swift environments. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - - \return \c YES to delay the relaunch. - */ -- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item; - -/*! - Returns whether the application should be relaunched at all. - - Some apps \b cannot be relaunched under certain circumstances. - This method can be used to explicitly prevent a relaunch. - - \param updater The SUUpdater instance. - */ -- (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater; - -/*! - Called immediately before relaunching. - - \param updater The SUUpdater instance. - */ -- (void)updaterWillRelaunchApplication:(SUUpdater *)updater; - -/*! - Called immediately after relaunching. SUUpdater delegate must be set before applicationDidFinishLaunching: to catch this event. - - \param updater The SUUpdater instance. - */ -- (void)updaterDidRelaunchApplication:(SUUpdater *)updater; - -/*! - Returns an object that compares version numbers to determine their arithmetic relation to each other. - - This method allows you to provide a custom version comparator. - If you don't implement this method or return \c nil, - the standard version comparator will be used. - - \sa SUStandardVersionComparator - - \param updater The SUUpdater instance. - */ -- (nullable id)versionComparatorForUpdater:(SUUpdater *)updater; - -/*! - Returns an object that formats version numbers for display to the user. - - If you don't implement this method or return \c nil, - the standard version formatter will be used. - - \sa SUUpdateAlert - - \param updater The SUUpdater instance. - */ -- (nullable id)versionDisplayerForUpdater:(SUUpdater *)updater; - -/*! - Returns the path which is used to relaunch the client after the update is installed. - - The default is the path of the host bundle. - - \param updater The SUUpdater instance. - */ -- (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; - -/*! - Called before an updater shows a modal alert window, - to give the host the opportunity to hide attached windows that may get in the way. - - \param updater The SUUpdater instance. - */ -- (void)updaterWillShowModalAlert:(SUUpdater *)updater; - -/*! - Called after an updater shows a modal alert window, - to give the host the opportunity to hide attached windows that may get in the way. - - \param updater The SUUpdater instance. - */ -- (void)updaterDidShowModalAlert:(SUUpdater *)updater; - -/*! - Called when an update is scheduled to be silently installed on quit. - This is after an update has been automatically downloaded in the background. - (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - \param invocation Can be used to trigger an immediate silent install and relaunch. - */ -- (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation; - -/*! - Called when an update is scheduled to be silently installed on quit. - This is after an update has been automatically downloaded in the background. - (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) - This method acts as a more modern alternative to SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationInvocation: using a block instead of NSInvocation, which is not available in Swift environments. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that is proposed to be installed. - \param installationBlock Can be used to trigger an immediate silent install and relaunch. - */ -- (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))installationBlock; - -/*! - Calls after an update that was scheduled to be silently installed on quit has been canceled. - - \param updater The SUUpdater instance. - \param item The appcast item corresponding to the update that was proposed to be installed. - */ -- (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item; - -/*! - Called after an update is aborted due to an error. - - \param updater The SUUpdater instance. - \param error The error that caused the abort - */ -- (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h b/OSX/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h deleted file mode 100644 index c654fc4d..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h +++ /dev/null @@ -1,37 +0,0 @@ -// -// SUVersionComparisonProtocol.h -// Sparkle -// -// Created by Andy Matuschak on 12/21/07. -// Copyright 2007 Andy Matuschak. All rights reserved. -// - -#ifndef SUVERSIONCOMPARISONPROTOCOL_H -#define SUVERSIONCOMPARISONPROTOCOL_H - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SUExport.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - Provides version comparison facilities for Sparkle. -*/ -@protocol SUVersionComparison - -/*! - An abstract method to compare two version strings. - - 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 - -NS_ASSUME_NONNULL_END -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h b/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h deleted file mode 100644 index 980efb3f..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// SUVersionDisplayProtocol.h -// EyeTV -// -// Created by Uli Kusterer on 08.12.09. -// Copyright 2009 Elgato Systems GmbH. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import -#endif -#import "SUExport.h" - -/*! - Applies special display formatting to version numbers. -*/ -@protocol SUVersionDisplay - -/*! - Formats two version strings. - - Both versions are provided so that important distinguishing information - can be displayed while also leaving out unnecessary/confusing parts. -*/ -- (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB; - -@end diff --git a/OSX/Sparkle.framework/Versions/A/Headers/Sparkle.h b/OSX/Sparkle.framework/Versions/A/Headers/Sparkle.h deleted file mode 100644 index 94ad15f6..00000000 --- a/OSX/Sparkle.framework/Versions/A/Headers/Sparkle.h +++ /dev/null @@ -1,38 +0,0 @@ -// -// Sparkle.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#ifndef SPARKLE_H -#define SPARKLE_H - -// 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: - -#pragma clang diagnostic push -// Do not use <> style includes since 2.x has two frameworks that need to work: Sparkle and SparkleCore -#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" - -#import "SUAppcast.h" -#import "SUAppcastItem.h" -#import "SUStandardVersionComparator.h" -#import "SUUpdater.h" -#import "SUUpdaterDelegate.h" -#import "SUVersionComparisonProtocol.h" -#import "SUVersionDisplayProtocol.h" -#import "SUErrors.h" - -#import "SPUDownloader.h" -#import "SPUDownloaderDelegate.h" -#import "SPUDownloadData.h" -#import "SPUDownloaderProtocol.h" -#import "SPUDownloaderSession.h" -#import "SPUURLRequest.h" -#import "SUCodeSigningVerifier.h" - -#pragma clang diagnostic pop - -#endif diff --git a/OSX/Sparkle.framework/Versions/A/Modules/module.modulemap b/OSX/Sparkle.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index af3fe6d0..00000000 --- a/OSX/Sparkle.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Sparkle { - umbrella header "Sparkle.h" - - export * - module * { export * } -} diff --git a/OSX/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h b/OSX/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h deleted file mode 100644 index a52bf5a2..00000000 --- a/OSX/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// SUUnarchiver.h -// Sparkle -// -// Created by Andy Matuschak on 3/16/06. -// Copyright 2006 Andy Matuschak. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol SUUnarchiverProtocol; - -@interface SUUnarchiver : NSObject - -+ (nullable id )unarchiverForPath:(NSString *)path updatingHostBundlePath:(nullable NSString *)hostPath decryptionPassword:(nullable NSString *)decryptionPassword; - -@end - -NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist deleted file mode 100644 index 9844126e..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist +++ /dev/null @@ -1,58 +0,0 @@ - - - - - BuildMachineOSBuild - 20G165 - CFBundleDevelopmentRegion - English - CFBundleExecutable - Autoupdate - CFBundleIconFile - AppIcon.icns - CFBundleIdentifier - org.sparkle-project.Sparkle.Autoupdate - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.27.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 1.102 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 12E507 - DTPlatformName - macosx - DTPlatformVersion - 11.3 - DTSDKBuild - 20E214 - DTSDKName - macosx11.3 - DTXcode - 1251 - DTXcodeBuild - 12E507 - LSApplicationCategoryType - public.app-category.utilities - LSBackgroundOnly - 1 - LSMinimumSystemVersion - 10.9 - LSUIElement - 1 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate deleted file mode 100755 index b0011758..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop deleted file mode 100755 index e0512d25..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo deleted file mode 100644 index bd04210f..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo +++ /dev/null @@ -1 +0,0 @@ -APPL???? \ No newline at end of file diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns deleted file mode 100644 index 7f2a571c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings deleted file mode 100644 index 1d70063c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib deleted file mode 100644 index 1655dc1e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings deleted file mode 100644 index e00af341..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings deleted file mode 100644 index f2aea275..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings deleted file mode 100644 index bc3d41f1..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings deleted file mode 100644 index e0957c60..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings deleted file mode 100644 index f0435273..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings deleted file mode 100644 index 6ef15d4a..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings deleted file mode 100644 index 8a083f86..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings deleted file mode 100644 index 773f7c99..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings deleted file mode 100644 index a9e01b2e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings deleted file mode 100644 index ce63fdef..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings deleted file mode 100644 index ab8fe1a3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings deleted file mode 100644 index d30ef64b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings deleted file mode 100644 index 5f6ace28..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings deleted file mode 100644 index 5b4be9ea..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings deleted file mode 100644 index f4685eda..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings deleted file mode 100644 index f008e1ee..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings deleted file mode 100644 index fa4cd97d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings deleted file mode 100644 index 76f3556b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings deleted file mode 100644 index 4444f338..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings deleted file mode 100644 index 2a7ce299..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings deleted file mode 100644 index 18a287e8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings deleted file mode 100644 index 967a4418..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings deleted file mode 100644 index 28b831d8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings deleted file mode 100644 index 65aa28f2..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings deleted file mode 100644 index caaf0603..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings deleted file mode 100644 index e7c70db7..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings deleted file mode 100644 index 058b4ba6..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings deleted file mode 100644 index ffc57672..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings deleted file mode 100644 index 263326c9..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings deleted file mode 100644 index 71cf325f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings deleted file mode 100644 index b9517885..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources deleted file mode 100644 index 10824b48..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources +++ /dev/null @@ -1,853 +0,0 @@ - - - - - files - - Resources/AppIcon.icns - - 4McwRDEss5BzWwUMG2Xf93+ze08= - - Resources/Base.lproj/Sparkle.strings - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - Resources/SUStatus.nib - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - optional - - - Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - optional - - - Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - optional - - - Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - optional - - - Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - optional - - - Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - optional - - - Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - optional - - - Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - optional - - - Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - optional - - - Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - optional - - - Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - optional - - - Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - optional - - - Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - optional - - - Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - optional - - - Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - optional - - - Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - optional - - - Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - optional - - - Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - optional - - - Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - optional - - - - files2 - - MacOS/fileop - - cdhash - - 3t2O1Li8HPJNk3Eo6D8qW1oP+jI= - - requirement - cdhash H"5277ce2c56b8ebe2e122350f8de5c442d9ab3f11" or cdhash H"dedd8ed4b8bc1cf24d937128e83f2a5b5a0ffa32" or cdhash H"91d174275e1e6fef1c0bd7626af1571f0df219f0" or cdhash H"adc291671c19af670aaec29a2de4d2e33a114478" - - Resources/AppIcon.icns - - hash - - 4McwRDEss5BzWwUMG2Xf93+ze08= - - hash2 - - nq7j0ugQwyNbJn/7zGFwxIR0njwU3i7hAYKEyZhvUfE= - - - Resources/Base.lproj/Sparkle.strings - - hash - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - hash2 - - 39CdfZZ1CQQz1Gd1+Ukxo2JHl0XESoc/cqWKF091WUk= - - - Resources/SUStatus.nib - - hash - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - hash2 - - 8bmm56+lUnfMv3UQ4n/BaEp7hU1N1Wbur9BWMReUdso= - - - Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - hash2 - - 2cAJJ5NTxwpRgp24Ca3EuTXfaIIzsYdH3Y9cNCalZfc= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - hash2 - - om5I6jKleuRoCwjfrRRqKWQbs2l8lLj8QGKS47cxybA= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - hash2 - - 8q22yKUhfKJVOOXteUQZAVVkhfzPQKzoSJdnVNkDPo8= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - hash2 - - wu0CpGqE79+TXKIQm+q7ycPTuXhOlwRr/wD5uGHJzLM= - - optional - - - Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - hash2 - - bA5bxESyZuC/dG2VKfN+eQ7CVb2qAWrwfu94IpJ4Xi0= - - optional - - - Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - hash2 - - wt+2xyusmWAQuJ5kAQlRlvFb1wO4L7/rFdG+VmNjl+Y= - - optional - - - Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - hash2 - - mtOoKdoTpGzeTNyzxkVGOMsE0Z3ZZOsmIKDfgA9aj8c= - - optional - - - Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - hash2 - - +AiiKWEdH3lesozLJBn3tfK6vi/VSI1/TnWVmIdVVsc= - - optional - - - Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - hash2 - - 8PKuKp2lymWYfR+BqJ15UWlxOQKUl3fEveeseHBfaTw= - - optional - - - Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - hash2 - - 4gUlWkwTANV/jd7n4OZoXyT8CAcgWVk/tI3a25wmuLg= - - optional - - - Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - hash2 - - TwklhrooHTXgV6Q9fbvvAB3mPIh7qDbEsNtUzo2fQuU= - - optional - - - Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - hash2 - - sRkp8c3Bx1qWdhhSNdOap1PbfmiTziINy1HxGea3SWU= - - optional - - - Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - hash2 - - xcV1yh/zU3U3TsRUT6vGybvIQitf+ThrogN/uOWmD8k= - - optional - - - Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - hash2 - - Y+caNW+g0mt7HP4JrBxJw+uDwN3j19UYb+q5r9ch4Ow= - - optional - - - Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - hash2 - - dSPIvpFbelHRv8liJjN3TUVPbgD1DfhVSGmE+S99quI= - - optional - - - Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - hash2 - - +bxn0NPgkxdHLa1MHRT+JRlYmy1jpIuaenpst5RT+RA= - - optional - - - Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - hash2 - - FG+w+OnLI7nwnNCWiMT50LU98VWj1d08ElfX4k7Ok4w= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - hash2 - - xnQkqxaO8zP1xpjY3nyjOd4Fe0gJon2Dbt456ukd/Gw= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - hash2 - - pDq+41jhfESgJauedrYncFY1O5EMEU3nRyl7mmyYj+s= - - optional - - - Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - hash2 - - lY5EZJwPc/Rmfhw1gotkeEKB+ANXqZUlM2G92sZwdJc= - - optional - - - Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - hash2 - - RUq6VJjn/QyydkNbpklLwfCgRF62+uHhXen2dYLBNuQ= - - optional - - - Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - hash2 - - NNvDsecglQ/utR6YEqxyMj5K976YRWieCIC/PZuWCtQ= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - hash2 - - +vCWSRbECqQcsR6Nd8erQda/7x+ku/kQSUvZtTvemyQ= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - hash2 - - e3cyzJ87ohC1ff/BzZ5O00MnwRE02U+J1KwXlSZeSSg= - - optional - - - Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - hash2 - - t8QC+9TBONwKLQvV3fKV0umsnAS8ZDpqPikVksFPtWc= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - hash2 - - mJY6aeXFnSx38bF630z5lNPmPtsoYVAwadh0KC+9vfQ= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - hash2 - - nlP7repbMz6EqHo3sZWnK3tzx47WKSWnULdUHCYPgKk= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - hash2 - - xEXUfrylPld+eFGrPyj4wTRPj7vUWOZ2f94sWydq03M= - - optional - - - Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - hash2 - - u0572QZYh6sB0GQdMGMePalOf4zkxE7YQG7pp898SEg= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - hash2 - - zvMbFdgVGI0ls9vIRT+sie7dj2g1UjQu7iS+pOgyBo4= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - hash2 - - Vlf/4QD7/3S0SFqxmTWWcSwtTLWISKUSvLjpgWb7lxQ= - - optional - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^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 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUAutomaticUpdateAlert.nib b/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUAutomaticUpdateAlert.nib deleted file mode 100644 index 58337ea0..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUAutomaticUpdateAlert.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib b/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib deleted file mode 100644 index 1f1ba513..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib b/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib deleted file mode 100644 index 2eca3a2e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib deleted file mode 100644 index 57f2269d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings deleted file mode 100644 index 1d70063c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/Info.plist b/OSX/Sparkle.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index dd6a9b56..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - BuildMachineOSBuild - 20G165 - CFBundleDevelopmentRegion - en - CFBundleExecutable - Sparkle - CFBundleIdentifier - org.sparkle-project.Sparkle - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Sparkle - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.27.0 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 1.102 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 12E507 - DTPlatformName - macosx - DTPlatformVersion - 11.3 - DTSDKBuild - 20E214 - DTSDKName - macosx11.3 - DTXcode - 1251 - DTXcodeBuild - 12E507 - LSMinimumSystemVersion - 10.9 - - diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css b/OSX/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css deleted file mode 100644 index ac5dc3f6..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css +++ /dev/null @@ -1,12 +0,0 @@ -@media (prefers-color-scheme: dark) { - html { - color: white; - background: transparent; - } - :link { - color: #419CFF; - } - :link:active { - color: #FF1919; - } -} diff --git a/OSX/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist b/OSX/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist deleted file mode 100644 index 1f75b248..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist +++ /dev/null @@ -1,314 +0,0 @@ - - - - - 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) - iMac7,1 - iMac Intel Core 2 Duo (aluminum enclosure) - iMac8,1 - iMac (Core 2 Duo, 20 or 24 inch, Early 2008 ) - iMac9,1 - iMac (Core 2 Duo, 20 or 24 inch, Early or Mid 2009 ) - iMac10,1 - iMac (Core 2 Duo, 21.5 or 27 inch, Late 2009 ) - iMac11,1 - iMac (Core i5 or i7, 27 inch Late 2009) - iMac11,2 - 21.5" iMac (mid 2010) - iMac11,3 - iMac (Core i5 or i7, 27 inch Mid 2010) - iMac12,1 - iMac (Core i3 or i5 or i7, 21.5 inch Mid 2010 or Late 2011) - iMac12,2 - iMac (Core i5 or i7, 27 inch Mid 2011) - iMac13,1 - iMac (Core i3 or i5 or i7, 21.5 inch Late 2012 or Early 2013) - iMac13,2 - iMac (Core i5 or i7, 27 inch Late 2012) - iMac14,1 - iMac (Core i5, 21.5 inch Late 2013) - iMac14,2 - iMac (Core i5 or i7, 27 inch Late 2013) - iMac14,3 - iMac (Core i5 or i7, 21.5 inch Late 2013) - iMac14,4 - iMac (Core i5, 21.5 inch Mid 2014) - iMac15,1 - iMac (Retina 5K Core i5 or i7, 27 inch Late 2014 or Mid 2015) - iMac16,1 - iMac (Core i5, 21,5 inch Late 2015) - iMac16,2 - iMac (Retina 4K Core i5 or i7, 21.5 inch Late 2015) - iMac17,1 - iMac (Retina 5K Core i5 or i7, 27 inch Late 2015) - MacBook1,1 - MacBook (Core Duo) - MacBook2,1 - MacBook (Core 2 Duo) - MacBook4,1 - MacBook (Core 2 Duo Feb 2008) - MacBook5,1 - MacBook (Core 2 Duo, Late 2008, Unibody) - MacBook5,2 - MacBook (Core 2 Duo, Early 2009, White) - MacBook6,1 - MacBook (Core 2 Duo, Late 2009, Unibody) - MacBook7,1 - MacBook (Core 2 Duo, Mid 2010, White) - MacBook8,1 - MacBook (Core M, 12 inch, Early 2015) - MacBookAir1,1 - MacBook Air (Core 2 Duo, 13 inch, Early 2008) - MacBookAir2,1 - MacBook Air (Core 2 Duo, 13 inch, Mid 2009) - MacBookAir3,1 - MacBook Air (Core 2 Duo, 11 inch, Late 2010) - MacBookAir3,2 - MacBook Air (Core 2 Duo, 13 inch, Late 2010) - MacBookAir4,1 - MacBook Air (Core i5 or i7, 11 inch, Mid 2011) - MacBookAir4,2 - MacBook Air (Core i5 or i7, 13 inch, Mid 2011) - MacBookAir5,1 - MacBook Air (Core i5 or i7, 11 inch, Mid 2012) - MacBookAir5,2 - MacBook Air (Core i5 or i7, 13 inch, Mid 2012) - MacBookAir6,1 - MacBook Air (Core i5 or i7, 11 inch, Mid 2013 or Early 2014) - MacBookAir6,2 - MacBook Air (Core i5 or i7, 13 inch, Mid 2013 or Early 2014) - MacBookAir7,1 - MacBook Air (Core i5 or i7, 11 inch, Early 2015) - MacBookAir7,2 - MacBook Air (Core i5 or i7, 13 inch, Early 2015) - 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) - MacBookPro5,1 - MacBook Pro Intel Core 2 Duo (aluminum unibody) - MacBookPro5,2 - MacBook Pro Intel Core 2 Duo (aluminum unibody) - MacBookPro5,3 - MacBook Pro Intel Core 2 Duo (aluminum unibody) - MacBookPro5,4 - MacBook Pro Intel Core 2 Duo (aluminum unibody) - MacBookPro5,5 - MacBook Pro Intel Core 2 Duo (aluminum unibody) - MacBookPro6,1 - MacBook Pro Intel Core i5, Intel Core i7 (mid 2010) - MacBookPro6,2 - MacBook Pro Intel Core i5, Intel Core i7 (mid 2010) - MacBookPro7,1 - MacBook Pro Intel Core 2 Duo (mid 2010) - MacBookPro8,1 - MacBook Pro Intel Core i5, Intel Core i7, 13" (early 2011) - MacBookPro8,2 - MacBook Pro Intel Core i7, 15" (early 2011) - MacBookPro8,3 - MacBook Pro Intel Core i7, 17" (early 2011) - MacBookPro9,1 - MacBook Pro (15-inch, Mid 2012) - MacBookPro9,2 - MacBook Pro (13-inch, Mid 2012) - MacBookPro10,1 - MacBook Pro (Retina, Mid 2012) - MacBookPro10,2 - MacBook Pro (Retina, 13-inch, Late 2012) - MacBookPro11,1 - MacBook Pro (Retina, 13-inch, Late 2013) - MacBookPro11,2 - MacBook Pro (Retina, 15-inch, Late 2013) - MacBookPro11,3 - MacBook Pro (Retina, 15-inch, Late 2013) - MacbookPro11,4 - MacBook Pro (Retina, 15-inch, Mid 2015) - MacbookPro11,5 - MacBook Pro (Retina, 15-inch, Mid 2015) - MacbookPro12,1  - MacBook Pro (Retina, 13-inch, Early 2015) - Macmini1,1 - Mac Mini (Core Solo/Duo) - Macmini2,1 - Mac mini Intel Core - Macmini3,1 - Mac mini Intel Core - Macmini4,1 - Mac mini Intel Core (Mid 2010) - Macmini5,1 - Mac mini (Core i5, Mid 2011) - Macmini5,2 - Mac mini (Core i5 or Core i7, Mid 2011) - Macmini5,3 - Mac mini (Core i7, Server, Mid 2011) - Macmini6,1 - Mac mini (Core i5, Late 2012) - Macmini6,2 - Mac mini (Core i7, Normal or Server, Late 2012) - Macmini7,1 - Mac mini (Core i5 or Core i7, Late 2014) - MacPro1,1,Quad - Mac Pro - 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 (2010 or 2012) - MacPro6,1 - Mac Pro (Late 2013) - 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) - 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 - PowerMac5,2 - Power Mac 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) - PowerMac10,1 - Mac Mini G4 - PowerMac10,2 - Mac Mini (Late 2005) - PowerMac11,2 - Power Macintosh G5 (Late 2005) - PowerMac12,1 - iMac G5 (iSight) - 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) - Xserve3,1 - Xserve (early 2009) - - diff --git a/OSX/Sparkle.framework/Versions/A/Resources/SUStatus.nib b/OSX/Sparkle.framework/Versions/A/Resources/SUStatus.nib deleted file mode 100644 index 1655dc1e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/SUStatus.nib and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index d3cd9020..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings deleted file mode 100644 index c1e9c993..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 51a4dbd3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings deleted file mode 100644 index e00af341..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 64c18831..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.strings +++ /dev/null @@ -1,11 +0,0 @@ -/* Class = "NSButtonCell"; title = "Install and Relaunch"; ObjectID = "41"; */ -"41.title" = "Reinicia el programa ara"; - -/* Class = "NSButtonCell"; title = "Install on Quit"; ObjectID = "42"; */ -"42.title" = "Reinicia el programa més tard"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "43"; */ -"43.title" = "Baixa i instal·la les actualitzacions automàticament en el futur"; - -/* Class = "NSButtonCell"; title = "Don't Install"; ObjectID = "44"; */ -"44.title" = "Don't Install"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings deleted file mode 100644 index 284cf6dc..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Actualització del programari"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Notes d'aquesta versió:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Recorda-m'ho més tard"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Omet aquesta versió"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instal·la l'actualització"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Descarrega i instal·la les actualitzacions automàticament en el futur"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings deleted file mode 100644 index f2aea275..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index e1014a0e..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.strings +++ /dev/null @@ -1,11 +0,0 @@ -/* Class = "NSButtonCell"; title = "Install and Relaunch"; ObjectID = "41"; */ -"41.title" = "Instalovat a znovu spustit"; - -/* Class = "NSButtonCell"; title = "Install on Quit"; ObjectID = "42"; */ -"42.title" = "Instalovat a ukončit"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "43"; */ -"43.title" = "V budoucnu stahovat a instalovat aktualizace automaticky"; - -/* Class = "NSButtonCell"; title = "Don't Install"; ObjectID = "44"; */ -"44.title" = "Neinstalovat"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings deleted file mode 100644 index ff7d56ff..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Aktualizace aplikace"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Poznámky k vydání:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Připomenout později"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Přeskočit tuto verzi"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Instalovat aktualizaci"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "V budoucnu stahovat a instalovat aktualizace automaticky"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 3c24459d..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,23 +0,0 @@ -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "176"; */ -"176.title" = "Automaticky vyhledávat"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "177"; */ -"177.title" = "Nevyhledávat"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "178"; */ -"178.title" = "Vyhledávat aktualizace automaticky?"; - -/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "179"; */ -"179.title" = "DO NOT LOCALIZE"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "180"; */ -"180.title" = "Odeslat anonymní systémový profil"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work.\nPlease contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Informace z anonymního systémového profilu pomáhají vývojářům lépe plánovat budoucí vývoj aplikace.\nBudete-li mít nějaký dotaz, obraÅ¥te se na nás.\n\nToto jsou informace, které budou odeslány:"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings deleted file mode 100644 index bc3d41f1..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index af70727a..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings deleted file mode 100644 index 4ef2b1b5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 0a0a998d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings deleted file mode 100644 index e0957c60..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 931667cb..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings deleted file mode 100644 index 02d7c022..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 47b00059..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings deleted file mode 100644 index f0435273..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 2054e103..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings deleted file mode 100644 index 79bc9303..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index a84a913d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings deleted file mode 100644 index 6ef15d4a..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 4532f020..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.strings +++ /dev/null @@ -1,12 +0,0 @@ - -/* Class = "NSButtonCell"; title = "Install and Relaunch"; ObjectID = "41"; */ -"41.title" = "Install and Relaunch"; - -/* Class = "NSButtonCell"; title = "Install on Quit"; ObjectID = "42"; */ -"42.title" = "Install on Quit"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "43"; */ -"43.title" = "Automatically download and install updates in the future"; - -/* Class = "NSButtonCell"; title = "Don't Install"; ObjectID = "44"; */ -"44.title" = "Don't Install"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings deleted file mode 100644 index 45a4cfc0..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,18 +0,0 @@ - -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "Software Update"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "Release Notes:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "Remind Me Later"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "Skip This Version"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "Install Update"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "Automatically download and install updates in the future"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 40408e56..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings +++ /dev/null @@ -1,24 +0,0 @@ - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ -"43.title" = "Text Cell"; - -/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ -"45.title" = "Text Cell"; - -/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "176"; */ -"176.title" = "Check Automatically"; - -/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "177"; */ -"177.title" = "Don’t Check"; - -/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "178"; */ -"178.title" = "Check for updates automatically?"; - -/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "179"; */ -"179.title" = "DO NOT LOCALIZE"; - -/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "180"; */ -"180.title" = "Include anonymous system profile"; - -/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ -"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 2bfeeebd..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings deleted file mode 100644 index 048305e9..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index ed12e176..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings deleted file mode 100644 index 8a083f86..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 68d567fc..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings deleted file mode 100644 index 12c3890e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 7746e682..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings deleted file mode 100644 index 773f7c99..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 12c205b3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings deleted file mode 100644 index 53f8a46c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 2ec15550..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings deleted file mode 100644 index a9e01b2e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index ebf63323..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.strings +++ /dev/null @@ -1,11 +0,0 @@ -/* Class = "NSButtonCell"; title = "Install and Relaunch"; ObjectID = "41"; */ -"41.title" = "אתחל עכשיו"; - -/* Class = "NSButtonCell"; title = "Install on Quit"; ObjectID = "42"; */ -"42.title" = "אתחל מאוחר יותר"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "43"; */ -"43.title" = "הורד והתקן עדכונים אוטומטית גם בעתיד"; - -/* Class = "NSButtonCell"; title = "Don't Install"; ObjectID = "44"; */ -"44.title" = "Don't Install"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings deleted file mode 100644 index a49c5a96..00000000 --- a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings +++ /dev/null @@ -1,18 +0,0 @@ - -/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ -"5.title" = "עדכון תכנה"; - -/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ -"170.title" = "פרטי גרסה:"; - -/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ -"171.title" = "הזכר לי מאוחר יותר"; - -/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ -"172.title" = "דלג על גרסה זו"; - -/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ -"173.title" = "התקן עדכון"; - -/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ -"175.title" = "הורד והתקן עדכונים אוטומטית גם בעתיד"; diff --git a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings deleted file mode 100644 index ce63fdef..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 6dab620f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings deleted file mode 100644 index e8cd9115..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index e351dee9..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings deleted file mode 100644 index ab8fe1a3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 21520d6e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.strings deleted file mode 100644 index 5bcfb40f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index a44717a1..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings deleted file mode 100644 index d30ef64b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index b3df8579..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings deleted file mode 100644 index 35605b00..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 1b2ae2e5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings deleted file mode 100644 index 5f6ace28..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index df3cc7a5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings deleted file mode 100644 index 28b08bf8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 55b623b5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings deleted file mode 100644 index 5b4be9ea..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index b9a12fa8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings deleted file mode 100644 index 7aaa662e..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 117c57b1..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings deleted file mode 100644 index f4685eda..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 13fcae85..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings deleted file mode 100644 index ae964edc..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index ba51fac5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings deleted file mode 100644 index f008e1ee..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index b56be4ff..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings deleted file mode 100644 index 4f7f719c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 71a68bc6..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings deleted file mode 100644 index fa4cd97d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 49a56b68..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings deleted file mode 100644 index a4797b81..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 73d5f5ee..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings deleted file mode 100644 index 76f3556b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index c65a629f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings deleted file mode 100644 index 94fd5cf5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 16591dd2..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings deleted file mode 100644 index 4444f338..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index a8d613cf..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings deleted file mode 100644 index ba19134f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 5eca8957..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings deleted file mode 100644 index 2a7ce299..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 40a45dbf..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index f744d468..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings deleted file mode 100644 index 18a287e8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index a4c5ced6..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings deleted file mode 100644 index 4fc4e8b5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index e9075e57..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings deleted file mode 100644 index 967a4418..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 19acb2f7..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings deleted file mode 100644 index 9fce4212..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index acf4be10..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings deleted file mode 100644 index 28b831d8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index f2df7340..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings deleted file mode 100644 index 20de4543..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 83ebfa9d..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings deleted file mode 100644 index 65aa28f2..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index a9321a72..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings deleted file mode 100644 index 8f1d8d21..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index c1cf84a5..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings deleted file mode 100644 index caaf0603..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 4fc0a158..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings deleted file mode 100644 index dc57d7b3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 29647d7c..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings deleted file mode 100644 index e7c70db7..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 9c1a96f8..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings deleted file mode 100644 index ab08588b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 56a8d38b..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings deleted file mode 100644 index 058b4ba6..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 22f55c23..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings deleted file mode 100644 index 35fa3209..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 7d46eeb1..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings deleted file mode 100644 index ffc57672..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings deleted file mode 100644 index 580048f3..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 6076fcdb..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings deleted file mode 100644 index 263326c9..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 5df10cc2..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings deleted file mode 100644 index 3264916f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index 52ddc42f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings deleted file mode 100644 index 71cf325f..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings deleted file mode 100644 index 195c7dd7..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings deleted file mode 100644 index a2e8e66a..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings deleted file mode 100644 index a7d39111..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings deleted file mode 100644 index b9517885..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/Sparkle b/OSX/Sparkle.framework/Versions/A/Sparkle deleted file mode 100755 index 471eb8ad..00000000 Binary files a/OSX/Sparkle.framework/Versions/A/Sparkle and /dev/null differ diff --git a/OSX/Sparkle.framework/Versions/A/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/A/_CodeSignature/CodeResources deleted file mode 100644 index f83c2d84..00000000 --- a/OSX/Sparkle.framework/Versions/A/_CodeSignature/CodeResources +++ /dev/null @@ -1,3976 +0,0 @@ - - - - - files - - Resources/Autoupdate.app/Contents/Info.plist - - p52Tc2SIfA7izoenzdLvHMinB5o= - - Resources/Autoupdate.app/Contents/MacOS/Autoupdate - - ACzGW2U3uYVUhXotLQCXO5RLLGk= - - Resources/Autoupdate.app/Contents/MacOS/fileop - - tTUobsPsRgi70C/UoEGR5x+A/PU= - - Resources/Autoupdate.app/Contents/PkgInfo - - n57qDP4tZfLD1rCS43W0B4LQjzE= - - Resources/Autoupdate.app/Contents/Resources/AppIcon.icns - - 4McwRDEss5BzWwUMG2Xf93+ze08= - - Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings - - hash - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - optional - - - Resources/Autoupdate.app/Contents/Resources/SUStatus.nib - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - optional - - - Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - optional - - - Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - optional - - - Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - optional - - - Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - optional - - - Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - optional - - - Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - optional - - - Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - optional - - - Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - optional - - - Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - optional - - - Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - optional - - - Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - optional - - - Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - optional - - - Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - optional - - - Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - optional - - - Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - optional - - - Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - optional - - - Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources - - v0QA+kkQGw9okTq801tvxpB7aeI= - - Resources/Base.lproj/SUAutomaticUpdateAlert.nib - - l5KRdkey8A+be1W07Fhr06if6cs= - - Resources/Base.lproj/SUUpdateAlert.nib - - /5NdqXefzh9fVmTWRKVz/dz7pdw= - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib - - JB54prg8VvKpDEetrrMtMBK+5iA= - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib - - 6pTb8Z8gXml+rdQ5fUvN/d9xQJQ= - - Resources/Base.lproj/Sparkle.strings - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - Resources/Info.plist - - rQ/FRiyYYO6F/U6yfXPV2kBnyjk= - - Resources/ReleaseNotesColorStyle.css - - IOA6sGO744sbLxfJB3d3qfO4A9c= - - Resources/SUModelTranslation.plist - - iD2Ex40Usc4ZE6IAhRePqgwK/xw= - - Resources/SUStatus.nib - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - Resources/ar.lproj/SUAutomaticUpdateAlert.strings - - hash - - Gc/+6p+JGq05Dr2lHXQa6fUgUYg= - - optional - - - Resources/ar.lproj/SUUpdateAlert.strings - - hash - - 3i0bFULMGTvevM7VgyCgzSEKwv8= - - optional - - - Resources/ar.lproj/SUUpdatePermissionPrompt.strings - - hash - - TsXfb0PxtoasCcH9iA899TrlQS0= - - optional - - - Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - optional - - - Resources/ca.lproj/SUAutomaticUpdateAlert.strings - - hash - - mXA5B1SwJO1dYyfy4H7ji6+Bnh4= - - optional - - - Resources/ca.lproj/SUUpdateAlert.strings - - hash - - l9CaCmAXFcs+Z+8rRt7PX9onkf8= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - optional - - - Resources/cs.lproj/SUAutomaticUpdateAlert.strings - - hash - - q7RtvrY0T4KQ49y6xP17YL/QVXw= - - optional - - - Resources/cs.lproj/SUUpdateAlert.strings - - hash - - G9Wgf14zMhU2alRSZvqclMmlTCA= - - optional - - - Resources/cs.lproj/SUUpdatePermissionPrompt.strings - - hash - - iUcJO6Oa4RdO3RM4xkx7VH0fEYs= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - optional - - - Resources/da.lproj/SUAutomaticUpdateAlert.strings - - hash - - pjGE/D46Oz4q6UmORxOJs+G29Eg= - - optional - - - Resources/da.lproj/SUUpdateAlert.strings - - hash - - K/KCW6Ua+P3VcI3SMxkAxLmJhcA= - - optional - - - Resources/da.lproj/SUUpdatePermissionPrompt.strings - - hash - - IwkdeONJSO8+bNOj/x/5U6Gh960= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - optional - - - Resources/de.lproj/SUAutomaticUpdateAlert.strings - - hash - - p1AUay57hNweYVXQRbKhF9JBiOs= - - optional - - - Resources/de.lproj/SUUpdateAlert.strings - - hash - - hQet+8ztnlTGDqiaGgGRTuC7tzQ= - - optional - - - Resources/de.lproj/SUUpdatePermissionPrompt.strings - - hash - - bA9NYJIUB6btvBf0Eyl8Hf4PxAo= - - optional - - - Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - optional - - - Resources/el.lproj/SUAutomaticUpdateAlert.strings - - hash - - cCsxa29K0thPsbGJvXr7GOm6UGQ= - - optional - - - Resources/el.lproj/SUUpdateAlert.strings - - hash - - E3H8KwboutH9TcO/tzeWqmhmuEw= - - optional - - - Resources/el.lproj/SUUpdatePermissionPrompt.strings - - hash - - Ku1XJbSAsfKftCMDR5rYF/djH7g= - - optional - - - Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - optional - - - Resources/en.lproj/SUAutomaticUpdateAlert.strings - - hash - - b5yicoj+K8VgzOfcWBb8K7iHDxQ= - - optional - - - Resources/en.lproj/SUUpdateAlert.strings - - hash - - FSez7jCd0gDTFFGHiWL1QXY8OUU= - - optional - - - Resources/en.lproj/SUUpdatePermissionPrompt.strings - - hash - - EaC80n7+UINShc7jqOj5ZftVz60= - - optional - - - Resources/es.lproj/SUAutomaticUpdateAlert.strings - - hash - - VOOzavNjCse4aSMvFX8NobiHlNs= - - optional - - - Resources/es.lproj/SUUpdateAlert.strings - - hash - - axEKPX5h8sFGOTSOnasjD3OHXc8= - - optional - - - Resources/es.lproj/SUUpdatePermissionPrompt.strings - - hash - - g9KwrSpJGw27GN5BzGZi84AHrQo= - - optional - - - Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - optional - - - Resources/fi.lproj/SUAutomaticUpdateAlert.strings - - hash - - 9MHx5J2l4V4dMcwtvuxkR81JyhE= - - optional - - - Resources/fi.lproj/SUUpdateAlert.strings - - hash - - HAZee52kwb4xj+XU0NT+e83gnRY= - - optional - - - Resources/fi.lproj/SUUpdatePermissionPrompt.strings - - hash - - bb5HTRQUQFUqoDnBKBIR6A2WKc4= - - optional - - - Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - optional - - - Resources/fr.lproj/SUAutomaticUpdateAlert.strings - - hash - - X8zqBBnkDgZynGth66q0p/cK+FE= - - optional - - - Resources/fr.lproj/SUUpdateAlert.strings - - hash - - Hz89lX88i5x+vi6K2xEseJrz4HU= - - optional - - - Resources/fr.lproj/SUUpdatePermissionPrompt.strings - - hash - - +qEeqjQfxQ3oHNz1Dr1KL3as4xc= - - optional - - - Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - optional - - - Resources/he.lproj/SUAutomaticUpdateAlert.strings - - hash - - LAf4FNGLnXtTlmpgkNNK8OPcrkQ= - - optional - - - Resources/he.lproj/SUUpdateAlert.strings - - hash - - TFRQPnW/KziPaszAKC9UTpKcQYY= - - optional - - - Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - optional - - - Resources/hr.lproj/SUAutomaticUpdateAlert.strings - - hash - - q9CJFlxBeZCtj5Vzvbp2D1GYXUU= - - optional - - - Resources/hr.lproj/SUUpdateAlert.strings - - hash - - yV8ppSHVPstpruV3OfrIoGFa/ns= - - optional - - - Resources/hr.lproj/SUUpdatePermissionPrompt.strings - - hash - - cQW3+4P52+950dJauRBOXzQyptQ= - - optional - - - Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - optional - - - Resources/hu.lproj/SUAutomaticUpdateAlert.strings - - hash - - fukrrwph1xaiPF8tN+mq1/rgU74= - - optional - - - Resources/hu.lproj/SUUpdateAlert.strings - - hash - - IExsy6/OJ+mhFR1UJNlWGqB4Cv0= - - optional - - - Resources/hu.lproj/SUUpdatePermissionPrompt.strings - - hash - - U6PSRQd/AETVeVyeuRndr/vH9fE= - - optional - - - Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - optional - - - Resources/is.lproj/SUAutomaticUpdateAlert.strings - - hash - - O8XLdJlTHdjof6ooWfylemzcEnw= - - optional - - - Resources/is.lproj/SUUpdateAlert.strings - - hash - - D4qANBB2xz3qNDiEMNRweN9uYfs= - - optional - - - Resources/is.lproj/SUUpdatePermissionPrompt.strings - - hash - - 38/GOZCRTtnAb8rr9rm6A8UWCpo= - - optional - - - Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - optional - - - Resources/it.lproj/SUAutomaticUpdateAlert.strings - - hash - - Kqx7iO3wwCE5Ojck8YSFYHjaakw= - - optional - - - Resources/it.lproj/SUUpdateAlert.strings - - hash - - GYqMkm5hawyrjBBffKBxomiS2PI= - - optional - - - Resources/it.lproj/SUUpdatePermissionPrompt.strings - - hash - - 58lwR0dz1jJ4ArSN9XIg11Id9/Q= - - optional - - - Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - optional - - - Resources/ja.lproj/SUAutomaticUpdateAlert.strings - - hash - - a7zFYYUWMLPIuA04Zmi8FQFH850= - - optional - - - Resources/ja.lproj/SUUpdateAlert.strings - - hash - - zWrs1GohM3YdeIFqqXbuVUPMaDI= - - optional - - - Resources/ja.lproj/SUUpdatePermissionPrompt.strings - - hash - - w2jUcEIoxzvvhZILlplpe+Gnxb0= - - optional - - - Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - optional - - - Resources/ko.lproj/SUAutomaticUpdateAlert.strings - - hash - - 77Uv9cUpoDI1wuNKmaaDCD/MqVA= - - optional - - - Resources/ko.lproj/SUUpdateAlert.strings - - hash - - vgph4Q9zSsugo4E+oxPH0QE8Be8= - - optional - - - Resources/ko.lproj/SUUpdatePermissionPrompt.strings - - hash - - 3/JhngfaJnQx4NfATly/co2PY2c= - - optional - - - Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - optional - - - Resources/nb.lproj/SUAutomaticUpdateAlert.strings - - hash - - btPdapILACUFGJGKFdryIKW0x1o= - - optional - - - Resources/nb.lproj/SUUpdateAlert.strings - - hash - - 4yetlWmWsSlNv5350fa3OeelhqA= - - optional - - - Resources/nb.lproj/SUUpdatePermissionPrompt.strings - - hash - - 67GVEq48FUJvhQmYO0K/ZR6Gbi8= - - optional - - - Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - optional - - - Resources/nl.lproj/SUAutomaticUpdateAlert.strings - - hash - - qhViK9IgFG4yzvMSpM1JVZf+iVc= - - optional - - - Resources/nl.lproj/SUUpdateAlert.strings - - hash - - 7j38ljWbfTrXLwLhKFC5j6Iu5+M= - - optional - - - Resources/nl.lproj/SUUpdatePermissionPrompt.strings - - hash - - dvD7snDX0+ggop6cVfW3ToS2ppY= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - optional - - - Resources/pl.lproj/SUAutomaticUpdateAlert.strings - - hash - - 41WUAtM+WRHzMsEwhhvTBBszqX8= - - optional - - - Resources/pl.lproj/SUUpdateAlert.strings - - hash - - 7kEOWR6DKRm/L2AdK5CcdFgZyjM= - - optional - - - Resources/pl.lproj/SUUpdatePermissionPrompt.strings - - hash - - MzvV3vngIjz9ucrt2lqZDEu50rg= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - optional - - - Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings - - hash - - vJqAMzWpUfro0nhXvTt+rslhjk0= - - optional - - - Resources/pt_BR.lproj/SUUpdateAlert.strings - - hash - - 7pwMJx+KI0UUVgaWikfU46yFL0M= - - optional - - - Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings - - hash - - bfQIVc4cteu0uiRt0X+nGmHgXgg= - - optional - - - Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - optional - - - Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings - - hash - - orjgXcWUkmXc8stKTCkoSDssVZQ= - - optional - - - Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings - - hash - - l0nqQJsUsqJUnCb/rpxPQDkZK1c= - - optional - - - Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - optional - - - Resources/ro.lproj/SUAutomaticUpdateAlert.strings - - hash - - Q/BK/7uMSUmhVH9PGDtfGs0gmyE= - - optional - - - Resources/ro.lproj/SUUpdateAlert.strings - - hash - - ikQC1DV0PMrPFqUeoIvI9WC2hhM= - - optional - - - Resources/ro.lproj/SUUpdatePermissionPrompt.strings - - hash - - oWbTqm+BA0K7mg6zTkDGn4fUpAs= - - optional - - - Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - optional - - - Resources/ru.lproj/SUAutomaticUpdateAlert.strings - - hash - - 1u1xUfPaX76iHdRCnLN4N+rQbbk= - - optional - - - Resources/ru.lproj/SUUpdateAlert.strings - - hash - - 7C5BXulU9j7lmP8wWY8l0JAzSng= - - optional - - - Resources/ru.lproj/SUUpdatePermissionPrompt.strings - - hash - - vnna1nf1l2kpdx+slsDSWmc1zHI= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - optional - - - Resources/sk.lproj/SUAutomaticUpdateAlert.strings - - hash - - mcacHFF+DP1x6QEEwDdgih5KLf0= - - optional - - - Resources/sk.lproj/SUUpdateAlert.strings - - hash - - eG17GzSlQfjC4/mU1++Op/P4oPc= - - optional - - - Resources/sk.lproj/SUUpdatePermissionPrompt.strings - - hash - - U2/AO+eg1l0Sahng/AjXChXlTc4= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - optional - - - Resources/sl.lproj/SUAutomaticUpdateAlert.strings - - hash - - kA94ozF0qi31vtUuGgZ2ZMzu1DY= - - optional - - - Resources/sl.lproj/SUUpdateAlert.strings - - hash - - Jl19StfYmbiByPDrMQazCsH9SuM= - - optional - - - Resources/sl.lproj/SUUpdatePermissionPrompt.strings - - hash - - k/IJsVcHctZ2UbOtiQsTvHx74lc= - - optional - - - Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - optional - - - Resources/sv.lproj/SUAutomaticUpdateAlert.strings - - hash - - s7VqsrI40vJFZ3QHlJ8rAQLPQJc= - - optional - - - Resources/sv.lproj/SUUpdateAlert.strings - - hash - - ZJ/cyOSNuqJUjyR3eclaPRASOhE= - - optional - - - Resources/sv.lproj/SUUpdatePermissionPrompt.strings - - hash - - YbrfE5/QvbK0LNrSLHAY3/S4fFM= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - optional - - - Resources/th.lproj/SUAutomaticUpdateAlert.strings - - hash - - Hh55mq2azZNGsXUfsQ+aslIexIU= - - optional - - - Resources/th.lproj/SUUpdateAlert.strings - - hash - - BnhGQ74iKGYaENEK9iLaiAiXjDg= - - optional - - - Resources/th.lproj/SUUpdatePermissionPrompt.strings - - hash - - 0X0Yu67oweP0yQLjPMLQ5/SdrIY= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - optional - - - Resources/tr.lproj/SUAutomaticUpdateAlert.strings - - hash - - 6o5w0pqVbKmd5bWoiH9659+zRFM= - - optional - - - Resources/tr.lproj/SUUpdateAlert.strings - - hash - - +moR0Pq4x/xokjAcOmpUUIakSGc= - - optional - - - Resources/tr.lproj/SUUpdatePermissionPrompt.strings - - hash - - UPPnsRQdJuqMXNbSfZyi4cXSFys= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - optional - - - Resources/uk.lproj/SUUpdateAlert.strings - - hash - - UiYYV9jAIRc042ADR7KGxmBYLGM= - - optional - - - Resources/uk.lproj/SUUpdatePermissionPrompt.strings - - hash - - XO2ZqR7re0XFlFOjom3hqe8QYLQ= - - optional - - - Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - optional - - - Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings - - hash - - xuNfFlqaorqUnIg4Vud+VtY2ld8= - - optional - - - Resources/zh_CN.lproj/SUUpdateAlert.strings - - hash - - nv5vdtxa5px73vaGNZLva8Ke6/8= - - optional - - - Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings - - hash - - hsxf2OFnnjPvD0J6Txmtbqn0HEY= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - optional - - - Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings - - hash - - sK1HJbeQlnXwC/iWB2qCFdS3kJM= - - optional - - - Resources/zh_TW.lproj/SUUpdateAlert.strings - - hash - - V3vtjphOC+UWkuM/uqrEHt0jiWY= - - optional - - - Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings - - hash - - pieF1GpcUXW3VO30sjCT6YmCZ3Y= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - optional - - - - files2 - - Headers/SPUDownloadData.h - - hash - - 0uirAEMDYuzqSh3dbtfncvlTpvo= - - hash2 - - DkOXqPnwmXR6QeDI4ja3DtFxDW5L3Dcjf21hEPWImoY= - - - Headers/SPUDownloader.h - - hash - - OAA6tKxz1g4V1SQZaj3RPNmNMzo= - - hash2 - - OEDz5kY4WgtWuZ8SApjyqvVDEf3iEj7Sg2uhl+3J+jk= - - - Headers/SPUDownloaderDelegate.h - - hash - - UkBvHxzNYA/YON0ImE8m/8g4vkg= - - hash2 - - 8D6RyR2aziRQIiRN3e7qxlEM9jfgkwBBTWmSjDhLqm8= - - - Headers/SPUDownloaderProtocol.h - - hash - - VsD58zsMmnH4mVuK456ekiJcYFU= - - hash2 - - 02oqvyfRCQp5SMSBQNzYZaz1/0VTso0GKnOSbuDEAVo= - - - Headers/SPUDownloaderSession.h - - hash - - IeDSEpUGRwB9HcDVlqbxb6k19A8= - - hash2 - - ZFXLQz90P2h4rR2v1VqRAKzrSSlItkO5cW/0AFy7eYQ= - - - Headers/SPUURLRequest.h - - hash - - 588/W6GUNXYFVar9nygqHNYeTX8= - - hash2 - - 4EG4qYbJgM0wBJCoSPD1lbbDTLHlm85m4xNehyXyU74= - - - Headers/SUAppcast.h - - hash - - ijXg01wWM4PILv43/oVmilWSAR4= - - hash2 - - ODFhNuPB3a4Fc78v/H05oPl68Tn8hfStF6MtTOK1I/E= - - - Headers/SUAppcastItem.h - - hash - - hqAwTuGRw81S+ItxJNRJIFmv0oI= - - hash2 - - 3MKAA7S3EurLj+bjIjEyqiF5j09qBjd5i+koenojh20= - - - Headers/SUCodeSigningVerifier.h - - hash - - Wj90pgADRte0DhyUmlOXWORp830= - - hash2 - - PPwqqlfaR8hxIfD2YEKdVzyDN4kBVdul55HDAELxQ7U= - - - Headers/SUErrors.h - - hash - - vATt/NB1xz4PgfueN6n3fzlBngY= - - hash2 - - vXhq8HnaoILfAupZ7Ha75XziGXEB0sYF5p+Y2j0xiek= - - - Headers/SUExport.h - - hash - - G2w3uU/V7JzIupuOjQ2LyPVGdo4= - - hash2 - - XO8CQmbFThLbYg949NEGhg3g+iouIw3/3+BCCLtEdFE= - - - Headers/SUStandardVersionComparator.h - - hash - - 6L4GrA8i1OjMLIGc/sFvEUeSfso= - - hash2 - - 5HrjOlX+uJHOw1ma+1BtG5tlYx/75N/gVzt+BX/GOxg= - - - Headers/SUUpdater.h - - hash - - hUNhH96Bj0MbSvKXj4f0isWzHRg= - - hash2 - - Rc6NU8sWFXMeMimSvY/YSrtrVxA/wdbJk8C/4MnJuOY= - - - Headers/SUUpdaterDelegate.h - - hash - - MHw1NrGxR116E8+4fIwJlj7xhlU= - - hash2 - - I9h48457oU5WcQiRBj2su4zWt34+hDtHwnoeLWmZ7Ko= - - - Headers/SUVersionComparisonProtocol.h - - hash - - pin8CrEV9eYWF9sdDu0N1YixWOE= - - hash2 - - rsm3T+GsIhDgSqY8EtkBpIxYgSZCZxf4HE9a/FcTRCc= - - - Headers/SUVersionDisplayProtocol.h - - hash - - D3yVFnts0j1IacN9dSN7iZSVlZg= - - hash2 - - AQITUMp8aq1UAOrmksAKmGFpgI24u9rDSBBZrgDqdN4= - - - Headers/Sparkle.h - - hash - - FalUv9itQku7sZxHxlTv7agG7uc= - - hash2 - - QQUpD7vjCNffXnBTGI8P0g9Ow25VZAZtNPsb+Tb94Ik= - - - Modules/module.modulemap - - hash - - /2jgDcgH5+EG9ojcVskajfVo4yg= - - hash2 - - 1TF+JZkzFr6n8oH4WItto+C5Vf3K12f0H9KjqD0A5QU= - - - PrivateHeaders/SUUnarchiver.h - - hash - - 7mTpmnTkJ97DZQQzK/hdl2aZmXU= - - hash2 - - SQYAanTtlyX15CJapj5tDbhBEMtgQ7ZNdmpSij0+tD4= - - - Resources/Autoupdate.app/Contents/Info.plist - - hash - - p52Tc2SIfA7izoenzdLvHMinB5o= - - hash2 - - nC8PesOBETpTgifDv6Oe6FS4BjW/3+YsXnSOFyxImqs= - - - Resources/Autoupdate.app/Contents/MacOS/Autoupdate - - hash - - ACzGW2U3uYVUhXotLQCXO5RLLGk= - - hash2 - - YK63O8fQx6eooD88A+RwTszA3hCZXuD1WbILlGIOphc= - - - Resources/Autoupdate.app/Contents/MacOS/fileop - - hash - - tTUobsPsRgi70C/UoEGR5x+A/PU= - - hash2 - - e1uRp0QNdqqccLatoBLtHsi/ffmWe9dwrLZRyXDZAdg= - - - Resources/Autoupdate.app/Contents/PkgInfo - - hash - - n57qDP4tZfLD1rCS43W0B4LQjzE= - - hash2 - - glAhkclISwTWhTdPmHmgBmBpxJuKyuegSwHTjQfo7KA= - - - Resources/Autoupdate.app/Contents/Resources/AppIcon.icns - - hash - - 4McwRDEss5BzWwUMG2Xf93+ze08= - - hash2 - - nq7j0ugQwyNbJn/7zGFwxIR0njwU3i7hAYKEyZhvUfE= - - - Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings - - hash - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - hash2 - - 39CdfZZ1CQQz1Gd1+Ukxo2JHl0XESoc/cqWKF091WUk= - - optional - - - Resources/Autoupdate.app/Contents/Resources/SUStatus.nib - - hash - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - hash2 - - 8bmm56+lUnfMv3UQ4n/BaEp7hU1N1Wbur9BWMReUdso= - - - Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - hash2 - - 2cAJJ5NTxwpRgp24Ca3EuTXfaIIzsYdH3Y9cNCalZfc= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - hash2 - - om5I6jKleuRoCwjfrRRqKWQbs2l8lLj8QGKS47cxybA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - hash2 - - 8q22yKUhfKJVOOXteUQZAVVkhfzPQKzoSJdnVNkDPo8= - - optional - - - Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - hash2 - - wu0CpGqE79+TXKIQm+q7ycPTuXhOlwRr/wD5uGHJzLM= - - optional - - - Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - hash2 - - bA5bxESyZuC/dG2VKfN+eQ7CVb2qAWrwfu94IpJ4Xi0= - - optional - - - Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - hash2 - - wt+2xyusmWAQuJ5kAQlRlvFb1wO4L7/rFdG+VmNjl+Y= - - optional - - - Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - hash2 - - mtOoKdoTpGzeTNyzxkVGOMsE0Z3ZZOsmIKDfgA9aj8c= - - optional - - - Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - hash2 - - +AiiKWEdH3lesozLJBn3tfK6vi/VSI1/TnWVmIdVVsc= - - optional - - - Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - hash2 - - 8PKuKp2lymWYfR+BqJ15UWlxOQKUl3fEveeseHBfaTw= - - optional - - - Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - hash2 - - 4gUlWkwTANV/jd7n4OZoXyT8CAcgWVk/tI3a25wmuLg= - - optional - - - Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - hash2 - - TwklhrooHTXgV6Q9fbvvAB3mPIh7qDbEsNtUzo2fQuU= - - optional - - - Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - hash2 - - sRkp8c3Bx1qWdhhSNdOap1PbfmiTziINy1HxGea3SWU= - - optional - - - Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - hash2 - - xcV1yh/zU3U3TsRUT6vGybvIQitf+ThrogN/uOWmD8k= - - optional - - - Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - hash2 - - Y+caNW+g0mt7HP4JrBxJw+uDwN3j19UYb+q5r9ch4Ow= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - hash2 - - dSPIvpFbelHRv8liJjN3TUVPbgD1DfhVSGmE+S99quI= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - hash2 - - +bxn0NPgkxdHLa1MHRT+JRlYmy1jpIuaenpst5RT+RA= - - optional - - - Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - hash2 - - FG+w+OnLI7nwnNCWiMT50LU98VWj1d08ElfX4k7Ok4w= - - optional - - - Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - hash2 - - xnQkqxaO8zP1xpjY3nyjOd4Fe0gJon2Dbt456ukd/Gw= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - hash2 - - pDq+41jhfESgJauedrYncFY1O5EMEU3nRyl7mmyYj+s= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - hash2 - - lY5EZJwPc/Rmfhw1gotkeEKB+ANXqZUlM2G92sZwdJc= - - optional - - - Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - hash2 - - RUq6VJjn/QyydkNbpklLwfCgRF62+uHhXen2dYLBNuQ= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - hash2 - - NNvDsecglQ/utR6YEqxyMj5K976YRWieCIC/PZuWCtQ= - - optional - - - Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - hash2 - - +vCWSRbECqQcsR6Nd8erQda/7x+ku/kQSUvZtTvemyQ= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - hash2 - - e3cyzJ87ohC1ff/BzZ5O00MnwRE02U+J1KwXlSZeSSg= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - hash2 - - t8QC+9TBONwKLQvV3fKV0umsnAS8ZDpqPikVksFPtWc= - - optional - - - Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - hash2 - - mJY6aeXFnSx38bF630z5lNPmPtsoYVAwadh0KC+9vfQ= - - optional - - - Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - hash2 - - nlP7repbMz6EqHo3sZWnK3tzx47WKSWnULdUHCYPgKk= - - optional - - - Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - hash2 - - xEXUfrylPld+eFGrPyj4wTRPj7vUWOZ2f94sWydq03M= - - optional - - - Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - hash2 - - u0572QZYh6sB0GQdMGMePalOf4zkxE7YQG7pp898SEg= - - optional - - - Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - hash2 - - zvMbFdgVGI0ls9vIRT+sie7dj2g1UjQu7iS+pOgyBo4= - - optional - - - Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - hash2 - - Vlf/4QD7/3S0SFqxmTWWcSwtTLWISKUSvLjpgWb7lxQ= - - optional - - - Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources - - hash - - v0QA+kkQGw9okTq801tvxpB7aeI= - - hash2 - - 4HHWMdAkw+NSiE4fNbRTyosQktLQPTt7FquDU28FQ1o= - - - Resources/Base.lproj/SUAutomaticUpdateAlert.nib - - hash - - l5KRdkey8A+be1W07Fhr06if6cs= - - hash2 - - CNKETBNQKGCdiaGXTNHfZryvPen1njeBiogv+qwcxYY= - - - Resources/Base.lproj/SUUpdateAlert.nib - - hash - - /5NdqXefzh9fVmTWRKVz/dz7pdw= - - hash2 - - 3qCp7RlRzgBr+2sKYCwi8HHNgyd4o/oux+xOrVjbnyM= - - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib - - hash - - JB54prg8VvKpDEetrrMtMBK+5iA= - - hash2 - - lxaUGopoUbuPN1mnss8eZ6JutMXQEv1umhh47DPfVTw= - - - Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib - - hash - - 6pTb8Z8gXml+rdQ5fUvN/d9xQJQ= - - hash2 - - QC/9aYToBvX/3YC46ZCApZuD8HxeXUttgYSdE5/Eghw= - - - Resources/Base.lproj/Sparkle.strings - - hash - - cHZov5FaqzfNhnBo0XdRuTMT4SY= - - hash2 - - 39CdfZZ1CQQz1Gd1+Ukxo2JHl0XESoc/cqWKF091WUk= - - - Resources/Info.plist - - hash - - rQ/FRiyYYO6F/U6yfXPV2kBnyjk= - - hash2 - - nAG/XbpMyDfMCrQD+CeQnfRXhCtHS519Px7PI/tjIyA= - - - Resources/ReleaseNotesColorStyle.css - - hash - - IOA6sGO744sbLxfJB3d3qfO4A9c= - - hash2 - - z45Huj96ZDVNdbo/PVVvlt/9FbA1bwSEWqzEhZsupbM= - - - Resources/SUModelTranslation.plist - - hash - - iD2Ex40Usc4ZE6IAhRePqgwK/xw= - - hash2 - - bxnpRQhROJXTL2xuIeffR3p+hOuuji7eOoDeNqSYqTg= - - - Resources/SUStatus.nib - - hash - - 6I4uX0FrluZpgUjoCaB46P/0lY0= - - hash2 - - 8bmm56+lUnfMv3UQ4n/BaEp7hU1N1Wbur9BWMReUdso= - - - Resources/ar.lproj/SUAutomaticUpdateAlert.strings - - hash - - Gc/+6p+JGq05Dr2lHXQa6fUgUYg= - - hash2 - - Pn5LWe7wZHCPW2nyy42kz4A1Kr6+cCrKFAL9OTgRs9w= - - optional - - - Resources/ar.lproj/SUUpdateAlert.strings - - hash - - 3i0bFULMGTvevM7VgyCgzSEKwv8= - - hash2 - - uRx5CQ0pw+aW4jIM0qom55BNq5nGnqLSIn0c+MN29lU= - - optional - - - Resources/ar.lproj/SUUpdatePermissionPrompt.strings - - hash - - TsXfb0PxtoasCcH9iA899TrlQS0= - - hash2 - - Rl2XvCAvfnqAnOZ0FYrvAoQ/JH/mm2SKfjy7oBng0BU= - - optional - - - Resources/ar.lproj/Sparkle.strings - - hash - - Rf4jjdgTqvfw5JO/6f9jHMURv/U= - - hash2 - - 2cAJJ5NTxwpRgp24Ca3EuTXfaIIzsYdH3Y9cNCalZfc= - - optional - - - Resources/ca.lproj/SUAutomaticUpdateAlert.strings - - hash - - mXA5B1SwJO1dYyfy4H7ji6+Bnh4= - - hash2 - - vbl+iYvcn2f9VqF3iMndW+G654yNsT9LPV9xMkzjSLQ= - - optional - - - Resources/ca.lproj/SUUpdateAlert.strings - - hash - - l9CaCmAXFcs+Z+8rRt7PX9onkf8= - - hash2 - - 18qLsTRnJfi0wDf6A85XbiMXGORSmuo9Ul3IK4m5gq0= - - optional - - - Resources/ca.lproj/Sparkle.strings - - hash - - wGGx+QzPg/20zZTq7jwCTgf/Ubc= - - hash2 - - om5I6jKleuRoCwjfrRRqKWQbs2l8lLj8QGKS47cxybA= - - optional - - - Resources/cs.lproj/SUAutomaticUpdateAlert.strings - - hash - - q7RtvrY0T4KQ49y6xP17YL/QVXw= - - hash2 - - GoRT5lNBly37VKkTK0WanCxNNTXEQtfaPzwAu+2UCRs= - - optional - - - Resources/cs.lproj/SUUpdateAlert.strings - - hash - - G9Wgf14zMhU2alRSZvqclMmlTCA= - - hash2 - - qSoDl0PIYv+OrSxtJfUYk9xeQihmzfaxAf+egKyw4y4= - - optional - - - Resources/cs.lproj/SUUpdatePermissionPrompt.strings - - hash - - iUcJO6Oa4RdO3RM4xkx7VH0fEYs= - - hash2 - - 9IB5sPkYYGwB/nkU/FQJk6JaGs3GNGvoyqgGnHX8Ka0= - - optional - - - Resources/cs.lproj/Sparkle.strings - - hash - - Gyp0nPqNvS5KdfMw+6ieF0yUTnI= - - hash2 - - 8q22yKUhfKJVOOXteUQZAVVkhfzPQKzoSJdnVNkDPo8= - - optional - - - Resources/da.lproj/SUAutomaticUpdateAlert.strings - - hash - - pjGE/D46Oz4q6UmORxOJs+G29Eg= - - hash2 - - p0zrut+VgPpTyIM2vQbR1RRU/gmSkYqC8A321d7XkkQ= - - optional - - - Resources/da.lproj/SUUpdateAlert.strings - - hash - - K/KCW6Ua+P3VcI3SMxkAxLmJhcA= - - hash2 - - /azcJwQrxz1fwI1CIAbhLCnfVH5BqGdQCCyra8Av9pc= - - optional - - - Resources/da.lproj/SUUpdatePermissionPrompt.strings - - hash - - IwkdeONJSO8+bNOj/x/5U6Gh960= - - hash2 - - tP1dv9ZUdEeAn4XulcSOuf8fVd7XsvVgC9EGUo7NWMQ= - - optional - - - Resources/da.lproj/Sparkle.strings - - hash - - 0t7SuLDMBZVsY240PAEsVfH/1qw= - - hash2 - - wu0CpGqE79+TXKIQm+q7ycPTuXhOlwRr/wD5uGHJzLM= - - optional - - - Resources/de.lproj/SUAutomaticUpdateAlert.strings - - hash - - p1AUay57hNweYVXQRbKhF9JBiOs= - - hash2 - - 3mTPgCcFCJmepFAcSTnIFglblz4gGZsSfSk3A4gzejE= - - optional - - - Resources/de.lproj/SUUpdateAlert.strings - - hash - - hQet+8ztnlTGDqiaGgGRTuC7tzQ= - - hash2 - - MwHlm9tgJSWhQ+8bj0EjeYXGOQmSNAfZRAQoMfxo6v8= - - optional - - - Resources/de.lproj/SUUpdatePermissionPrompt.strings - - hash - - bA9NYJIUB6btvBf0Eyl8Hf4PxAo= - - hash2 - - mNxOzQrKaCG1gQnnM8mpI0FasULtLdna0GQ/OOeYD1g= - - optional - - - Resources/de.lproj/Sparkle.strings - - hash - - fXH7MjrA6hDT/k/8B6Vwgntt2lw= - - hash2 - - bA5bxESyZuC/dG2VKfN+eQ7CVb2qAWrwfu94IpJ4Xi0= - - optional - - - Resources/el.lproj/SUAutomaticUpdateAlert.strings - - hash - - cCsxa29K0thPsbGJvXr7GOm6UGQ= - - hash2 - - bh5q2+KfGE9/icd4izLrNShMPO7do/DXfpjorIXn+tY= - - optional - - - Resources/el.lproj/SUUpdateAlert.strings - - hash - - E3H8KwboutH9TcO/tzeWqmhmuEw= - - hash2 - - iZKCihFafXt61skZGQo5dK0MOrJ8+dX1jPmZaGb69r4= - - optional - - - Resources/el.lproj/SUUpdatePermissionPrompt.strings - - hash - - Ku1XJbSAsfKftCMDR5rYF/djH7g= - - hash2 - - fy+XXQCqEybznJg8OkbOjLZmNSSNP1Tfmcpkma+X4dU= - - optional - - - Resources/el.lproj/Sparkle.strings - - hash - - NbIN+TRHORCL5Gfj68VRq4KdPXo= - - hash2 - - wt+2xyusmWAQuJ5kAQlRlvFb1wO4L7/rFdG+VmNjl+Y= - - optional - - - Resources/en.lproj/SUAutomaticUpdateAlert.strings - - hash - - b5yicoj+K8VgzOfcWBb8K7iHDxQ= - - hash2 - - 6C2hJUCj1chXSJrjcHSdN4mhOBSnSCKLpdGMu4PTclI= - - optional - - - Resources/en.lproj/SUUpdateAlert.strings - - hash - - FSez7jCd0gDTFFGHiWL1QXY8OUU= - - hash2 - - EBVS8ZfEIJxGSghO17emwoHQo0LVWWzBJMFs8RwvKWg= - - optional - - - Resources/en.lproj/SUUpdatePermissionPrompt.strings - - hash - - EaC80n7+UINShc7jqOj5ZftVz60= - - hash2 - - Dg7bYYtrYYDFVCUeJ3nJQbLKPFuwTwd0MoOzwLIgvkU= - - optional - - - Resources/es.lproj/SUAutomaticUpdateAlert.strings - - hash - - VOOzavNjCse4aSMvFX8NobiHlNs= - - hash2 - - t6ufoIzHZ4NlVSU1wZ21WYEiHECKq12r3bRcMFz5rZI= - - optional - - - Resources/es.lproj/SUUpdateAlert.strings - - hash - - axEKPX5h8sFGOTSOnasjD3OHXc8= - - hash2 - - 964PsHMz6RYRzHjmD4aHbNfnY0BZGw3ZakxYCb71ae0= - - optional - - - Resources/es.lproj/SUUpdatePermissionPrompt.strings - - hash - - g9KwrSpJGw27GN5BzGZi84AHrQo= - - hash2 - - suNHmE7WRJZq8mNFLp9QYfVV964BDzRz2pRhHLgNrZo= - - optional - - - Resources/es.lproj/Sparkle.strings - - hash - - QPG88BN+x/l2Qk1NLLe3wRa26mQ= - - hash2 - - mtOoKdoTpGzeTNyzxkVGOMsE0Z3ZZOsmIKDfgA9aj8c= - - optional - - - Resources/fi.lproj/SUAutomaticUpdateAlert.strings - - hash - - 9MHx5J2l4V4dMcwtvuxkR81JyhE= - - hash2 - - pkAiRhBgRqKODWvT04bUmEhoXM//OwzLMMacHVCkLHk= - - optional - - - Resources/fi.lproj/SUUpdateAlert.strings - - hash - - HAZee52kwb4xj+XU0NT+e83gnRY= - - hash2 - - ByEJSZxbPqB52PM74lywQGxYfs3wfNbQQiUiXwshavQ= - - optional - - - Resources/fi.lproj/SUUpdatePermissionPrompt.strings - - hash - - bb5HTRQUQFUqoDnBKBIR6A2WKc4= - - hash2 - - 9dvePYLJT6vqQZlwmfJx+mliaSJV+CVHJ0O4SYP9Sag= - - optional - - - Resources/fi.lproj/Sparkle.strings - - hash - - yd6pIoSj19HMDIUos4Td1Fch7bs= - - hash2 - - +AiiKWEdH3lesozLJBn3tfK6vi/VSI1/TnWVmIdVVsc= - - optional - - - Resources/fr.lproj/SUAutomaticUpdateAlert.strings - - hash - - X8zqBBnkDgZynGth66q0p/cK+FE= - - hash2 - - XY+/W7oB862CPJlWBCm6yoVoxIMukQv5xAzm0brzCoo= - - optional - - - Resources/fr.lproj/SUUpdateAlert.strings - - hash - - Hz89lX88i5x+vi6K2xEseJrz4HU= - - hash2 - - 5HyLxNXA6rhr/jBtPvnw0+yJJL9XVe+Ct76L0BIk3vk= - - optional - - - Resources/fr.lproj/SUUpdatePermissionPrompt.strings - - hash - - +qEeqjQfxQ3oHNz1Dr1KL3as4xc= - - hash2 - - uu2YORcUdz/rkkEYWS729pRWZW6oJHPon1QScUfAMSo= - - optional - - - Resources/fr.lproj/Sparkle.strings - - hash - - xFBTJYPjf7rlbYdkRKNTsPYz5JA= - - hash2 - - 8PKuKp2lymWYfR+BqJ15UWlxOQKUl3fEveeseHBfaTw= - - optional - - - Resources/he.lproj/SUAutomaticUpdateAlert.strings - - hash - - LAf4FNGLnXtTlmpgkNNK8OPcrkQ= - - hash2 - - G8M6LggmVBGvs8bR9Qq82Bs8/cEQVnl6iW8ehjd2TqA= - - optional - - - Resources/he.lproj/SUUpdateAlert.strings - - hash - - TFRQPnW/KziPaszAKC9UTpKcQYY= - - hash2 - - FgPs07QNaPy/5AFYQ6Ez38I7cIf5M9dT9uDnglG4WpA= - - optional - - - Resources/he.lproj/Sparkle.strings - - hash - - U2WmlYGYmeeIlSW66R8awwmNXIE= - - hash2 - - 4gUlWkwTANV/jd7n4OZoXyT8CAcgWVk/tI3a25wmuLg= - - optional - - - Resources/hr.lproj/SUAutomaticUpdateAlert.strings - - hash - - q9CJFlxBeZCtj5Vzvbp2D1GYXUU= - - hash2 - - 3/H+HwIyJBhxprDpKsPhZHyWqjVT02EkxxKapnLtUcM= - - optional - - - Resources/hr.lproj/SUUpdateAlert.strings - - hash - - yV8ppSHVPstpruV3OfrIoGFa/ns= - - hash2 - - 06i/9O7wG6LGC572R+3wowpqSb3P+MwYSTLFnFFyvP4= - - optional - - - Resources/hr.lproj/SUUpdatePermissionPrompt.strings - - hash - - cQW3+4P52+950dJauRBOXzQyptQ= - - hash2 - - l2Qk6qfprQOK0oXeZz24jATW77v8hYQAkVvU9lou+kE= - - optional - - - Resources/hr.lproj/Sparkle.strings - - hash - - 7LLOVs76ioMwEDV8Gah+6sV/5No= - - hash2 - - TwklhrooHTXgV6Q9fbvvAB3mPIh7qDbEsNtUzo2fQuU= - - optional - - - Resources/hu.lproj/SUAutomaticUpdateAlert.strings - - hash - - fukrrwph1xaiPF8tN+mq1/rgU74= - - hash2 - - lRiL3r4oDYHRi9tfwKJABAJqkP3mPseAf9GMIEqPPGg= - - optional - - - Resources/hu.lproj/SUUpdateAlert.strings - - hash - - IExsy6/OJ+mhFR1UJNlWGqB4Cv0= - - hash2 - - mpjPrIAVU7SpZo+X+xrcD1+y4pB0o5KxAeYNrXO2HuI= - - optional - - - Resources/hu.lproj/SUUpdatePermissionPrompt.strings - - hash - - U6PSRQd/AETVeVyeuRndr/vH9fE= - - hash2 - - ussA/dWXDOop1UC6tIxk4We9mZtaORWfqBXcrYbLwYA= - - optional - - - Resources/hu.lproj/Sparkle.strings - - hash - - bNEmsO2LyUsMjTESH1I42V9sAOo= - - hash2 - - sRkp8c3Bx1qWdhhSNdOap1PbfmiTziINy1HxGea3SWU= - - optional - - - Resources/is.lproj/SUAutomaticUpdateAlert.strings - - hash - - O8XLdJlTHdjof6ooWfylemzcEnw= - - hash2 - - xS0YZKRIT5udTM322k+vgh1zBkHeCcUtWqzbH5H8SH4= - - optional - - - Resources/is.lproj/SUUpdateAlert.strings - - hash - - D4qANBB2xz3qNDiEMNRweN9uYfs= - - hash2 - - xGxSjuuEaKDyxmQ5FhdG94YqAovO+fWnV689UaKtUC0= - - optional - - - Resources/is.lproj/SUUpdatePermissionPrompt.strings - - hash - - 38/GOZCRTtnAb8rr9rm6A8UWCpo= - - hash2 - - 5Y/UWtsS8SEszwvwXFHYCqqbczoiPy1WB9iZ8b2HQ6o= - - optional - - - Resources/is.lproj/Sparkle.strings - - hash - - 8fxzD9ZhrvIZVZB1+QSJaPzg80M= - - hash2 - - xcV1yh/zU3U3TsRUT6vGybvIQitf+ThrogN/uOWmD8k= - - optional - - - Resources/it.lproj/SUAutomaticUpdateAlert.strings - - hash - - Kqx7iO3wwCE5Ojck8YSFYHjaakw= - - hash2 - - eIJCznk6o3zNiOyBHIbnvttKN2fK9Vj4fujqnC1Dq74= - - optional - - - Resources/it.lproj/SUUpdateAlert.strings - - hash - - GYqMkm5hawyrjBBffKBxomiS2PI= - - hash2 - - SAuXAvsN6neYXWRSPpR1aEUIsLy6i5c0eo2ncKMsDPs= - - optional - - - Resources/it.lproj/SUUpdatePermissionPrompt.strings - - hash - - 58lwR0dz1jJ4ArSN9XIg11Id9/Q= - - hash2 - - jRFUfBngnxbbdrbawfdx1XNMi01drBLGNQPqSSmvxXg= - - optional - - - Resources/it.lproj/Sparkle.strings - - hash - - bk1J6vpZjWeUFhBYWuWZf8TDv1A= - - hash2 - - Y+caNW+g0mt7HP4JrBxJw+uDwN3j19UYb+q5r9ch4Ow= - - optional - - - Resources/ja.lproj/SUAutomaticUpdateAlert.strings - - hash - - a7zFYYUWMLPIuA04Zmi8FQFH850= - - hash2 - - xTVYLjDXI3HdbgRlRm5bYcln1ALexjtDLj5nX4sXUPo= - - optional - - - Resources/ja.lproj/SUUpdateAlert.strings - - hash - - zWrs1GohM3YdeIFqqXbuVUPMaDI= - - hash2 - - usXBqD8J4yH4po/bYyHHd1hm5MYOPnOs1d9UbHQsW4I= - - optional - - - Resources/ja.lproj/SUUpdatePermissionPrompt.strings - - hash - - w2jUcEIoxzvvhZILlplpe+Gnxb0= - - hash2 - - 9VuzMZyGA4nn7DDCXwV/mvtvlKYv54r3lRqPpgMERZg= - - optional - - - Resources/ja.lproj/Sparkle.strings - - hash - - f4EbR/GfMsKeWJ5DN/vhwg/lUoE= - - hash2 - - dSPIvpFbelHRv8liJjN3TUVPbgD1DfhVSGmE+S99quI= - - optional - - - Resources/ko.lproj/SUAutomaticUpdateAlert.strings - - hash - - 77Uv9cUpoDI1wuNKmaaDCD/MqVA= - - hash2 - - k+mhv00biQbcEfPhoS8EzzL0a2xssbYYjkwal5uFhws= - - optional - - - Resources/ko.lproj/SUUpdateAlert.strings - - hash - - vgph4Q9zSsugo4E+oxPH0QE8Be8= - - hash2 - - yUqNvLchhyJ2BH3Yq3U1NnL46CL0w6VRB4JVNuwz6g4= - - optional - - - Resources/ko.lproj/SUUpdatePermissionPrompt.strings - - hash - - 3/JhngfaJnQx4NfATly/co2PY2c= - - hash2 - - PX2SvKcIkhP2ceyLZ2SpeFMzE4EP3DTUTcm91DdgQYc= - - optional - - - Resources/ko.lproj/Sparkle.strings - - hash - - FRHRQPCWEk9GdJawYTuccg+E2tA= - - hash2 - - +bxn0NPgkxdHLa1MHRT+JRlYmy1jpIuaenpst5RT+RA= - - optional - - - Resources/nb.lproj/SUAutomaticUpdateAlert.strings - - hash - - btPdapILACUFGJGKFdryIKW0x1o= - - hash2 - - wRrYlbNYYYkbst9kIwBw4AQfym5Y0QeSl7iPMfNLk1g= - - optional - - - Resources/nb.lproj/SUUpdateAlert.strings - - hash - - 4yetlWmWsSlNv5350fa3OeelhqA= - - hash2 - - URYhnZIMa8OvF8sBU+FUPdFH7BiNM2vVTiVvLZzG3XY= - - optional - - - Resources/nb.lproj/SUUpdatePermissionPrompt.strings - - hash - - 67GVEq48FUJvhQmYO0K/ZR6Gbi8= - - hash2 - - Ji6pJY7BSHDIiNkn+DRMvwBlz12RhEIs+HHppiX1i7E= - - optional - - - Resources/nb.lproj/Sparkle.strings - - hash - - sgrDElwUxXtzdw8WaUFWyK3pG9Y= - - hash2 - - FG+w+OnLI7nwnNCWiMT50LU98VWj1d08ElfX4k7Ok4w= - - optional - - - Resources/nl.lproj/SUAutomaticUpdateAlert.strings - - hash - - qhViK9IgFG4yzvMSpM1JVZf+iVc= - - hash2 - - VqNgtlGijMc75Nu3i6+sTfnoKM57Ieh4ixuJF0r9+tA= - - optional - - - Resources/nl.lproj/SUUpdateAlert.strings - - hash - - 7j38ljWbfTrXLwLhKFC5j6Iu5+M= - - hash2 - - LCYKnuISnccrUE8I4IJUuT4+uDk/zIrlOpQ+/vuvSZA= - - optional - - - Resources/nl.lproj/SUUpdatePermissionPrompt.strings - - hash - - dvD7snDX0+ggop6cVfW3ToS2ppY= - - hash2 - - SC4zWPQZqy6aYTOskFCtuHU0XNGcB9e+Yr6YIC+7s5Y= - - optional - - - Resources/nl.lproj/Sparkle.strings - - hash - - PWbC08zHFLROqivY2MAklDh6gkA= - - hash2 - - xnQkqxaO8zP1xpjY3nyjOd4Fe0gJon2Dbt456ukd/Gw= - - optional - - - Resources/pl.lproj/SUAutomaticUpdateAlert.strings - - hash - - 41WUAtM+WRHzMsEwhhvTBBszqX8= - - hash2 - - YlPxlqp8YP9XUIjzX7MajVf03GdiiM4EeSjqLYMFl00= - - optional - - - Resources/pl.lproj/SUUpdateAlert.strings - - hash - - 7kEOWR6DKRm/L2AdK5CcdFgZyjM= - - hash2 - - m1IOQ49UHfw7ir1AaDv2LSO0vU3EFuQhFuaYqhi3O+Y= - - optional - - - Resources/pl.lproj/SUUpdatePermissionPrompt.strings - - hash - - MzvV3vngIjz9ucrt2lqZDEu50rg= - - hash2 - - PsI1hAsjVN0ZbAdxuuQVdIeKU6xrPd3XKjP8vn75jU4= - - optional - - - Resources/pl.lproj/Sparkle.strings - - hash - - o7deBXE2Ct8/vQxouej5KkwTcUA= - - hash2 - - pDq+41jhfESgJauedrYncFY1O5EMEU3nRyl7mmyYj+s= - - optional - - - Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings - - hash - - vJqAMzWpUfro0nhXvTt+rslhjk0= - - hash2 - - eHjkAKVprQaDVNe+3pYqhaV1qQCEh4UbfhLLtov2SPE= - - optional - - - Resources/pt_BR.lproj/SUUpdateAlert.strings - - hash - - 7pwMJx+KI0UUVgaWikfU46yFL0M= - - hash2 - - q/BSio3dMuunv6BC58Sv2l/gvp+2wJzsf2e56PcQEbU= - - optional - - - Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings - - hash - - bfQIVc4cteu0uiRt0X+nGmHgXgg= - - hash2 - - CM7a1F51+YrR66BI0QVnobbIbGwxTi66PN9PICnrehU= - - optional - - - Resources/pt_BR.lproj/Sparkle.strings - - hash - - /adUv04OXQkCFv+Oed6qktFVQ3E= - - hash2 - - lY5EZJwPc/Rmfhw1gotkeEKB+ANXqZUlM2G92sZwdJc= - - optional - - - Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings - - hash - - orjgXcWUkmXc8stKTCkoSDssVZQ= - - hash2 - - cDzXADa1OfkSPmrj9sY+aVritLldoGNyvias1MRsq+w= - - optional - - - Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings - - hash - - l0nqQJsUsqJUnCb/rpxPQDkZK1c= - - hash2 - - yMNAuD53isB2hRFis8L0xy+9/0uoey+l7K6fh4pBKN8= - - optional - - - Resources/pt_PT.lproj/Sparkle.strings - - hash - - Mji9loJOJvuDY9hz3FhQ4H+HY5E= - - hash2 - - RUq6VJjn/QyydkNbpklLwfCgRF62+uHhXen2dYLBNuQ= - - optional - - - Resources/ro.lproj/SUAutomaticUpdateAlert.strings - - hash - - Q/BK/7uMSUmhVH9PGDtfGs0gmyE= - - hash2 - - wxAPjjUnXGsG49heQfa+eQ2mnedCfkHAky1AwtQ7fDM= - - optional - - - Resources/ro.lproj/SUUpdateAlert.strings - - hash - - ikQC1DV0PMrPFqUeoIvI9WC2hhM= - - hash2 - - XYQjdLS490eNt3Ax/kzFSLyKa78HkMKQk4Br9kwogoU= - - optional - - - Resources/ro.lproj/SUUpdatePermissionPrompt.strings - - hash - - oWbTqm+BA0K7mg6zTkDGn4fUpAs= - - hash2 - - NvmMHW0iH3YQ1n4YtSVEFX86UTl1R+D1U16OFDMXh0A= - - optional - - - Resources/ro.lproj/Sparkle.strings - - hash - - 9U+OTz29kXKZHY/nmvbtemMsB3g= - - hash2 - - NNvDsecglQ/utR6YEqxyMj5K976YRWieCIC/PZuWCtQ= - - optional - - - Resources/ru.lproj/SUAutomaticUpdateAlert.strings - - hash - - 1u1xUfPaX76iHdRCnLN4N+rQbbk= - - hash2 - - mxnfG/PzVnIrquNtxz9xilHzGSLULnqiUjmy4wPr1IY= - - optional - - - Resources/ru.lproj/SUUpdateAlert.strings - - hash - - 7C5BXulU9j7lmP8wWY8l0JAzSng= - - hash2 - - lfzx/TY3AUVw2O/EEdIhDlVThSVpdFiZln/hkMw6msE= - - optional - - - Resources/ru.lproj/SUUpdatePermissionPrompt.strings - - hash - - vnna1nf1l2kpdx+slsDSWmc1zHI= - - hash2 - - 8jOWo4oxwiF5d5L8CZk/HZcPcylp+OXSPOJfws65DcI= - - optional - - - Resources/ru.lproj/Sparkle.strings - - hash - - x6JdY7WL2dHnGXX6PHJl5da7WKE= - - hash2 - - +vCWSRbECqQcsR6Nd8erQda/7x+ku/kQSUvZtTvemyQ= - - optional - - - Resources/sk.lproj/SUAutomaticUpdateAlert.strings - - hash - - mcacHFF+DP1x6QEEwDdgih5KLf0= - - hash2 - - YW4YAVzd9dxoTpTCrjm8hqDWe4CnuYdws10w/+jo6R8= - - optional - - - Resources/sk.lproj/SUUpdateAlert.strings - - hash - - eG17GzSlQfjC4/mU1++Op/P4oPc= - - hash2 - - 2yJUxJBPRrnYu199ssT/FDZPYYAcTVIlBTNcJlg7qok= - - optional - - - Resources/sk.lproj/SUUpdatePermissionPrompt.strings - - hash - - U2/AO+eg1l0Sahng/AjXChXlTc4= - - hash2 - - qNaz6OV60LKqJPoUXFcG7IbEPZbOzdNy0U9E3c1Y6Mk= - - optional - - - Resources/sk.lproj/Sparkle.strings - - hash - - qn/mo2EFOyw6keezS64Wo5ZGZXU= - - hash2 - - e3cyzJ87ohC1ff/BzZ5O00MnwRE02U+J1KwXlSZeSSg= - - optional - - - Resources/sl.lproj/SUAutomaticUpdateAlert.strings - - hash - - kA94ozF0qi31vtUuGgZ2ZMzu1DY= - - hash2 - - x7tcti47AfpXmhXtisJ3RZB09lViBpHE0zSVQFhmWBo= - - optional - - - Resources/sl.lproj/SUUpdateAlert.strings - - hash - - Jl19StfYmbiByPDrMQazCsH9SuM= - - hash2 - - bxB9INNteyLOVcT6y9aLkMoHcpFfB8BbLFxvP2wI/ZU= - - optional - - - Resources/sl.lproj/SUUpdatePermissionPrompt.strings - - hash - - k/IJsVcHctZ2UbOtiQsTvHx74lc= - - hash2 - - T21OgIyn9uMdQlz4iMJ4zwhQp0HL7/t4VwrVJGbq3OE= - - optional - - - Resources/sl.lproj/Sparkle.strings - - hash - - kwvdisufBenuQzrVg8tYKTX+qgg= - - hash2 - - t8QC+9TBONwKLQvV3fKV0umsnAS8ZDpqPikVksFPtWc= - - optional - - - Resources/sv.lproj/SUAutomaticUpdateAlert.strings - - hash - - s7VqsrI40vJFZ3QHlJ8rAQLPQJc= - - hash2 - - 24Tcx4srno5b5X3jPdzJf51UB3Y7rYxLI3yo/txJv4E= - - optional - - - Resources/sv.lproj/SUUpdateAlert.strings - - hash - - ZJ/cyOSNuqJUjyR3eclaPRASOhE= - - hash2 - - EqY2I/Kubso7K1QNVN6iFqAxdrs9r1S06T3LQmT4sCM= - - optional - - - Resources/sv.lproj/SUUpdatePermissionPrompt.strings - - hash - - YbrfE5/QvbK0LNrSLHAY3/S4fFM= - - hash2 - - u3ViwNFjHDH1L0YwAbMBhk4jSuEgW1i1wVkicS122Ho= - - optional - - - Resources/sv.lproj/Sparkle.strings - - hash - - 98/sk+A2Ew1fmKpuKZ3rq8eS1EM= - - hash2 - - mJY6aeXFnSx38bF630z5lNPmPtsoYVAwadh0KC+9vfQ= - - optional - - - Resources/th.lproj/SUAutomaticUpdateAlert.strings - - hash - - Hh55mq2azZNGsXUfsQ+aslIexIU= - - hash2 - - 1gh4erbRdlTGz2ajzN6/r1eOejqrrm4tEBGkLCJvPjU= - - optional - - - Resources/th.lproj/SUUpdateAlert.strings - - hash - - BnhGQ74iKGYaENEK9iLaiAiXjDg= - - hash2 - - JAuH/Dirjof04rrKK8tF0KzqQPI8yo6Dj+WRvGaNAyo= - - optional - - - Resources/th.lproj/SUUpdatePermissionPrompt.strings - - hash - - 0X0Yu67oweP0yQLjPMLQ5/SdrIY= - - hash2 - - X7g6AAJg3M2Cy+HshNeo0WAAkrmH5rSOaPcOr8xpMs4= - - optional - - - Resources/th.lproj/Sparkle.strings - - hash - - HQwGW1Ebf0i+Bl4synks3x2SY2M= - - hash2 - - nlP7repbMz6EqHo3sZWnK3tzx47WKSWnULdUHCYPgKk= - - optional - - - Resources/tr.lproj/SUAutomaticUpdateAlert.strings - - hash - - 6o5w0pqVbKmd5bWoiH9659+zRFM= - - hash2 - - GoFKCUw+US53C0EXSRtwG8Ljtv3HJ5QmqRgiFyyG8MI= - - optional - - - Resources/tr.lproj/SUUpdateAlert.strings - - hash - - +moR0Pq4x/xokjAcOmpUUIakSGc= - - hash2 - - PeGI77CSsUYrhbQHQ7ylkIhieERyLeW8WMDz53rjpKQ= - - optional - - - Resources/tr.lproj/SUUpdatePermissionPrompt.strings - - hash - - UPPnsRQdJuqMXNbSfZyi4cXSFys= - - hash2 - - lg2uMs57Rr5KJOLqljZSrsXAVrFpnG05rnSsf9CqnRs= - - optional - - - Resources/tr.lproj/Sparkle.strings - - hash - - whUQco5F2wcYdjc+cPKlk+mtx7Q= - - hash2 - - xEXUfrylPld+eFGrPyj4wTRPj7vUWOZ2f94sWydq03M= - - optional - - - Resources/uk.lproj/SUUpdateAlert.strings - - hash - - UiYYV9jAIRc042ADR7KGxmBYLGM= - - hash2 - - Dz6ERGgnwwW49ykkHcS5Q6Y6dRU9JcddFjxKiXm/oJI= - - optional - - - Resources/uk.lproj/SUUpdatePermissionPrompt.strings - - hash - - XO2ZqR7re0XFlFOjom3hqe8QYLQ= - - hash2 - - Vpg51BfZvUx1OWKqmYaB+fmwg0wmx0qLiyqyWIr6SAk= - - optional - - - Resources/uk.lproj/Sparkle.strings - - hash - - JXhpqvLkX0yDWjbWgsk2wbSObKU= - - hash2 - - u0572QZYh6sB0GQdMGMePalOf4zkxE7YQG7pp898SEg= - - optional - - - Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings - - hash - - xuNfFlqaorqUnIg4Vud+VtY2ld8= - - hash2 - - McBU5WSIt98n0A8NU1+QJa2mKplpuYUiVf1aavTm3qM= - - optional - - - Resources/zh_CN.lproj/SUUpdateAlert.strings - - hash - - nv5vdtxa5px73vaGNZLva8Ke6/8= - - hash2 - - nywOtEBT/zcM2/SlqjYfLMvBDGjTf3cEDQtLF+xuIKw= - - optional - - - Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings - - hash - - hsxf2OFnnjPvD0J6Txmtbqn0HEY= - - hash2 - - jL1OTrMvd2n/kU6fTg1VTdy/Hg6yMwUYRLB+q8kD6Fo= - - optional - - - Resources/zh_CN.lproj/Sparkle.strings - - hash - - OnR96Z9tB0noODRSYssSs63+zGA= - - hash2 - - zvMbFdgVGI0ls9vIRT+sie7dj2g1UjQu7iS+pOgyBo4= - - optional - - - Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings - - hash - - sK1HJbeQlnXwC/iWB2qCFdS3kJM= - - hash2 - - Hvq78gKiBaI14eCHIBF1qWtNFLRBp4YFc06TlWHuhy0= - - optional - - - Resources/zh_TW.lproj/SUUpdateAlert.strings - - hash - - V3vtjphOC+UWkuM/uqrEHt0jiWY= - - hash2 - - GrVyadHrs+NNZ3QRE0zGFKRagBAxd6TG4GwIpwO/XJY= - - optional - - - Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings - - hash - - pieF1GpcUXW3VO30sjCT6YmCZ3Y= - - hash2 - - 8itKqMvZINz63qbK47TTKn/mmeINjU7ITPNQ0tB/8js= - - optional - - - Resources/zh_TW.lproj/Sparkle.strings - - hash - - 1FLKoM5jZ8JGBG/nmyEIA+/aalA= - - hash2 - - Vlf/4QD7/3S0SFqxmTWWcSwtTLWISKUSvLjpgWb7lxQ= - - optional - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^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 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/OSX/Sparkle.framework/Versions/B/Autoupdate b/OSX/Sparkle.framework/Versions/B/Autoupdate new file mode 100755 index 00000000..a4d07ca6 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Autoupdate differ diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUDownloadData.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUDownloadData.h new file mode 100644 index 00000000..d33ab011 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUDownloadData.h @@ -0,0 +1,52 @@ +// +// SPUDownloadData.h +// Sparkle +// +// Created by Mayur Pawashe on 8/10/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + * A class for containing downloaded data along with some information about it. + */ +SU_EXPORT @interface SPUDownloadData : NSObject + +/** + * The raw data that was downloaded. + */ +@property (nonatomic, readonly) NSData *data; + +/** + * The URL that was fetched from. + * + * This may be different from the URL in the request if there were redirects involved. + */ +@property (nonatomic, readonly, copy) NSURL *URL; + +/** + * The IANA charset encoding name if available. Eg: "utf-8" + */ +@property (nonatomic, readonly, nullable, copy) NSString *textEncodingName; + +/** + * The MIME type if available. Eg: "text/plain" + */ +@property (nonatomic, readonly, nullable, copy) NSString *MIMEType; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUpdaterController.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUpdaterController.h new file mode 100644 index 00000000..2ebce1aa --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUpdaterController.h @@ -0,0 +1,121 @@ +// +// SPUStandardUpdaterController.h +// Sparkle +// +// Created by Mayur Pawashe on 2/28/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SPUUpdater; +@class SPUStandardUserDriver; +@class NSMenuItem; +@protocol SPUUserDriver, SPUUpdaterDelegate, SPUStandardUserDriverDelegate; + +/** + A controller class that instantiates a `SPUUpdater` and allows binding UI to its updater settings. + + This class can be instantiated in a nib or created programatically using `-initWithUpdaterDelegate:userDriverDelegate:` or `-initWithStartingUpdater:updaterDelegate:userDriverDelegate:`. + + The controller's updater targets the application's main bundle and uses Sparkle's standard user interface. + Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too. + + The controller creates an `SPUUpdater` instance using a `SPUStandardUserDriver` and allows hooking up the check for updates action and handling menu item validation. + It also allows hooking up the updater's and user driver's delegates. + + If you need more control over what bundle you want to update, or you want to provide a custom user interface (via `SPUUserDriver`), please use `SPUUpdater` directly instead. + */ +SU_EXPORT @interface SPUStandardUpdaterController : NSObject +{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wobjc-interface-ivars" + /** + * Interface builder outlet for the updater's delegate. + */ + IBOutlet __weak id updaterDelegate; + + /** + * Interface builder outlet for the user driver's delegate. + */ + IBOutlet __weak id userDriverDelegate; +#pragma clang diagnostic pop +} + +/** + Accessible property for the updater. Some properties on the updater can be binded via KVO + + When instantiated from a nib, don't perform update checks before the application has finished launching in a MainMenu nib (i.e applicationDidFinishLaunching:) or before the corresponding window/view controller has been loaded (i.e, windowDidLoad or viewDidLoad). The updater is not guaranteed to be started yet before these points. + */ +@property (nonatomic, readonly) SPUUpdater *updater; + +/** + Accessible property for the updater's user driver. + */ +@property (nonatomic, readonly) SPUStandardUserDriver *userDriver; + +/** + Create a new `SPUStandardUpdaterController` from a nib. + + You cannot call this initializer directly. You must instantiate a `SPUStandardUpdaterController` inside of a nib (typically the MainMenu nib) to use it. + + To create a `SPUStandardUpdaterController` programatically, use `-initWithUpdaterDelegate:userDriverDelegate:` or `-initWithStartingUpdater:updaterDelegate:userDriverDelegate:` instead. + */ +- (instancetype)init NS_UNAVAILABLE; + +/** + Create a new `SPUStandardUpdaterController` programmatically. + + The updater is started automatically. See `-startUpdater` for more information. + */ +- (instancetype)initWithUpdaterDelegate:(nullable id)updaterDelegate userDriverDelegate:(nullable id)userDriverDelegate; + +/** + Create a new `SPUStandardUpdaterController` programmatically allowing you to specify whether or not to start the updater immediately. + + You can specify whether or not you want to start the updater immediately. + If you do not start the updater, you must invoke `-startUpdater` at a later time to start it. + */ +- (instancetype)initWithStartingUpdater:(BOOL)startUpdater updaterDelegate:(nullable id)updaterDelegate userDriverDelegate:(nullable id)userDriverDelegate; + +/** + Starts the updater if it has not already been started. + + You should only call this method yourself if you opted out of starting the updater on initialization. + Hence, do not call this yourself if you are instantiating this controller from a nib. + + This invokes `-[SPUUpdater startUpdater:]`. If the application is misconfigured with Sparkle, an error is logged and an alert is shown to the user (after a few seconds) to contact the developer. + If you want more control over this behavior, you can create your own `SPUUpdater` instead of using `SPUStandardUpdaterController`. + */ +- (void)startUpdater; + +/** + Explicitly checks for updates and displays a progress dialog while doing so. + + This method is meant for a main menu item. + Connect any NSMenuItem to this action in Interface Builder or programmatically, + and Sparkle will check for updates and report back its findings verbosely when it is invoked. + + When the target/action of the menu item is set to this controller and this method, + this controller also handles enabling/disabling the menu item by checking + `-[SPUUpdater canCheckForUpdates]` + + This action checks updates by invoking `-[SPUUpdater checkForUpdates]` + */ +- (IBAction)checkForUpdates:(nullable id)sender; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriver.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriver.h new file mode 100644 index 00000000..f8d5ef09 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriver.h @@ -0,0 +1,47 @@ +// +// SPUStandardUserDriver.h +// Sparkle +// +// Created by Mayur Pawashe on 2/14/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SPUUserDriver.h" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@protocol SPUStandardUserDriverDelegate; + +/** + Sparkle's standard built-in user driver for updater interactions + */ +SU_EXPORT @interface SPUStandardUserDriver : NSObject + +/** + Initializes a Sparkle's standard user driver for user update interactions + + @param hostBundle The target bundle of the host that is being updated. + @param delegate The optional delegate to this user driver. + */ +- (instancetype)initWithHostBundle:(NSBundle *)hostBundle delegate:(nullable id)delegate; + +/** + Use initWithHostBundle:delegate: instead. + */ +- (instancetype)init NS_UNAVAILABLE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriverDelegate.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriverDelegate.h new file mode 100644 index 00000000..7ed3bff0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriverDelegate.h @@ -0,0 +1,193 @@ +// +// SPUStandardUserDriverDelegate.h +// Sparkle +// +// Created by Mayur Pawashe on 3/3/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@protocol SUVersionDisplay; +@class SUAppcastItem; +@class SPUUserUpdateState; + +/** + A protocol for Sparkle's standard user driver's delegate + + This includes methods related to UI interactions + */ +SU_EXPORT @protocol SPUStandardUserDriverDelegate + +@optional + +/** + Called before showing a modal alert window, + to give the opportunity to hide attached windows that may get in the way. + */ +- (void)standardUserDriverWillShowModalAlert; + +/** + Called after showing a modal alert window, + to give the opportunity to hide attached windows that may get in the way. + */ +- (void)standardUserDriverDidShowModalAlert; + +/** + Returns an object that formats version numbers for display to the user. + If you don't implement this method or return @c nil, the standard version formatter will be used. + */ +- (_Nullable id )standardUserDriverRequestsVersionDisplayer; + +/** + Decides whether or not the standard user driver should provide an option to show full release notes to the user. + + When a user checks for new updates and no new update is found, Sparkle by default will offer to show the application's version history to the user + by providing a "Version History" button in the no new update available alert. + + If this delegate method is implemented to return `NO`, then Sparkle will not provide an option to show full release notes to the user. + + @param item The appcast item corresponding to the latest version available. + @return @c YES to allow Sparkle to show full release notes to the user, otherwise @c NO to disallow this. + */ +- (BOOL)standardUserDriverShouldShowVersionHistoryForAppcastItem:(SUAppcastItem *)item; + +/** + Handles showing the full release notes to the user. + + When a user checks for new updates and no new update is found, Sparkle will offer to show the application's version history to the user + by providing a "Version History" button in the no new update available alert. + + If this delegate method is not implemented, Sparkle will instead offer to open the + `fullReleaseNotesLink` (or `releaseNotesLink` if the former is unavailable) from the appcast's latest `item` in the user's web browser. + + If this delegate method is implemented, Sparkle will instead ask the delegate to show the full release notes to the user. + A delegate may want to implement this method if they want to show in-app or offline release notes. + + @param item The appcast item corresponding to the latest version available. + */ +- (void)standardUserDriverShowVersionHistoryForAppcastItem:(SUAppcastItem *)item; + +/** + Specifies whether or not the download, extraction, and installing status windows allows to be minimized. + + By default, the status window showing the current status of the update (download, extraction, ready to install) is allowed to be minimized + for regular application bundle updates. + + @return @c YES if the status window is allowed to be minimized (default behavior), otherwise @c NO. + */ +- (BOOL)standardUserDriverAllowsMinimizableStatusWindow; + +/** + Declares whether or not gentle scheduled update reminders are supported. + + The delegate may implement scheduled update reminders that are presented in a gentle manner by implementing one or both of: + `-standardUserDriverWillHandleShowingUpdate:forUpdate:state:` and `-standardUserDriverShouldHandleShowingScheduledUpdate:andInImmediateFocus:` + + Visit https://sparkle-project.org/documentation/gentle-reminders for more information and examples. + + @return @c YES if gentle scheduled update reminders are implemented by standard user driver delegate, otherwise @c NO (default). + */ +@property (nonatomic, readonly) BOOL supportsGentleScheduledUpdateReminders; + +/** + Specifies if the standard user driver should handle showing a new scheduled update, or if its delegate should handle showing the update instead. + + If you implement this method and return @c NO the delegate is then responsible for showing the update, + which must be implemented and done in `-standardUserDriverWillHandleShowingUpdate:forUpdate:state:` + The motivation for the delegate being responsible for showing updates is to override Sparkle's default behavior + and add gentle reminders for new updates. + + Returning @c YES is the default behavior and allows the standard user driver to handle showing the update. + + If the standard user driver handles showing the update, `immediateFocus` reflects whether or not it will show the update in immediate and utmost focus. + The standard user driver may choose to show the update in immediate and utmost focus when the app was launched recently + or the system has been idle for some time. + + If `immediateFocus` is @c NO the standard user driver may want to defer showing the update until the user comes back to the app. + For background running applications, when `immediateFocus` is @c NO the standard user driver will always want to show + the update alert immediately, but behind other running applications or behind the app's own windows if it's currently active. + + There should be no side effects made when implementing this method so you should just return @c YES or @c NO + You will also want to implement `-standardUserDriverWillHandleShowingUpdate:forUpdate:state:` for adding additional update reminders. + + This method is not called for user-initiated update checks. The standard user driver always handles those. + + Visit https://sparkle-project.org/documentation/gentle-reminders for more information and examples. + + @param update The update the standard user driver should show. + @param immediateFocus If @c immediateFocus is @c YES, then the standard user driver proposes to show the update in immediate and utmost focus. See discussion for more details. + + @return @c YES if the standard user should handle showing the scheduled update (default behavior), otherwise @c NO if the delegate handles showing it. + */ +- (BOOL)standardUserDriverShouldHandleShowingScheduledUpdate:(SUAppcastItem *)update andInImmediateFocus:(BOOL)immediateFocus; + +/** + Called before an update will be shown to the user. + + If the standard user driver handles showing the update, `handleShowingUpdate` will be `YES`. + Please see `-standardUserDriverShouldHandleShowingScheduledUpdate:andInImmediateFocus:` for how the standard user driver + may handle showing scheduled updates when `handleShowingUpdate` is `YES` and `state.userInitiated` is `NO`. + + If the delegate declared it handles showing the update by returning @c NO in `-standardUserDriverShouldHandleShowingScheduledUpdate:andInImmediateFocus:` + then the delegate should handle showing update reminders in this method, or at some later point. + In this case, `handleShowingUpdate` will be @c NO. + To bring the update alert in focus, you may call `-[SPUStandardUpdaterController checkForUpdates:]` or `-[SPUUpdater checkForUpdates]`. + You may want to show additional UI indicators in your application that will show this update in focus + and want to dismiss additional UI indicators in `-standardUserDriverWillFinishUpdateSession` or `-standardUserDriverDidReceiveUserAttentionForUpdate:` + + If `state.userInitiated` is @c YES then the standard user driver always handles showing the new update and `handleShowingUpdate` will be @c YES. + In this case, it may still be useful for the delegate to intercept this method right before a new update will be shown. + + This method is not called when bringing an update that has already been presented back in focus. + + Visit https://sparkle-project.org/documentation/gentle-reminders for more information and examples. + + @param handleShowingUpdate @c YES if the standard user driver handles showing the update, otherwise @c NO if the delegate handles showing the update. + @param update The update that will be shown. + @param state The user state of the update which includes if the update check was initiated by the user. + */ +- (void)standardUserDriverWillHandleShowingUpdate:(BOOL)handleShowingUpdate forUpdate:(SUAppcastItem *)update state:(SPUUserUpdateState *)state; + +/** + Called when a new update first receives attention from the user. + + This occurs either when the user first brings the update alert in utmost focus or when the user makes a choice to install an update or dismiss/skip it. + + This may be useful to intercept for dismissing custom attention-based UI indicators (e.g, user notifications) introduced when implementing + `-standardUserDriverWillHandleShowingUpdate:forUpdate:state:` + + For custom UI indicators that need to still be on screen after the user has started to install an update, please see `-standardUserDriverWillFinishUpdateSession`. + + @param update The new update that the user gave attention to. + */ +- (void)standardUserDriverDidReceiveUserAttentionForUpdate:(SUAppcastItem *)update; + +/** + Called before the standard user driver session will finish its current update session. + + This may occur after the user has dismissed / skipped a new update or after an update error has occurred. + For updaters updating external/other bundles, this may also be called after an update has been successfully installed. + + This may be useful to intercept for dismissing custom UI indicators introduced when implementing + `-standardUserDriverWillHandleShowingUpdate:forUpdate:state:` + + For UI indicators that need to be dismissed when the user has given attention to a new update alert, + please see `-standardUserDriverDidReceiveUserAttentionForUpdate:` + */ +- (void)standardUserDriverWillFinishUpdateSession; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdateCheck.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdateCheck.h new file mode 100644 index 00000000..80a20019 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdateCheck.h @@ -0,0 +1,33 @@ +// +// SPUUpdateCheck.h +// SPUUpdateCheck +// +// Created by Mayur Pawashe on 8/28/21. +// Copyright © 2021 Sparkle Project. All rights reserved. +// + +#ifndef SPUUpdateCheck_h +#define SPUUpdateCheck_h + +/** + Describes the type of update check being performed. + + Each update check corresponds to an update check method on `SPUUpdater`. + */ +typedef NS_ENUM(NSInteger, SPUUpdateCheck) +{ + /** + The user-initiated update check corresponding to `-[SPUUpdater checkForUpdates]`. + */ + SPUUpdateCheckUpdates = 0, + /** + The background scheduled update check corresponding to `-[SPUUpdater checkForUpdatesInBackground]`. + */ + SPUUpdateCheckUpdatesInBackground = 1, + /** + The informational probe update check corresponding to `-[SPUUpdater checkForUpdateInformation]`. + */ + SPUUpdateCheckUpdateInformation = 2 +}; + +#endif /* SPUUpdateCheck_h */ diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdatePermissionRequest.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdatePermissionRequest.h new file mode 100644 index 00000000..c1a362c3 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdatePermissionRequest.h @@ -0,0 +1,42 @@ +// +// SPUUpdatePermissionRequest.h +// Sparkle +// +// Created by Mayur Pawashe on 8/14/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + This class represents information needed to make a permission request for checking updates. + */ +SU_EXPORT @interface SPUUpdatePermissionRequest : NSObject + +/** + Initializes a new update permission request instance. + + @param systemProfile The system profile information. + */ +- (instancetype)initWithSystemProfile:(NSArray *> *)systemProfile; + +/** + A read-only property for the user's system profile. + */ +@property (nonatomic, readonly) NSArray *> *systemProfile; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdater.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdater.h new file mode 100644 index 00000000..e2f8dca1 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdater.h @@ -0,0 +1,368 @@ +// +// SPUUpdater.h +// Sparkle +// +// Created by Andy Matuschak on 1/4/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#import "SPUUserDriver.h" +#pragma clang diagnostic pop +#else +#import +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SUAppcastItem, SUAppcast; + +@protocol SPUUpdaterDelegate; + +/** + The main API in Sparkle for controlling the update mechanism. + + This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates. + + For convenience, you can create a standard or nib instantiable updater by using `SPUStandardUpdaterController`. + + Prefer to set initial properties in your bundle's Info.plist as described in [Customizing Sparkle](https://sparkle-project.org/documentation/customization/). + + Otherwise only if you need dynamic behavior for user settings should you set properties on the updater such as: + - `automaticallyChecksForUpdates` + - `updateCheckInterval` + - `automaticallyDownloadsUpdates` + - `feedURL` + + Please view the documentation on each of these properties for more detail if you are to configure them dynamically. + */ +SU_EXPORT @interface SPUUpdater : NSObject + +/** + Initializes a new `SPUUpdater` instance + + This creates an updater, but to start it and schedule update checks `-startUpdater:` needs to be invoked first. + + Related: See `SPUStandardUpdaterController` which wraps a `SPUUpdater` instance and is suitable for instantiating inside of nib files. + + @param hostBundle The bundle that should be targetted for updating. + @param applicationBundle The application bundle that should be waited for termination and relaunched (unless overridden). Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle. + @param userDriver The user driver that Sparkle uses for user update interaction. + @param delegate The delegate for `SPUUpdater`. + */ +- (instancetype)initWithHostBundle:(NSBundle *)hostBundle applicationBundle:(NSBundle *)applicationBundle userDriver:(id )userDriver delegate:(nullable id)delegate; + +/** + Use `-initWithHostBundle:applicationBundle:userDriver:delegate:` or `SPUStandardUpdaterController` standard adapter instead. + + If you want to drop an updater into a nib, use `SPUStandardUpdaterController`. + */ +- (instancetype)init NS_UNAVAILABLE; + +/** + Starts the updater. + + This method first checks if Sparkle is configured properly. A valid feed URL should be set before this method is invoked. + + If the configuration is valid, an update cycle is started in the next main runloop cycle. + During this cycle, a permission prompt may be brought up (if needed) for checking if the user wants automatic update checking. + Otherwise if automatic update checks are enabled, a scheduled update alert may be brought up if enough time has elapsed since the last check. + See `automaticallyChecksForUpdates` for more information. + + After starting the updater and before the next runloop cycle, one of `-checkForUpdates`, `-checkForUpdatesInBackground`, or `-checkForUpdateInformation` can be invoked. + This may be useful if you want to check for updates immediately or without showing a potential permission prompt. + + If the updater cannot be started (i.e, due to a configuration issue in the application), you may want to fall back appropriately. + For example, the standard updater controller (`SPUStandardUpdaterController`) alerts the user that the app is misconfigured and to contact the developer. + + This must be called on the main thread. + + @param error The error that is populated if this method fails. Pass NULL if not interested in the error information. + @return YES if the updater started otherwise NO with a populated error + */ +- (BOOL)startUpdater:(NSError * __autoreleasing *)error; + +/** + Checks for updates, and displays progress while doing so if needed. + + This is meant for users initiating a new update check or checking the current update progress. + + If an update hasn't started, the user may be shown that a new check for updates is occurring. + If an update has already been downloaded or begun installing from a previous session, the user may be presented to install that update. + If the user is already being presented with an update, that update will be shown to the user in active focus. + + This will find updates that the user has previously opted into skipping. + + See `canCheckForUpdates` property which can determine when this method may be invoked. + */ +- (void)checkForUpdates; + +/** + Checks for updates, but does not show any UI unless an update is found. + + You usually do not need to call this method directly. If `automaticallyChecksForUpdates` is @c YES, + Sparkle calls this method automatically according to its update schedule using the `updateCheckInterval` + and the `lastUpdateCheckDate`. Therefore, you should typically only consider calling this method directly if you + opt out of automatic update checks. Calling this method when updating your own bundle is invalid if Sparkle is configured + to ask the user's permission to check for updates automatically and `automaticallyChecksForUpdates` is `NO`. + If you want to reset the updater's cycle after an updater setting change, see `resetUpdateCycle` or `resetUpdateCycleAfterShortDelay` instead. + + This is meant for programmatically initating a check for updates in the background without the user initiating it. + This check will not show UI if no new updates are found. + + If a new update is found, the updater's user driver may handle showing it at an appropriate (but not necessarily immediate) time. + If you want control over when and how a new update is shown, please see https://sparkle-project.org/documentation/gentle-reminders/ + + Note if automated downloading/installing is turned on, either a new update may be downloaded in the background to be installed silently, + or an already downloaded update may be shown. + + This will not find updates that the user has opted into skipping. + + This method does not do anything if there is a `sessionInProgress`. + */ +- (void)checkForUpdatesInBackground; + +/** + Begins a "probing" check for updates which will not actually offer to + update to that version. + + However, the delegate methods + `-[SPUUpdaterDelegate updater:didFindValidUpdate:]` and + `-[SPUUpdaterDelegate updaterDidNotFindUpdate:]` will be called, + so you can use that information in your UI. + + `-[SPUUpdaterDelegate updater:didFinishUpdateCycleForUpdateCheck:error:]` will be called when + this probing check is completed. + + Updates that have been skipped by the user will not be found. + + This method does not do anything if there is a `sessionInProgress`. + */ +- (void)checkForUpdateInformation; + +/** + A property indicating whether or not updates can be checked by the user. + + An update check can be made by the user when an update session isn't in progress, or when an update or its progress is being shown to the user. + A user cannot check for updates when data (such as the feed or an update) is still being downloaded automatically in the background. + + This property is suitable to use for menu item validation for seeing if `-checkForUpdates` can be invoked. + + This property is also KVO-compliant. + + Note this property does not reflect whether or not an update session is in progress. Please see `sessionInProgress` property instead. + */ +@property (nonatomic, readonly) BOOL canCheckForUpdates; + +/** + A property indicating whether or not an update session is in progress. + + An update session is in progress when the appcast is being downloaded, an update is being downloaded, + an update is being shown, update permission is being requested, or the installer is being started. + + An active session is when Sparkle's fired scheduler is running. + + Note an update session may not be running even though Sparkle's installer (ran as a separate process) may be running, + or even though the update has been downloaded but the installation has been deferred. In both of these cases, a new update session + may be activated with the update resumed at a later point (automatically or manually). + + See also: + - `canCheckForUpdates` property which is more suited for menu item validation and deciding if the user can initiate update checks. + - `-[SPUUpdaterDelegate updater:didFinishUpdateCycleForUpdateCheck:error:]` which lets the updater delegate know when an update cycle and session finishes. + */ +@property (nonatomic, readonly) BOOL sessionInProgress; + +/** + A property indicating whether or not to check for updates automatically. + + By default, Sparkle asks users on second launch for permission if they want automatic update checks enabled + and sets this property based on their response. If `SUEnableAutomaticChecks` is set in the Info.plist, + this permission request is not performed however. + + Setting this property will persist in the host bundle's user defaults. + Hence developers shouldn't maintain an additional user default for this property. + Only set this property if the user wants to change the default via a user settings option. + Do not always set it on launch unless you want to ignore the user's preference. + For testing environments, you can disable update checks by passing `-SUEnableAutomaticChecks NO` + to your app's command line arguments instead of setting this property. + + The update schedule cycle will be reset in a short delay after the property's new value is set. + This is to allow reverting this property without kicking off a schedule change immediately + */ +@property (nonatomic) BOOL automaticallyChecksForUpdates; + +/** + A property indicating the current automatic update check interval in seconds. + + Prefer to set SUScheduledCheckInterval directly in your Info.plist for setting the initial value. + + Setting this property will persist in the host bundle's user defaults. + Hence developers shouldn't maintain an additional user default for this property. + Only set this property if the user wants to change the default via a user settings option. + Do not always set it on launch unless you want to ignore the user's preference. + + The update schedule cycle will be reset in a short delay after the property's new value is set. + This is to allow reverting this property without kicking off a schedule change immediately + */ +@property (nonatomic) NSTimeInterval updateCheckInterval; + +/** + A property indicating whether or not updates can be automatically downloaded in the background. + + By default, updates are not automatically downloaded. + + By default starting from Sparkle 2.4, users are provided an option to opt in to automatically downloading and installing updates when they are asked if they want automatic update checks enabled. + The default value for this option is based on what the developer sets `SUAutomaticallyUpdate` in their Info.plist. + This is not done if `SUEnableAutomaticChecks` is set in the Info.plist however. Please check `automaticallyChecksForUpdates` property for more details. + + Note that the developer can disallow automatic downloading of updates from being enabled (via `SUAllowsAutomaticUpdates` Info.plist key). + In this case, this property will return NO regardless of how this property is set. + + Prefer to set `SUAutomaticallyUpdate` directly in your Info.plist for setting the initial value. + + Setting this property will persist in the host bundle's user defaults. + Hence developers shouldn't maintain an additional user default for this property. + Only set this property if the user wants to change the default via a user settings option. + Do not always set it on launch unless you want to ignore the user's preference. + */ +@property (nonatomic) BOOL automaticallyDownloadsUpdates; + +/** + The URL of the appcast used to download update information. + + If the updater's delegate implements `-[SPUUpdaterDelegate feedURLStringForUpdater:]`, this will return that feed URL. + Otherwise if the feed URL has been set before using `-[SPUUpdater setFeedURL:]`, the feed URL returned will be retrieved from the host bundle's user defaults. + Otherwise the feed URL in the host bundle's Info.plist will be returned. + If no feed URL can be retrieved, returns nil. + + For setting a primary feed URL, please set the `SUFeedURL` property in your Info.plist. + For setting an alternative feed URL, please prefer `-[SPUUpdaterDelegate feedURLStringForUpdater:]` over `-setFeedURL:`. + Please see the documentation for `-setFeedURL:` for migrating away from that API. + + This property must be called on the main thread; calls from background threads will return nil. + */ +@property (nonatomic, readonly, nullable) NSURL *feedURL; + +/** + Set the URL of the appcast used to download update information. This method is deprecated. + + Setting this property will persist in the host bundle's user defaults. + To avoid this undesirable behavior, please consider implementing + `-[SPUUpdaterDelegate feedURLStringForUpdater:]` instead of using this method. + + Calling `-clearFeedURLFromUserDefaults` will remove any feed URL that has been set in the host bundle's user defaults. + Passing nil to this method can also do this, but using `-clearFeedURLFromUserDefaults` is preferred. + To migrate away from using this API, you must clear and remove any feed URLs set in the user defaults through this API. + + If you do not need to alternate between multiple feeds, set the SUFeedURL in your Info.plist instead of invoking this method. + + For beta updates, you may consider migrating to `-[SPUUpdaterDelegate allowedChannelsForUpdater:]` in the future. + + Updaters that update other developer's bundles should not call this method. + + This method must be called on the main thread; calls from background threads will have no effect. + */ +- (void)setFeedURL:(nullable NSURL *)feedURL __deprecated_msg("Please call -[SPUUpdater clearFeedURLFromUserDefaults] to migrate away from using this API and transition to either specifying the feed URL in your Info.plist, using channels in Sparkle 2, or using -[SPUUpdaterDelegate feedURLStringForUpdater:] to specify the dynamic feed URL at runtime"); + +/** + Clears any feed URL from the host bundle's user defaults that was set via `-setFeedURL:` + + You should call this method if you have used `-setFeedURL:` in the past and want to stop using that API. + Otherwise for compatibility Sparkle will prefer to use the feed URL that was set in the user defaults over the one that was specified in the host bundle's Info.plist, + which is often undesirable (except for testing purposes). + + If a feed URL is found stored in the host bundle's user defaults (from calling `-setFeedURL:`) before it gets cleared, + then that previously set URL is returned from this method. + + This method should be called as soon as possible, after your application finished launching or right after the updater has been started + if you manually manage starting the updater. + + Updaters that update other developer's bundles should not call this method. + + This method must be called on the main thread. + + @return A previously set feed URL in the host bundle's user defaults, if available, otherwise this returns `nil` + */ +- (nullable NSURL *)clearFeedURLFromUserDefaults; + +/** + The host bundle that is being updated. + */ +@property (nonatomic, readonly) NSBundle *hostBundle; + +/** + The user agent used when checking for updates. + + By default the user agent string returned is in the format: + `$(BundleDisplayName)/$(BundleDisplayVersion) Sparkle/$(SparkleDisplayVersion)` + + BundleDisplayVersion is derived from the main application's Info.plist's CFBundleShortVersionString. + + Note if Sparkle is being used to update another application, the bundle information retrieved is from the main application performing the updating. + + This default implementation can be overrided. + */ +@property (nonatomic, copy) NSString *userAgentString; + +/** + The HTTP headers used when checking for updates, downloading release notes, and downloading updates. + + The keys of this dictionary are HTTP header fields and values are corresponding values. + */ +@property (nonatomic, copy, nullable) NSDictionary *httpHeaders; + +/** + A property indicating whether or not the user's system profile information is sent when checking for updates. + + Setting this property will persist in the host bundle's user defaults. + */ +@property (nonatomic) BOOL sendsSystemProfile; + +/** + The date of the last update check or nil if no check has been performed yet. + + For testing purposes, the last update check is stored in the `SULastCheckTime` key in the host bundle's user defaults. + For example, `defaults delete my-bundle-id SULastCheckTime` can be invoked to clear the last update check time and test + if update checks are automatically scheduled. + */ +@property (nonatomic, readonly, copy, nullable) NSDate *lastUpdateCheckDate; + +/** + Appropriately re-schedules the update checking timer according to the current updater settings. + + This method should only be called in response to a user changing updater settings. This method may trigger a new update check to occur in the background if an updater setting such as the updater's feed or allowed channels has changed. + + If the `updateCheckInterval` or `automaticallyChecksForUpdates` properties are changed, this method is automatically invoked after a short delay using `-resetUpdateCycleAfterShortDelay`. In these cases, manually resetting the update cycle is not necessary. + + See also `-resetUpdateCycleAfterShortDelay` which gives the user a short delay before triggering a cycle reset. + */ +- (void)resetUpdateCycle; + +/** + Appropriately re-schedules the update checking timer according to the current updater settings after a short cancellable delay. + + This method calls `resetUpdateCycle` after a short delay to give the user a short amount of time to cancel changing an updater setting. + If this method is called again, any previous reset request that is still inflight will be cancelled. + + For example, if the user changes the `automaticallyChecksForUpdates` setting to `YES`, but quickly undoes their change then + no cycle reset will be done. + + If the `updateCheckInterval` or `automaticallyChecksForUpdates` properties are changed, this method is automatically invoked. In these cases, manually resetting the update cycle is not necessary. + */ +- (void)resetUpdateCycleAfterShortDelay; + +/** + The system profile information that is sent when checking for updates. + */ +@property (nonatomic, readonly, copy) NSArray *> *systemProfileArray; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterDelegate.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterDelegate.h new file mode 100644 index 00000000..c879e8f8 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterDelegate.h @@ -0,0 +1,476 @@ +// +// SPUUpdaterDelegate.h +// Sparkle +// +// Created by Mayur Pawashe on 8/12/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#import "SPUUpdateCheck.h" +#import "SPUUserUpdateState.h" +#pragma clang diagnostic pop +#else +#import +#import +#import +#endif + +@protocol SUVersionComparison; +@class SPUUpdater, SUAppcast, SUAppcastItem, SPUUserUpdateState; + +NS_ASSUME_NONNULL_BEGIN + +// ----------------------------------------------------------------------------- +// SUUpdater Notifications for events that might be interesting to more than just the delegate +// The updater will be the notification object +// ----------------------------------------------------------------------------- +SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification; +SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification; +SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification; +SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification; +#define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification; +#define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification; + +// Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo +SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey; +// Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo +SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey; + +// ----------------------------------------------------------------------------- +// System Profile Keys +// ----------------------------------------------------------------------------- + +SU_EXPORT extern NSString *const SUSystemProfilerApplicationNameKey; +SU_EXPORT extern NSString *const SUSystemProfilerApplicationVersionKey; +SU_EXPORT extern NSString *const SUSystemProfilerCPU64bitKey; +SU_EXPORT extern NSString *const SUSystemProfilerCPUCountKey; +SU_EXPORT extern NSString *const SUSystemProfilerCPUFrequencyKey; +SU_EXPORT extern NSString *const SUSystemProfilerCPUTypeKey; +SU_EXPORT extern NSString *const SUSystemProfilerCPUSubtypeKey; +SU_EXPORT extern NSString *const SUSystemProfilerHardwareModelKey; +SU_EXPORT extern NSString *const SUSystemProfilerMemoryKey; +SU_EXPORT extern NSString *const SUSystemProfilerOperatingSystemVersionKey; +SU_EXPORT extern NSString *const SUSystemProfilerPreferredLanguageKey; + +// ----------------------------------------------------------------------------- +// SPUUpdater Delegate: +// ----------------------------------------------------------------------------- + +/** + Provides delegation methods to control the behavior of an `SPUUpdater` object. + */ +@protocol SPUUpdaterDelegate +@optional + +/** + Returns whether to allow Sparkle to check for updates. + + For example, this may be used to prevent Sparkle from interrupting a setup assistant. + Alternatively, you may want to consider starting the updater after eg: the setup assistant finishes. + + Note in Swift, this method returns Void and is marked with the throws keyword. If this method + doesn't throw an error, the updater may perform an update check. Otherwise if an error is thrown (we recommend using an NSError), + then the updater may not perform an update check. + + @param updater The updater instance. + @param updateCheck The type of update check that will be performed if the updater is allowed to check for updates. + @param error The populated error object if the updater may not perform a new update check. The @c NSLocalizedDescriptionKey user info key should be populated indicating a description of the error. + @return @c YES if the updater is allowed to check for updates, otherwise @c NO +*/ +- (BOOL)updater:(SPUUpdater *)updater mayPerformUpdateCheck:(SPUUpdateCheck)updateCheck error:(NSError * __autoreleasing *)error; + +/** + Returns the set of Sparkle channels the updater is allowed to find new updates from. + + An appcast item can specify a channel the update is posted to. Without specifying a channel, the appcast item is posted to the default channel. + For instance: + ``` + + 2.0 Beta 1 + beta + + ``` + + This example posts an update to the @c beta channel, so only updaters that are allowed to use the @c beta channel can find this update. + + If the @c element is not present, the update item is posted to the default channel and can be found by any updater. + + You can pick any name you'd like for the channel. The valid characters for channel names are letters, numbers, dashes, underscores, and periods. + + Note to use this feature, all app versions that your users may update from in your feed must use a version of Sparkle that supports this feature. + This feature was added in Sparkle 2. + + @return The set of channel names the updater is allowed to find new updates in. An empty set is the default behavior, + which means the updater will only look for updates in the default channel. + */ +- (NSSet *)allowedChannelsForUpdater:(SPUUpdater *)updater; + +/** + Returns a custom appcast URL used for checking for new updates. + + Override this to dynamically specify the feed URL. + + @param updater The updater instance. + @return An appcast feed URL to check for new updates in, or @c nil for the default behavior and if you don't want to be delegated this task. + */ +- (nullable NSString *)feedURLStringForUpdater:(SPUUpdater *)updater; + +/** + Returns additional parameters to append to the appcast URL's query string. + + This is potentially based on whether or not Sparkle will also be sending along the system profile. + + @param updater The updater instance. + @param sendingProfile Whether the system profile will also be sent. + + @return An array of dictionaries with keys: `key`, `value`, `displayKey`, `displayValue`, the latter two being specifically for display to the user. + */ +- (NSArray *> *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; + +/** + Returns whether Sparkle should prompt the user about checking for new updates automatically. + + Use this to override the default behavior. + + @param updater The updater instance. + @return @c YES if the updater should prompt for permission to check for new updates automatically, otherwise @c NO + */ +- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SPUUpdater *)updater; + +/** + Returns an allowed list of system profile keys to be appended to the appcast URL's query string. + + By default all keys will be included. This method allows overriding which keys should only be allowed. + + @param updater The updater instance. + + @return An array of system profile keys to include in the appcast URL's query string. Elements must be one of the `SUSystemProfiler*Key` constants. Return @c nil for the default behavior and if you don't want to be delegated this task. + */ +- (nullable NSArray *)allowedSystemProfileKeysForUpdater:(SPUUpdater *)updater; + +/** + Called after Sparkle has downloaded the appcast from the remote server. + + Implement this if you want to do some special handling with the appcast once it finishes loading. + + @param updater The updater instance. + @param appcast The appcast that was downloaded from the remote server. + */ +- (void)updater:(SPUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; + +/** + Called when a new valid update is found by the update driver. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that is proposed to be installed. + */ +- (void)updater:(SPUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item; + +/** + Called when a valid new update is not found. + + There are various reasons a new update is unavailable and can't be installed. + + The userInfo dictionary on the error is populated with three keys: + - `SPULatestAppcastItemFoundKey`: if available, this may provide the latest `SUAppcastItem` that was found. This will be @c nil if it's unavailable. + - `SPUNoUpdateFoundReasonKey`: This will provide the `SPUNoUpdateFoundReason`. + For example the reason could be because the latest version in the feed requires a newer OS version or could be because the user is already on the latest version. + - `SPUNoUpdateFoundUserInitiatedKey`: A boolean that indicates if a new update was not found when the user intitiated an update check manually. + + @param updater The updater instance. + @param error An error containing information on why a new valid update was not found + */ +- (void)updaterDidNotFindUpdate:(SPUUpdater *)updater error:(NSError *)error; + +/** + Called when a valid new update is not found. + + If more information is needed on why an update was not found, use `-[SPUUpdaterDelegate updaterDidNotFindUpdate:error:]` instead. + + @param updater The updater instance. + */ +- (void)updaterDidNotFindUpdate:(SPUUpdater *)updater; + +/** + Returns the item in the appcast corresponding to the update that should be installed. + + Please consider using or migrating to other supported features before adopting this method. + Specifically: + - If you want to filter out certain tagged updates (like beta updates), consider `-[SPUUpdaterDelegate allowedChannelsForUpdater:]` instead. + - If you want to treat certain updates as informational-only, consider supplying @c with a set of affected versions users are updating from. + + 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. + + Do not base your logic by filtering out items with a minimum or maximum OS version or minimum autoupdate version + because Sparkle already has logic for determining whether or not those items should be filtered out. + + Also do not return a non-top level item from the appcast such as a delta item. Delta items will be ignored. + Sparkle picks the delta item from your selection if the appropriate one is available. + + This method will not be invoked with an appcast that has zero items. Pick the best item from the appcast. + If an item is available that has the same version as the application or bundle to update, do not pick an item that is worse than that version. + + This method may be called multiple times for different selections and filters. This method should be efficient. + + Return `+[SUAppcastItem emptyAppcastItem]` if no appcast item is valid. + + Return @c nil if you don't want to be delegated this task and want to let Sparkle handle picking the best valid update. + + @param appcast The appcast that was downloaded from the remote server. + @param updater The updater instance. + @return The best valid appcast item. + */ +- (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SPUUpdater *)updater; + +/** + Returns whether or not the updater should proceed with the new chosen update from the appcast. + + By default, the updater will always proceed with the best selected update found in an appcast. Override this to override this behavior. + + If you return @c NO and populate the @c error, the user is not shown this @c updateItem nor is the update downloaded or installed. + + Note in Swift, this method returns Void and is marked with the throws keyword. If this method doesn't throw an error, the updater will proceed with the update. + Otherwise if an error is thrown (we recommend using an NSError), then the will not proceed with the update. + + @param updater The updater instance. + @param updateItem The selected update item to proceed with. + @param updateCheck The type of update check that would be performed if proceeded. + @param error An error object that must be populated by the delegate if the updater should not proceed with the update. The @c NSLocalizedDescriptionKey user info key should be populated indicating a description of the error. + @return @c YES if the updater should proceed with @c updateItem, otherwise @c NO if the updater should not proceed with the update with an @c error populated. + */ +- (BOOL)updater:(SPUUpdater *)updater shouldProceedWithUpdate:(SUAppcastItem *)updateItem updateCheck:(SPUUpdateCheck)updateCheck error:(NSError * __autoreleasing *)error; + +/** + Called when a user makes a choice to install, dismiss, or skip an update. + + If the @c choice is `SPUUserUpdateChoiceDismiss` and @c state.stage is `SPUUserUpdateStageDownloaded` the downloaded update is kept + around until the next time Sparkle reminds the user of the update. + + If the @c choice is `SPUUserUpdateChoiceDismiss` and @c state.stage is `SPUUserUpdateStageInstalling` the update is still set to install on application termination. + + If the @c choice is `SPUUserUpdateChoiceSkip` the user will not be reminded in the future for this update unless they initiate an update check themselves. + + If @c updateItem.isInformationOnlyUpdate is @c YES the @c choice cannot be `SPUUserUpdateChoiceInstall`. + + @param updater The updater instance. + @param choice The choice (install, dismiss, or skip) the user made for this @c updateItem + @param updateItem The appcast item corresponding to the update that the user made a choice on. + @param state The current state for the update which includes if the update has already been downloaded or already installing. + */ +- (void)updater:(SPUUpdater *)updater userDidMakeChoice:(SPUUserUpdateChoice)choice forUpdate:(SUAppcastItem *)updateItem state:(SPUUserUpdateState *)state; + +/** + Returns whether the release notes (if available) should be downloaded after an update is found and shown. + + This is specifically for the @c element in the appcast item. + + @param updater The updater instance. + @param updateItem The update item to download and show release notes from. + + @return @c YES to download and show the release notes if available, otherwise @c NO. The default behavior is @c YES. + */ +- (BOOL)updater:(SPUUpdater *)updater shouldDownloadReleaseNotesForUpdate:(SUAppcastItem *)updateItem; + +/** + Called immediately before downloading the specified update. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that is proposed to be downloaded. + @param request The mutable URL request that will be used to download the update. + */ +- (void)updater:(SPUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request; + +/** + Called immediately after succesfull download of the specified update. + + @param updater The SUUpdater instance. + @param item The appcast item corresponding to the update that has been downloaded. + */ +- (void)updater:(SPUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item; + +/** + Called after the specified update failed to download. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that failed to download. + @param error The error generated by the failed download. + */ +- (void)updater:(SPUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error; + +/** + Called when the user cancels an update while it is being downloaded. + + @param updater The updater instance. + */ +- (void)userDidCancelDownload:(SPUUpdater *)updater; + +/** + Called immediately before extracting the specified downloaded update. + + @param updater The SUUpdater instance. + @param item The appcast item corresponding to the update that is proposed to be extracted. + */ +- (void)updater:(SPUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item; + +/** + Called immediately after extracting the specified downloaded update. + + @param updater The SUUpdater instance. + @param item The appcast item corresponding to the update that has been extracted. + */ +- (void)updater:(SPUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item; + +/** + Called immediately before installing the specified update. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that is proposed to be installed. + */ +- (void)updater:(SPUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; + +/** + Returns whether the relaunch should be delayed in order to perform other tasks. + + This is not called if the user didn't relaunch on the previous update, + in that case it will immediately restart. + + This may also not be called if the application is not going to relaunch after it terminates. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that is proposed to be installed. + @param installHandler The install handler that must be completed before continuing with the relaunch. + + @return @c YES to delay the relaunch until @c installHandler is invoked. + */ +- (BOOL)updater:(SPUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvokingBlock:(void (^)(void))installHandler; + +/** + Returns whether the application should be relaunched at all. + + Some apps **cannot** be relaunched under certain circumstances. + This method can be used to explicitly prevent a relaunch. + + @param updater The updater instance. + @return @c YES if the updater should be relaunched, otherwise @c NO if it shouldn't. + */ +- (BOOL)updaterShouldRelaunchApplication:(SPUUpdater *)updater; + +/** + Called immediately before relaunching. + + @param updater The updater instance. + */ +- (void)updaterWillRelaunchApplication:(SPUUpdater *)updater; + +/** + Returns an object that compares version numbers to determine their arithmetic relation to each other. + + This method allows you to provide a custom version comparator. + If you don't implement this method or return @c nil, + the standard version comparator will be used. + + Note that the standard version comparator may be used during installation for preventing a downgrade, + even if you provide a custom comparator here. + + @param updater The updater instance. + @return The custom version comparator or @c nil if you don't want to be delegated this task. + */ +- (nullable id)versionComparatorForUpdater:(SPUUpdater *)updater; + +/** + Called when a background update will be scheduled after a delay. + + Automatic update checks need to be enabled for this to trigger. + + @param delay The delay in seconds until the next scheduled update will occur. This is an approximation and may vary due to system state. + + @param updater The updater instance. + */ +- (void)updater:(SPUUpdater *)updater willScheduleUpdateCheckAfterDelay:(NSTimeInterval)delay; + +/** + Called when no update checks will be scheduled in the future. + + This may later change if automatic update checks become enabled. + + @param updater The updater instance. + */ +- (void)updaterWillNotScheduleUpdateCheck:(SPUUpdater *)updater; + +/** + Returns the decryption password (if any) which is used to extract the update archive DMG. + + Return @c nil if no password should be used. + + @param updater The updater instance. + @return The password used for decrypting the archive, or @c nil if no password should be used. + */ +- (nullable NSString *)decryptionPasswordForUpdater:(SPUUpdater *)updater; + +/** + Called when an update is scheduled to be silently installed on quit after downloading the update automatically. + + If the updater is given responsibility, it can later remind the user an update is available if they have not terminated the application for a long time. + + Also if the updater is given responsibility and the update item is marked critical, the new update will be presented to the user immediately after. + + Even if the @c immediateInstallHandler is not invoked, the installer will attempt to install the update on termination. + + @param updater The updater instance. + @param item The appcast item corresponding to the update that is proposed to be installed. + @param immediateInstallHandler The install handler for the delegate to immediately install the update. No UI interaction will be shown and the application will be relaunched after installation. This handler can only be used if @c YES is returned and the delegate handles installing the update. For Sparkle 2.3 onwards, this handler can be invoked multiple times in case the application cancels the termination request. + @return @c YES if the delegate will handle installing the update or @c NO if the updater should be given responsibility. + */ +- (BOOL)updater:(SPUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))immediateInstallHandler; + +/** + Called after the update driver aborts due to an error. + + The update driver runs when checking for updates. This delegate method is called an error occurs during this process. + + Some special possible values of `error.code` are: + + - `SUNoUpdateError`: No new update was found. + - `SUInstallationCanceledError`: The user canceled installing the update when requested for authorization. + + @param updater The updater instance. + @param error The error that caused the update driver to abort. + */ +- (void)updater:(SPUUpdater *)updater didAbortWithError:(NSError *)error; + +/** + Called after the update driver finishes. + + The update driver runs when checking for updates. This delegate method is called when that check is finished. + + An update may be scheduled to be installed during the update cycle, or no updates may be found, or an available update may be dismissed or skipped (which is the same as no error). + + If the @c error is @c nil, no error has occurred. + + Some special possible values of `error.code` are: + + - `SUNoUpdateError`: No new update was found. + - `SUInstallationCanceledError`: The user canceled installing the update when requested for authorization. + + @param updater The updater instance. + @param updateCheck The type of update check was performed. + @param error The error that caused the update driver to abort. This is @c nil if the update driver finished normally and there is no error. + */ +- (void)updater:(SPUUpdater *)updater didFinishUpdateCycleForUpdateCheck:(SPUUpdateCheck)updateCheck error:(nullable NSError *)error; + +/* Deprecated methods */ + +- (BOOL)updaterMayCheckForUpdates:(SPUUpdater *)updater __deprecated_msg("Please use -[SPUUpdaterDelegate updater:mayPerformUpdateCheck:error:] instead."); + +- (void)updater:(SPUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item __deprecated_msg("Please use -[SPUUpdaterDelegate updater:userDidMakeChoice:forUpdate:state:] instead."); + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterSettings.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterSettings.h new file mode 100644 index 00000000..8b69e962 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUpdaterSettings.h @@ -0,0 +1,69 @@ +// +// SPUUpdaterSettings.h +// Sparkle +// +// Created by Mayur Pawashe on 3/27/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + This class can be used for reading certain updater settings. + + It retrieves the settings by first looking into the host's user defaults. + If the setting is not found in there, then the host's Info.plist file is looked at. + */ +SU_EXPORT @interface SPUUpdaterSettings : NSObject + +- (instancetype)initWithHostBundle:(NSBundle *)hostBundle; + +/** + * Indicates whether or not automatic update checks are enabled. + */ +@property (readonly, nonatomic) BOOL automaticallyChecksForUpdates; + +/** + * The regular update check interval. + */ +@property (readonly, nonatomic) NSTimeInterval updateCheckInterval; + +/** + * Indicates whether or not automatically downloading updates is allowed to be turned on by the user. + * If this value is nil, the developer has not explicitly specified this option. + */ +@property (readonly, nonatomic, nullable) NSNumber *allowsAutomaticUpdatesOption; + +/** + * Indicates whether or not automatically downloading updates is allowed to be turned on by the user. + */ +@property (readonly, nonatomic) BOOL allowsAutomaticUpdates; + +/** + * Indicates whether or not automatically downloading updates is enabled by the user or developer. + * + * Note this does not indicate whether or not automatic downloading of updates is allowable. + * See `-allowsAutomaticUpdates` property for that. + */ +@property (readonly, nonatomic) BOOL automaticallyDownloadsUpdates; + +/** + * Indicates whether or not anonymous system profile information is sent when checking for updates. + */ +@property (readonly, nonatomic) BOOL sendsSystemProfile; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUserDriver.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUserDriver.h new file mode 100644 index 00000000..c43003f9 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUserDriver.h @@ -0,0 +1,296 @@ +// +// SPUUserDriver.h +// Sparkle +// +// Created by Mayur Pawashe on 2/14/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SPUUserUpdateState.h" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SPUUpdatePermissionRequest, SUUpdatePermissionResponse, SUAppcastItem, SPUDownloadData; + +/** + The API in Sparkle for controlling the user interaction. + + This protocol is used for implementing a user interface for the Sparkle updater. Sparkle's internal drivers tell + an object that implements this protocol what actions to take and show to the user. + + Every method in this protocol can be assumed to be called from the main thread. + */ +SU_EXPORT @protocol SPUUserDriver + +/** + * Show an updater permission request to the user + * + * Ask the user for their permission regarding update checks. + * This is typically only called once per app installation. + * + * @param request The update permission request. + * @param reply A reply with a update permission response. + */ +- (void)showUpdatePermissionRequest:(SPUUpdatePermissionRequest *)request reply:(void (^)(SUUpdatePermissionResponse *))reply; + +/** + * Show the user initating an update check + * + * Respond to the user initiating an update check. Sparkle uses this to show the user a window with an indeterminate progress bar. + * + * @param cancellation Invoke this cancellation block to cancel the update check before the update check is completed. + */ +- (void)showUserInitiatedUpdateCheckWithCancellation:(void (^)(void))cancellation; + +/** + * Show the user a new update is found. + * + * Let the user know a new update is found and ask them what they want to do. + * Before this point, `-showUserInitiatedUpdateCheckWithCancellation:` may be called. + * + * The potential `stage`s on the updater @c state are: + * + * `SPUUpdateStateNotDownloaded` - Update has not been downloaded yet. + * + * `SPUUpdateStateDownloaded` - Update has already been downloaded but not started installing yet. + * + * `SPUUpdateStateInstalling` - Update has been downloaded and already started installing. + * + * The `userIntiated` property on the @c state indicates if the update was initiated by the user or if it was automatically scheduled in the background. + * + * Additionally, these properties on the @c appcastItem are of importance: + * + * @c appcastItem.informationOnlyUpdate indicates if the update is only informational and should not be downloaded. You can direct the user to the infoURL property of the appcastItem in their web browser. Sometimes information only updates are used as a fallback in case a bad update is shipped, so you'll want to support this case. + * + * @c appcastItem.majorUpgrade indicates if the update is a major or paid upgrade. + * + * @c appcastItem.criticalUpdate indicates if the update is a critical update. + * + * A reply of `SPUUserUpdateChoiceInstall` begins or resumes downloading or installing the update. + * If the state.stage is `SPUUserUpdateStateInstalling`, this may send a quit event to the application and relaunch it immediately (in this state, this behaves as a fast "install and Relaunch"). + * Do not use this reply if @c appcastItem.informationOnlyUpdate is YES. + * + * A reply of `SPUUserUpdateChoiceDismiss` dismisses the update for the time being. The user may be reminded of the update at a later point. + * If the state.stage is `SPUUserUpdateStateDownloaded`, the downloaded update is kept after dismissing until the next time an update is shown to the user. + * If the state.stage is `SPUUserUpdateStateInstalling`, the installing update is also preserved after dismissing. In this state however, the update will also still be installed after the application is terminated. + * + * A reply of `SPUUserUpdateChoiceSkip` skips this particular version and won't notify the user again, unless they initiate an update check themselves. + * If @c appcastItem.majorUpgrade is YES, the major update and any future minor updates to that major release are skipped, unless a future minor update specifies a `` requirement. + * If the state.stage is `SPUUpdateStateInstalling`, the installation is also canceled when the update is skipped. + * + * @param appcastItem The Appcast Item containing information that reflects the new update. + * @param state The current state of the user update. See above discussion for notable properties. + * @param reply The reply which indicates if the update should be installed, dismissed, or skipped. See above discussion for more details. + */ +- (void)showUpdateFoundWithAppcastItem:(SUAppcastItem *)appcastItem state:(SPUUserUpdateState *)state reply:(void (^)(SPUUserUpdateChoice))reply; + +/** + * Show the user the release notes for the new update + * + * Display the release notes to the user. This will be called after showing the new update. + * This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + * That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil. + * + * @param downloadData The data for the release notes that was downloaded from the new update's appcast. + */ +- (void)showUpdateReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData; + +/** + * Show the user that the new update's release notes could not be downloaded + * + * This will be called after showing the new update. + * This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + * That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil. + * + * @param error The error associated with why the new update's release notes could not be downloaded. + */ +- (void)showUpdateReleaseNotesFailedToDownloadWithError:(NSError *)error; + +/** + * Show the user a new update was not found + * + * Let the user know a new update was not found after they tried initiating an update check. + * Before this point, `-showUserInitiatedUpdateCheckWithCancellation:` may be called. + * + * There are various reasons a new update is unavailable and can't be installed. + * The @c error object is populated with recovery and suggestion strings suitable to be shown in an alert. + * + * The @c userInfo dictionary on the @c error is also populated with two keys: + * + * `SPULatestAppcastItemFoundKey`: if available, this may provide the latest SUAppcastItem that was found. + * + * `SPUNoUpdateFoundReasonKey`: if available, this will provide the `SUNoUpdateFoundReason`. For example the reason could be because + * the latest version in the feed requires a newer OS version or could be because the user is already on the latest version. + * + * @param error The error associated with why a new update was not found. See above discussion for more details. + * @param acknowledgement Acknowledge to the updater that no update found error was shown. + */ +- (void)showUpdateNotFoundWithError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement; + +/** + * Show the user an update error occurred + * + * Let the user know that the updater failed with an error. This will not be invoked without the user having been + * aware that an update was in progress. + * + * Before this point, any of the non-error user driver methods may have been invoked. + * + * @param error The error associated with what update error occurred. + * @param acknowledgement Acknowledge to the updater that the error was shown. + */ +- (void)showUpdaterError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement; + +/** + * Show the user that downloading the new update initiated + * + * Let the user know that downloading the new update started. + * + * @param cancellation Invoke this cancellation block to cancel the download at any point before `-showDownloadDidStartExtractingUpdate` is invoked. + */ +- (void)showDownloadInitiatedWithCancellation:(void (^)(void))cancellation; + +/** + * Show the user the content length of the new update that will be downloaded + * + * @param expectedContentLength The expected content length of the new update being downloaded. + * An implementor should be able to handle if this value is invalid (more or less than actual content length downloaded). + * Additionally, this method may be called more than once for the same download in rare scenarios. + */ +- (void)showDownloadDidReceiveExpectedContentLength:(uint64_t)expectedContentLength; + +/** + * Show the user that the update download received more data + * + * This may be an appropriate time to advance a visible progress indicator of the download + * @param length The length of the data that was just downloaded + */ +- (void)showDownloadDidReceiveDataOfLength:(uint64_t)length; + +/** + * Show the user that the update finished downloading and started extracting + * + * Sparkle uses this to show an indeterminate progress bar. + * + * Note that an update can resume at this point after having been downloaded before, + * so this may be called without any of the download callbacks being invoked prior. + */ +- (void)showDownloadDidStartExtractingUpdate; + +/** + * Show the user that the update is extracting with progress + * + * Let the user know how far along the update extraction is. + * + * Before this point, `-showDownloadDidStartExtractingUpdate` is called. + * + * @param progress The progress of the extraction from a 0.0 to 1.0 scale + */ +- (void)showExtractionReceivedProgress:(double)progress; + +/** + * Show the user that the update is ready to install & relaunch + * + * Let the user know that the update is ready to install and relaunch, and ask them whether they want to proceed. + * Note if the target application has already terminated, this method may not be invoked. + * + * A reply of `SPUUserUpdateChoiceInstall` installs the update the new update immediately. The application is relaunched only if it is still running by the time this reply is invoked. If the application terminates on its own, Sparkle will attempt to automatically install the update. + * + * A reply of `SPUUserUpdateChoiceDismiss` dismisses the update installation for the time being. Note the update may still be installed automatically after the application terminates. + * + * A reply of `SPUUserUpdateChoiceSkip` cancels the current update that has begun installing and dismisses the update. In this circumstance, the update is canceled but this update version is not skipped in the future. + * + * Before this point, `-showExtractionReceivedProgress:` or `-showUpdateFoundWithAppcastItem:state:reply:` may be called. + * + * @param reply The reply which indicates if the update should be installed, dismissed, or skipped. See above discussion for more details. + */ +- (void)showReadyToInstallAndRelaunch:(void (^)(SPUUserUpdateChoice))reply; + +/** + * Show the user that the update is installing + * + * Let the user know that the update is currently installing. + * + * Before this point, `-showReadyToInstallAndRelaunch:` or `-showUpdateFoundWithAppcastItem:state:reply:` will be called. + * + * @param applicationTerminated Indicates if the application has been terminated already. + * If the application hasn't been terminated, a quit event is sent to the running application before installing the update. + * If the application or user delays or cancels termination, there may be an indefinite period of time before the application fully quits. + * It is up to the implementor whether or not to decide to continue showing installation progress in this case. + * + * @param retryTerminatingApplication This handler gives a chance for the application to re-try sending a quit event to the running application before installing the update. + * The application may cancel or delay termination. This handler gives the user driver another chance to allow the user to try terminating the application again. + * If the application does not delay or cancel application termination, there is no need to invoke this handler. This handler may be invoked multiple times. + * Note this handler should not be invoked if @c applicationTerminated is already @c YES + */ +- (void)showInstallingUpdateWithApplicationTerminated:(BOOL)applicationTerminated retryTerminatingApplication:(void (^)(void))retryTerminatingApplication; + +/** + * Show the user that the update installation finished + * + * Let the user know that the update finished installing. + * + * This will only be invoked if the updater process is still alive, which is typically not the case if + * the updater's lifetime is tied to the application it is updating. This implementation must not try to reference + * the old bundle prior to the installation, which will no longer be around. + * + * Before this point, `-showInstallingUpdateWithApplicationTerminated:retryTerminatingApplication:` will be called. + * + * @param relaunched Indicates if the update was relaunched. + * @param acknowledgement Acknowledge to the updater that the finished installation was shown. + */ +- (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched acknowledgement:(void (^)(void))acknowledgement; + +/** + * Show the user the current presented update or its progress in utmost focus + * + * The user wishes to check for updates while the user is being shown update progress. + * Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc). + */ +- (void)showUpdateInFocus; + +/** + * Dismiss the current update installation + * + * Stop and tear down everything. + * Dismiss all update windows, alerts, progress, etc from the user. + * Basically, stop everything that could have been started. Sparkle may invoke this when aborting or finishing an update. + */ +- (void)dismissUpdateInstallation; + +/* + * Below are deprecated methods that have been replaced by better alternatives. + * The deprecated methods will be used if the alternatives have not been implemented yet. + * In the future support for using these deprecated methods may be removed however. + */ +@optional + +// Clients should move to non-deprecated methods +// Deprecated methods are only (temporarily) kept around for compatibility reasons + +- (void)showUpdateNotFoundWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateNotFoundWithError:acknowledgement: instead"); + +- (void)showUpdateInstallationDidFinishWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead"); + +- (void)dismissUserInitiatedUpdateCheck __deprecated_msg("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs."); + +- (void)showInstallingUpdate __deprecated_msg("Implement -showInstallingUpdateWithApplicationTerminated:retryTerminatingApplication: instead."); + +- (void)showSendingTerminationSignal __deprecated_msg("Implement -showInstallingUpdateWithApplicationTerminated:retryTerminatingApplication: instead."); + +- (void)showInstallingUpdateWithApplicationTerminated:(BOOL)applicationTerminated __deprecated_msg("Implement -showInstallingUpdateWithApplicationTerminated:retryTerminatingApplication: instead.");; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SPUUserUpdateState.h b/OSX/Sparkle.framework/Versions/B/Headers/SPUUserUpdateState.h new file mode 100644 index 00000000..06725ccc --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SPUUserUpdateState.h @@ -0,0 +1,85 @@ +// +// SPUUserUpdateState.h +// Sparkle +// +// Created by Mayur Pawashe on 2/29/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#ifndef SPUUserUpdateState_h +#define SPUUserUpdateState_h + +#import + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + A choice made by the user when prompted with a new update. + */ +typedef NS_ENUM(NSInteger, SPUUserUpdateChoice) { + /** + Dismisses the update and skips being notified of it in the future. + */ + SPUUserUpdateChoiceSkip, + /** + Downloads (if needed) and installs the update. + */ + SPUUserUpdateChoiceInstall, + /** + Dismisses the update until Sparkle reminds the user of it at a later time. + */ + SPUUserUpdateChoiceDismiss, +}; + +/** + Describes the current stage an update is undergoing. + */ +typedef NS_ENUM(NSInteger, SPUUserUpdateStage) { + /** + The update has not been downloaded. + */ + SPUUserUpdateStageNotDownloaded, + /** + The update has already been downloaded but not begun installing. + */ + SPUUserUpdateStageDownloaded, + /** + The update has already been downloaded and began installing in the background. + */ + SPUUserUpdateStageInstalling +}; + +/** + This represents the user's current update state. + */ +SU_EXPORT @interface SPUUserUpdateState : NSObject + +- (instancetype)init NS_UNAVAILABLE; + +/** + The current update stage. + + This stage indicates if data has been already downloaded or not, or if an update is currently being installed. + */ +@property (nonatomic, readonly) SPUUserUpdateStage stage; + +/** + Indicates whether or not the update check was initiated by the user. + */ +@property (nonatomic, readonly) BOOL userInitiated; + +@end + +NS_ASSUME_NONNULL_END + +#endif /* SPUUserUpdateState_h */ diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUAppcast.h b/OSX/Sparkle.framework/Versions/B/Headers/SUAppcast.h new file mode 100644 index 00000000..4f8e3cb1 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUAppcast.h @@ -0,0 +1,45 @@ +// +// SUAppcast.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCAST_H +#define SUAPPCAST_H + +#import +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SUAppcastItem; + +/** + The appcast representing a collection of `SUAppcastItem` items in the feed. + */ +SU_EXPORT @interface SUAppcast : NSObject + +- (instancetype)init NS_UNAVAILABLE; + +/** + The collection of update items. + + These `SUAppcastItem` items are in the same order as specified in the appcast XML feed and are thus not sorted by version. + */ +@property (readonly, nonatomic, copy) NSArray *items; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUAppcastItem.h b/OSX/Sparkle.framework/Versions/B/Headers/SUAppcastItem.h new file mode 100644 index 00000000..e875e501 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUAppcastItem.h @@ -0,0 +1,406 @@ +// +// SUAppcastItem.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCASTITEM_H +#define SUAPPCASTITEM_H + +#import + +#ifdef BUILDING_SPARKLE_SOURCES_EXTERNALLY +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + The appcast item describing an update in the application's appcast feed. + + An appcast item represents a single update item in the `SUAppcast` contained within the @c element. + + Every appcast item must have a `versionString`, and either a `fileURL` or an `infoURL`. + All the remaining properties describing an update to the application are optional. + + Extended documentation and examples on using appcast item features are available at: + https://sparkle-project.org/documentation/publishing/ + */ +SU_EXPORT @interface SUAppcastItem : NSObject + +/** + The version of the update item. + + Sparkle uses this property to compare update items and determine the best available update item in the `SUAppcast`. + + This corresponds to the application update's @c CFBundleVersion + + This is extracted from the @c element, or the @c sparkle:version attribute from the @c element. + */ +@property (nonatomic, copy, readonly) NSString *versionString; + +/** + The human-readable display version of the update item if provided. + + This is the version string shown to the user when they are notified of a new update. + + This corresponds to the application update's @c CFBundleShortVersionString + + This is extracted from the @c element, or the @c sparkle:shortVersionString attribute from the @c element. + + If no short version string is available, this falls back to the update's `versionString`. + */ +@property (nonatomic, copy, readonly) NSString *displayVersionString; + +/** + The file URL to the update item if provided. + + This download contains the actual update Sparkle will attempt to install. + In cases where a download cannot be provided, an `infoURL` must be provided instead. + + A file URL should have an accompanying `contentLength` provided. + + This is extracted from the @c url attribute in the @c element. + */ +@property (nonatomic, readonly, nullable) NSURL *fileURL; + +/** + The content length of the download in bytes. + + This property is used as a fallback when the server doesn't report the content length of the download. + In that case, it is used to report progress of the downloading update to the user. + + A warning is outputted if this property is not equal the server's expected content length (if provided). + + This is extracted from the @c length attribute in the @c element. + It should be specified if a `fileURL` is provided. + */ +@property (nonatomic, readonly) uint64_t contentLength; + +/** + The info URL to the update item if provided. + + This informational link is used to direct the user to learn more about an update they cannot download/install directly from within the application. + The link should point to the product's web page. + + The informational link will be used if `informationOnlyUpdate` is @c YES + + This is extracted from the @c element. + */ +@property (nonatomic, readonly, nullable) NSURL *infoURL; + +/** + Indicates whether or not the update item is only informational and has no download. + + If `infoURL` is not present, this is @c NO + + If `fileURL` is not present, this is @c YES + + Otherwise this is determined based on the contents extracted from the @c element. + */ +@property (nonatomic, getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate; + +/** + The title of the appcast item if provided. + + This is extracted from the @c element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *title; + +/** + The date string of the appcast item if provided. + + The `date` property is constructed from this property and expects this string to comply with the following date format: + `E, dd MMM yyyy HH:mm:ss Z` + + This is extracted from the @c <pubDate> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *dateString; + +/** + The date constructed from the `dateString` property if provided. + + Sparkle by itself only uses this property for phased group rollouts specified via `phasedRolloutInterval`, but clients may query this property too. + + This date is constructed using the @c en_US locale. + */ +@property (nonatomic, copy, readonly, nullable) NSDate *date; + +/** + The release notes URL of the appcast item if provided. + + This external link points to an HTML file that Sparkle downloads and renders to show the user a new or old update item's changelog. + + An alternative to using an external release notes link is providing an embedded `itemDescription`. + + This is extracted from the @c <sparkle:releaseNotesLink> element. + */ +@property (nonatomic, readonly, nullable) NSURL *releaseNotesURL; + +/** + The description of the appcast item if provided. + + A description may be provided for inline/embedded release notes for new updates using @c <![CDATA[...]]> + This is an alternative to providing a `releaseNotesURL`. + + This is extracted from the @c <description> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *itemDescription; + +/** + The format of the `itemDescription` for inline/embedded release notes if provided. + + This may be: + - @c html + - @c plain-text + + This is extracted from the @c sparkle:descriptionFormat attribute in the @c <description> element. + + If the format is not provided in the @c <description> element of the appcast item, then this property may default to `html`. + + If the @c <description> element of the appcast item is not available, this property is `nil`. + */ +@property (nonatomic, readonly, nullable) NSString *itemDescriptionFormat; + +/** + The full release notes URL of the appcast item if provided. + + The link should point to the product's full changelog. + + Sparkle's standard user interface offers to show these full release notes when a user checks for a new update and no new update is available. + + This is extracted from the @c <sparkle:fullReleaseNotesLink> element. + */ +@property (nonatomic, readonly, nullable) NSURL *fullReleaseNotesURL; + +/** + The required minimum system operating version string for this update if provided. + + This version string should contain three period-separated components. + + Example: @c 10.13.0 + + Use `minimumOperatingSystemVersionIsOK` property to test if the current running system passes this requirement. + + This is extracted from the @c <sparkle:minimumSystemVersion> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *minimumSystemVersion; + +/** + Indicates whether or not the current running system passes the `minimumSystemVersion` requirement. + */ +@property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK; + +/** + The required maximum system operating version string for this update if provided. + + A maximum system operating version requirement should only be made in unusual scenarios. + + This version string should contain three period-separated components. + + Example: @c 10.14.0 + + Use `maximumOperatingSystemVersionIsOK` property to test if the current running system passes this requirement. + + This is extracted from the @c <sparkle:maximumSystemVersion> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *maximumSystemVersion; + +/** + Indicates whether or not the current running system passes the `maximumSystemVersion` requirement. + */ +@property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK; + +/** + The channel the update item is on if provided. + + An update item may specify a custom channel name (such as @c beta) that can only be found by updaters that filter for that channel. + If no channel is provided, the update item is assumed to be on the default channel. + + This is extracted from the @c <sparkle:channel> element. + Old applications must be using Sparkle 2 or later to interpret the channel element and to ignore unmatched channels. + */ +@property (nonatomic, readonly, nullable) NSString *channel; + +/** + The installation type of the update at `fileURL` + + This may be: + - @c application - indicates this is a regular application update. + - @c package - indicates this is a guided package installer update. + - @c interactive-package - indicates this is an interactive package installer update (deprecated; use "package" instead) + + This is extracted from the @c sparkle:installationType attribute in the @c <enclosure> element. + + If no installation type is provided in the enclosure, the installation type is inferred from the `fileURL` file extension instead. + + If the file extension is @c pkg or @c mpkg, the installation type is @c package otherwise it is @c application + + Hence, the installation type in the enclosure element only needs to be specified for package based updates distributed inside of a @c zip or other archive format. + + Old applications must be using Sparkle 1.26 or later to support downloading bare package updates (`pkg` or `mpkg`) that are not additionally archived inside of a @c zip or other archive format. + */ +@property (nonatomic, copy, readonly) NSString *installationType; + +/** + The phased rollout interval of the update item in seconds if provided. + + This is the interval between when different groups of users are notified of a new update. + + For this property to be used by Sparkle, the published `date` on the update item must be present as well. + + After each interval after the update item's `date`, a new group of users become eligible for being notified of the new update. + + This is extracted from the @c <sparkle:phasedRolloutInterval> element. + + Old applications must be using Sparkle 1.25 or later to support phased rollout intervals, otherwise they may assume updates are immediately available. + */ +@property (nonatomic, copy, readonly, nullable) NSNumber* phasedRolloutInterval; + +/** + The minimum bundle version string this update requires for automatically downloading and installing updates if provided. + + If an application's bundle version meets this version requirement, it can install the new update item in the background automatically. + + Otherwise if the requirement is not met, the user is always prompted to install the update. In this case, the update is assumed to be a `majorUpgrade`. + + If the update is a `majorUpgrade` and the update is skipped by the user, other future update alerts with the same `minimumAutoupdateVersion` will also be skipped automatically unless an update specifies `ignoreSkippedUpgradesBelowVersion`. + + This version string corresponds to the application's @c CFBundleVersion + + This is extracted from the @c <sparkle:minimumAutoupdateVersion> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *minimumAutoupdateVersion; + +/** + Indicates whether or not the update item is a major upgrade. + + An update is a major upgrade if the application's bundle version doesn't meet the `minimumAutoupdateVersion` requirement. + */ +@property (nonatomic, getter=isMajorUpgrade, readonly) BOOL majorUpgrade; + +/** + Previously skipped upgrades by the user will be ignored if they skipped an update whose version precedes this version. + + This can only be applied if the update is a `majorUpgrade`. + + This version string corresponds to the application's @c CFBundleVersion + + This is extracted from the @c <sparkle:ignoreSkippedUpgradesBelowVersion> element. + + Old applications must be using Sparkle 2.1 or later, otherwise this property will be ignored. + */ +@property (nonatomic, readonly, nullable) NSString *ignoreSkippedUpgradesBelowVersion; + +/** + Indicates whether or not the update item is critical. + + Critical updates are shown to the user more promptly. Sparkle's standard user interface also does not allow them to be skipped. + + This is determined and extracted from a top-level @c <sparkle:criticalUpdate> element or a @c sparkle:criticalUpdate element inside of a @c sparkle:tags element. + + Old applications must be using Sparkle 2 or later to support the top-level @c <sparkle:criticalUpdate> element. + */ +@property (nonatomic, getter=isCriticalUpdate, readonly) BOOL criticalUpdate; + +/** + Specifies the operating system the download update is available for if provided. + + If this property is not provided, then the supported operating system is assumed to be macOS. + + Known potential values for this string are @c macos and @c windows + + Sparkle on Mac ignores update items that are for other operating systems. + This is only useful for sharing appcasts between Sparkle on Mac and Sparkle on other operating systems. + + Use `macOsUpdate` property to test if this update item is for macOS. + + This is extracted from the @c sparkle:os attribute in the @c <enclosure> element. + */ +@property (nonatomic, copy, readonly, nullable) NSString *osString; + +/** + Indicates whether or not this update item is for macOS. + + This is determined from the `osString` property. + */ +@property (nonatomic, getter=isMacOsUpdate, readonly) BOOL macOsUpdate; + +/** + The delta updates for this update item. + + Sparkle uses these to download and apply a smaller update based on the version the user is updating from. + + The key is based on the @c sparkle:version of the update. + The value is an update item that will have `deltaUpdate` be @c YES + + Clients typically should not need to examine the contents of the delta updates. + + This is extracted from the @c <sparkle:deltas> element. + */ +@property (nonatomic, copy, readonly, nullable) NSDictionary<NSString *, SUAppcastItem *> *deltaUpdates; + +/** + The expected size of the Sparkle executable file before applying this delta update. + + This attribute is used to test if the delta item can still be applied. If Sparkle's executable file has changed (e.g. from having an architecture stripped), + then the delta item cannot be applied. + + This is extracted from the @c sparkle:deltaFromSparkleExecutableSize attribute from the @c <enclosure> element of a @c sparkle:deltas item. + This attribute is optional for delta update items. + */ +@property (nonatomic, nonatomic, readonly, nullable) NSNumber *deltaFromSparkleExecutableSize; + +/** + An expected set of Sparkle's locales present on disk before applying this delta update. + + This attribute is used to test if the delta item can still be applied. If Sparkle's list of locales present on disk (.lproj directories) do not contain any items from this set, + (e.g. from having localization files stripped) then the delta item cannot be applied. This set does not need to be a complete list of locales. Sparkle may even decide + to not process all them. 1-10 should be a decent amount. + + This is extracted from the @c sparkle:deltaFromSparkleLocales attribute from the @c <enclosure> element of a @c sparkle:deltas item. + The locales extracted from this attribute are delimited by a comma (e.g. "en,ca,fr,hr,hu"). This attribute is optional for delta update items. + */ +@property (nonatomic, nonatomic, readonly, nullable) NSSet<NSString *> *deltaFromSparkleLocales; + +/** + Indicates whether or not the update item is a delta update. + + An update item is a delta update if it is in the `deltaUpdates` of another update item. + */ +@property (nonatomic, getter=isDeltaUpdate, readonly) BOOL deltaUpdate; + +/** + The dictionary representing the entire appcast item. + + This is useful for querying custom extensions or elements from the appcast item. + */ +@property (nonatomic, readonly, copy) NSDictionary *propertiesDictionary; + +- (instancetype)init NS_UNAVAILABLE; + +/** + An empty appcast item. + + This may be used as a potential return value in `-[SPUUpdaterDelegate bestValidUpdateInAppcast:forUpdater:]` + */ ++ (instancetype)emptyAppcastItem; + +// Deprecated initializers +- (nullable instancetype)initWithDictionary:(NSDictionary *)dict __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case."); +- (nullable instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case."); +- (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case."); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUErrors.h b/OSX/Sparkle.framework/Versions/B/Headers/SUErrors.h new file mode 100644 index 00000000..2211c172 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUErrors.h @@ -0,0 +1,107 @@ +// +// SUErrors.h +// Sparkle +// +// Created by C.W. Betts on 10/13/14. +// Copyright (c) 2014 Sparkle Project. All rights reserved. +// + +#ifndef SUERRORS_H +#define SUERRORS_H + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +/** + * Error domain used by Sparkle + */ +SU_EXPORT extern NSString *const SUSparkleErrorDomain; + +typedef NS_ENUM(OSStatus, SUError) { + // Configuration phase errors + SUNoPublicDSAFoundError = 0001, + SUInsufficientSigningError = 0002, + SUInsecureFeedURLError = 0003, + SUInvalidFeedURLError = 0004, + SUInvalidUpdaterError = 0005, + SUInvalidHostBundleIdentifierError = 0006, + SUInvalidHostVersionError = 0007, + + // Appcast phase errors. + SUAppcastParseError = 1000, + SUNoUpdateError = 1001, + SUAppcastError = 1002, + SURunningFromDiskImageError = 1003, + SUResumeAppcastError = 1004, + SURunningTranslocated = 1005, + SUWebKitTerminationError = 1006, + SUReleaseNotesError = 1007, + + // Download phase errors. + SUTemporaryDirectoryError = 2000, + SUDownloadError = 2001, + + // Extraction phase errors. + SUUnarchivingError = 3000, + SUSignatureError = 3001, + SUValidationError = 3002, + + // Installation phase errors. + SUFileCopyFailure = 4000, + SUAuthenticationFailure = 4001, + SUMissingUpdateError = 4002, + SUMissingInstallerToolError = 4003, + SURelaunchError = 4004, + SUInstallationError = 4005, + SUDowngradeError = 4006, + SUInstallationCanceledError = 4007, + SUInstallationAuthorizeLaterError = 4008, + SUNotValidUpdateError = 4009, + SUAgentInvalidationError = 4010, + SUInstallationRootInteractiveError = 4011, + SUInstallationWriteNoPermissionError = 4012, + + // API misuse errors. + SUIncorrectAPIUsageError = 5000 +}; + +/** + The reason why a new update is not available. + */ +typedef NS_ENUM(OSStatus, SPUNoUpdateFoundReason) { + /** + A new update is unavailable for an unknown reason. + */ + SPUNoUpdateFoundReasonUnknown, + /** + A new update is unavailable because the user is on the latest known version in the appcast feed. + */ + SPUNoUpdateFoundReasonOnLatestVersion, + /** + A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed. + */ + SPUNoUpdateFoundReasonOnNewerThanLatestVersion, + /** + A new update is unavailable because the user's operating system version is too old for the update. + */ + SPUNoUpdateFoundReasonSystemIsTooOld, + /** + A new update is unavailable because the user's operating system version is too new for the update. + */ + SPUNoUpdateFoundReasonSystemIsTooNew +}; + +SU_EXPORT extern NSString *const SPUNoUpdateFoundReasonKey; +SU_EXPORT extern NSString *const SPULatestAppcastItemFoundKey; +SU_EXPORT extern NSString *const SPUNoUpdateFoundUserInitiatedKey; + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUExport.h b/OSX/Sparkle.framework/Versions/B/Headers/SUExport.h new file mode 100644 index 00000000..3e3f8a16 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUExport.h @@ -0,0 +1,18 @@ +// +// SUExport.h +// Sparkle +// +// Created by Jake Petroules on 2014-08-23. +// Copyright (c) 2014 Sparkle Project. All rights reserved. +// + +#ifndef SUEXPORT_H +#define SUEXPORT_H + +#ifdef BUILDING_SPARKLE +#define SU_EXPORT __attribute__((visibility("default"))) +#else +#define SU_EXPORT +#endif + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUStandardVersionComparator.h b/OSX/Sparkle.framework/Versions/B/Headers/SUStandardVersionComparator.h new file mode 100644 index 00000000..1316819a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUStandardVersionComparator.h @@ -0,0 +1,63 @@ +// +// SUStandardVersionComparator.h +// Sparkle +// +// Created by Andy Matuschak on 12/21/07. +// Copyright 2007 Andy Matuschak. All rights reserved. +// + +#ifndef SUSTANDARDVERSIONCOMPARATOR_H +#define SUSTANDARDVERSIONCOMPARATOR_H + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#import "SUVersionComparisonProtocol.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#import <Sparkle/SUVersionComparisonProtocol.h> +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + Sparkle's default version comparator. + + This comparator is adapted from MacPAD, by Kevin Ballard. + It's "dumb" in that it does essentially string comparison, + in components split by character type. +*/ +SU_EXPORT @interface SUStandardVersionComparator : NSObject <SUVersionComparison> + +/** + Initializes a new instance of the standard version comparator. +*/ +- (instancetype)init; + +/** + A singleton instance of the comparator. + */ +@property (nonatomic, class, readonly) SUStandardVersionComparator *defaultComparator; + +/** + Compares two version strings through textual analysis. + + These version strings should be in the format of x, x.y, or x.y.z where each component is a number. + For example, valid version strings include "1.5.3", "500", or "4000.1" + These versions that are compared correspond to the @c CFBundleVersion values of the updates. + + @param versionA The first version string to compare. + @param versionB The second version string to compare. + @return A comparison result between @c versionA and @c versionB +*/ +- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; + +@end + +NS_ASSUME_NONNULL_END +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUUpdatePermissionResponse.h b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdatePermissionResponse.h new file mode 100644 index 00000000..d2a50ae0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdatePermissionResponse.h @@ -0,0 +1,73 @@ +// +// SUUpdatePermissionResponse.h +// Sparkle +// +// Created by Mayur Pawashe on 2/8/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + This class represents a response for permission to check updates. +*/ +SU_EXPORT @interface SUUpdatePermissionResponse : NSObject<NSSecureCoding> + +/** + Initializes a new update permission response instance. + + @param automaticUpdateChecks Flag to enable automatic update checks. + @param sendSystemProfile Flag for if system profile information should be sent to the server hosting the appcast. + */ +- (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks sendSystemProfile:(BOOL)sendSystemProfile; + +/** + Initializes a new update permission response instance. + + @param automaticUpdateChecks Flag to enable automatic update checks. + @param automaticUpdateDownloading Flag to enable automatic downloading and installing of updates. If this is nil, this option will be ignored. + @param sendSystemProfile Flag for if system profile information should be sent to the server hosting the appcast. + */ +- (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks automaticUpdateDownloading:(NSNumber * _Nullable)automaticUpdateDownloading sendSystemProfile:(BOOL)sendSystemProfile; + +/* + Use -initWithAutomaticUpdateChecks:sendSystemProfile: instead. + */ +- (instancetype)init NS_UNAVAILABLE; + +/** + A read-only property indicating if update checks should be done automatically. + */ +@property (nonatomic, readonly) BOOL automaticUpdateChecks; + +/** + A read-only property indicating if updates should be automatically downloaded and installed. + + If this property is `nil`, then no user choice was made for this option. + + If `automaticUpdateChecks` is `NO` then this property should not be `@(YES)`. + Set it to `NO` if the user was given the choice of automatically downloading and installing updates, + otherwise set it to `nil`. + */ +@property (nonatomic, readonly, nullable) NSNumber *automaticUpdateDownloading; + +/** + A read-only property indicating if system profile should be sent or not. + */ +@property (nonatomic, readonly) BOOL sendSystemProfile; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUUpdater.h b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdater.h new file mode 100644 index 00000000..5bc7d68b --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdater.h @@ -0,0 +1,212 @@ +// +// SUUpdater.h +// Sparkle +// +// Created by Andy Matuschak on 1/4/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUUPDATER_H +#define SUUPDATER_H + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#import "SUVersionComparisonProtocol.h" +#import "SUVersionDisplayProtocol.h" +#import "SUUpdaterDelegate.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#import <Sparkle/SUVersionComparisonProtocol.h> +#import <Sparkle/SUVersionDisplayProtocol.h> +#import <Sparkle/SUUpdaterDelegate.h> +#endif + +@class SUAppcastItem, SUAppcast, NSMenuItem; + +@protocol SUUpdaterDelegate; + +/** + The legacy API in Sparkle for controlling the update mechanism. + + This class is now deprecated and acts as a thin wrapper around `SPUUpdater` and `SPUStandardUserDriver`. + + If you are migrating to Sparkle 2, use `SPUStandardUpdaterController` instead, or `SPUUpdater` if you need more control. + */ +__deprecated_msg("Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.") +SU_EXPORT @interface SUUpdater : NSObject + +@property (unsafe_unretained, nonatomic) IBOutlet id<SUUpdaterDelegate> delegate; + +/*! + The shared updater for the main bundle. + + This is equivalent to passing [NSBundle mainBundle] to SUUpdater::updaterForBundle: + */ ++ (SUUpdater *)sharedUpdater; + +/*! + The shared updater for a specified bundle. + If an updater has already been initialized for the provided bundle, that shared instance will be returned. + */ ++ (SUUpdater *)updaterForBundle:(NSBundle *)bundle; + +/*! + Designated initializer for SUUpdater. + + If an updater has already been initialized for the provided bundle, that shared instance will be returned. + */ +- (instancetype)initForBundle:(NSBundle *)bundle; + +/*! + Explicitly checks for updates and displays a progress dialog while doing so. + + This method is meant for a main menu item. + Connect any menu item to this action in Interface Builder, + and Sparkle will check for updates and report back its findings verbosely + when it is invoked. + + This will find updates that the user has opted into skipping. + */ +- (IBAction)checkForUpdates:(id)sender; + +/*! + The menu item validation used for the -checkForUpdates: action + */ +- (BOOL)validateMenuItem:(NSMenuItem *)menuItem; + +/*! + Checks for updates, but does not display any UI unless an update is found. + + This is meant for programmatically initating a check for updates. That is, + it will display no UI unless it actually finds an update, in which case it + proceeds as usual. + + If automatic downloading of updates it turned on and allowed, however, + this will invoke that behavior, and if an update is found, it will be downloaded + in the background silently and will be prepped for installation. + + This will not find updates that the user has opted into skipping. + */ +- (void)checkForUpdatesInBackground; + +/*! + A property indicating whether or not to check for updates automatically. + + Setting this property will persist in the host bundle's user defaults. + The update schedule cycle will be reset in a short delay after the property's new value is set. + This is to allow reverting this property without kicking off a schedule change immediately + */ +@property (nonatomic) BOOL automaticallyChecksForUpdates; + +/*! + A property indicating whether or not updates can be automatically downloaded in the background. + + Note that automatic downloading of updates can be disallowed by the developer. + In this case, -automaticallyDownloadsUpdates will return NO regardless of how this property is set. + + Setting this property will persist in the host bundle's user defaults. + */ +@property (nonatomic) BOOL automaticallyDownloadsUpdates; + +/*! + A property indicating the current automatic update check interval. + + Setting this property will persist in the host bundle's user defaults. + The update schedule cycle will be reset in a short delay after the property's new value is set. + This is to allow reverting this property without kicking off a schedule change immediately + */ +@property (nonatomic) NSTimeInterval updateCheckInterval; + +/*! + Begins a "probing" check for updates which will not actually offer to + update to that version. + + However, the delegate methods + SUUpdaterDelegate::updater:didFindValidUpdate: and + SUUpdaterDelegate::updaterDidNotFindUpdate: will be called, + so you can use that information in your UI. + + Updates that have been skipped by the user will not be found. + */ +- (void)checkForUpdateInformation; + +/*! + The URL of the appcast used to download update information. + + Setting this property will persist in the host bundle's user defaults. + If you don't want persistence, you may want to consider instead implementing + SUUpdaterDelegate::feedURLStringForUpdater: or SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: + + This property must be called on the main thread. + */ +@property (nonatomic, copy) NSURL *feedURL; + +/*! + The host bundle that is being updated. + */ +@property (readonly, nonatomic) NSBundle *hostBundle; + +/*! + The bundle this class (SUUpdater) is loaded into. + */ +@property (nonatomic, readonly) NSBundle *sparkleBundle; + +/*! + The user agent used when checking for and downloading updates. + + The default implementation can be overrided. + */ +@property (nonatomic, copy) NSString *userAgentString; + +/*! + The HTTP headers used when checking for and downloading updates. + + The keys of this dictionary are HTTP header fields (NSString) and values are corresponding values (NSString) + */ +@property (copy, nonatomic) NSDictionary<NSString *, NSString *> *httpHeaders; + +/*! + A property indicating whether or not the user's system profile information is sent when checking for updates. + + Setting this property will persist in the host bundle's user defaults. + */ +@property (nonatomic) BOOL sendsSystemProfile; + +/*! + A property indicating the decryption password used for extracting updates shipped as Apple Disk Images (dmg) + */ +@property (nonatomic, copy) NSString *decryptionPassword; + +/*! + Returns the date of last update check. + + \returns \c nil if no check has been performed. + */ +@property (nonatomic, readonly, copy) NSDate *lastUpdateCheckDate; + +/*! + Appropriately schedules or cancels 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; + +/*! + A property indicating whether or not an update is in progress. + + Note this property is not indicative of whether or not user initiated updates can be performed. + Use SUUpdater::validateMenuItem: for that instead. + */ +@property (nonatomic, readonly) BOOL updateInProgress; + +@end + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUUpdaterDelegate.h b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdaterDelegate.h new file mode 100644 index 00000000..42edf332 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUUpdaterDelegate.h @@ -0,0 +1,363 @@ +// +// SUUpdaterDelegate.h +// Sparkle +// +// Created by Mayur Pawashe on 3/12/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +@protocol SUVersionComparison, SUVersionDisplay; +@class SUUpdater, SUAppcast, SUAppcastItem; + +NS_ASSUME_NONNULL_BEGIN + +// ----------------------------------------------------------------------------- +// SUUpdater Notifications for events that might be interesting to more than just the delegate +// The updater will be the notification object +// ----------------------------------------------------------------------------- +SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification; +SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification; +SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification; +SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification; +#define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification; +#define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification; + +// Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo +SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey; +// Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo +SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey; + +// ----------------------------------------------------------------------------- +// SUUpdater Delegate: +// ----------------------------------------------------------------------------- + +/*! + Provides methods to control the behavior of an SUUpdater object. + */ +__deprecated_msg("Deprecated in Sparkle 2. See SPUUpdaterDelegate instead") +@protocol SUUpdaterDelegate <NSObject> +@optional + +/*! + Returns whether to allow Sparkle to pop up. + + For example, this may be used to prevent Sparkle from interrupting a setup assistant. + + \param updater The SUUpdater instance. + */ +- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)updater; + +/*! + Returns additional parameters to append to the appcast URL's query string. + + This is potentially based on whether or not Sparkle will also be sending along the system profile. + + \param updater The SUUpdater instance. + \param sendingProfile Whether the system profile will also be sent. + + \return An array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user. + */ +- (NSArray<NSDictionary<NSString *, NSString *> *> *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; + +/*! + Returns a custom appcast URL. + + Override this to dynamically specify the entire URL. + + An alternative may be to use SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: + and let the server handle what kind of feed to provide. + + \param updater The SUUpdater instance. + */ +- (nullable NSString *)feedURLStringForUpdater:(SUUpdater *)updater; + +/*! + Returns whether Sparkle should prompt the user about automatic update checks. + + Use this to override the default behavior. + + \param updater The SUUpdater instance. + */ +- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)updater; + +/*! + Called after Sparkle has downloaded the appcast from the remote server. + + Implement this if you want to do some special handling with the appcast once it finishes loading. + + \param updater The SUUpdater instance. + \param appcast The appcast that was downloaded from the remote server. + */ +- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; + +/*! + Returns the item in the appcast corresponding to the update that should be installed. + + 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. + + \param appcast The appcast that was downloaded from the remote server. + \param updater The SUUpdater instance. + */ +- (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)updater; + +/*! + Called when a valid update is found by the update driver. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + */ +- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item; + +/*! + Called when a valid update is not found. + + \param updater The SUUpdater instance. + */ +- (void)updaterDidNotFindUpdate:(SUUpdater *)updater; + +/*! + Called just before the scheduled update driver prompts the user to install an update. + + \param updater The SUUpdater instance. + + \return YES to allow the update prompt to be shown (the default behavior), or NO to suppress it. + */ + - (BOOL)updaterShouldShowUpdateAlertForScheduledUpdate:(SUUpdater *)updater forItem:(SUAppcastItem *)item; + + /*! + Called after the user dismisses the update alert. + + \param updater The SUUpdater instance. + \param permanently YES if the alert will not appear again for this update; NO if it may reappear. + */ + - (void)updater:(SUUpdater *)updater didDismissUpdateAlertPermanently:(BOOL)permanently forItem:(SUAppcastItem *)item; + +/*! + Called immediately before downloading the specified update. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be downloaded. + \param request The mutable URL request that will be used to download the update. + */ +- (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request; + +/*! + Called immediately after succesfull download of the specified update. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that has been downloaded. + */ +- (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item; + +/*! + Called after the specified update failed to download. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that failed to download. + \param error The error generated by the failed download. + */ +- (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error; + +/*! + Called when the user clicks the cancel button while and update is being downloaded. + + \param updater The SUUpdater instance. + */ +- (void)userDidCancelDownload:(SUUpdater *)updater; + +/*! + Called immediately before extracting the specified downloaded update. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be extracted. + */ +- (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item; + +/*! + Called immediately after extracting the specified downloaded update. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that has been extracted. + */ +- (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item; + +/*! + Called immediately before installing the specified update. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + */ +- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; + +/*! + Called when an update is skipped by the user. + + \param updater The updater instance. + \param item The appcast item corresponding to the update that the user skipped. + */ +- (void)updater:(SUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item; + +/*! + Returns whether the relaunch should be delayed in order to perform other tasks. + + This is not called if the user didn't relaunch on the previous update, + in that case it will immediately restart. + + This may also not be called if the application is not going to relaunch after it terminates. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + \param invocation The invocation that must be completed with `[invocation invoke]` before continuing with the relaunch. + + \return \c YES to delay the relaunch until \p invocation is invoked. + */ +- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation; + +/*! + Returns whether the relaunch should be delayed in order to perform other tasks. + + This is not called if the user didn't relaunch on the previous update, + in that case it will immediately restart. + + This method acts as a simpler alternative to SUUpdaterDelegate::updater:shouldPostponeRelaunchForUpdate:untilInvoking: avoiding usage of NSInvocation, which is not available in Swift environments. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + + \return \c YES to delay the relaunch. + */ +- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item; + +/*! + Returns whether the application should be relaunched at all. + + Some apps \b cannot be relaunched under certain circumstances. + This method can be used to explicitly prevent a relaunch. + + \param updater The SUUpdater instance. + */ +- (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater; + +/*! + Called immediately before relaunching. + + \param updater The SUUpdater instance. + */ +- (void)updaterWillRelaunchApplication:(SUUpdater *)updater; + +/*! + Called immediately after relaunching. SUUpdater delegate must be set before applicationDidFinishLaunching: to catch this event. + + \param updater The SUUpdater instance. + */ +- (void)updaterDidRelaunchApplication:(SUUpdater *)updater; + +/*! + Returns an object that compares version numbers to determine their arithmetic relation to each other. + + This method allows you to provide a custom version comparator. + If you don't implement this method or return \c nil, + the standard version comparator will be used. Note that the + standard version comparator may be used during installation for preventing + a downgrade, even if you provide a custom comparator here. + + \sa SUStandardVersionComparator + + \param updater The SUUpdater instance. + */ +- (nullable id<SUVersionComparison>)versionComparatorForUpdater:(SUUpdater *)updater; + +/*! + Returns an object that formats version numbers for display to the user. + If you don't implement this method or return \c nil, the standard version formatter will be used. + + \sa SUUpdateAlert + \param updater The SUUpdater instance. + */ +- (nullable id <SUVersionDisplay>)versionDisplayerForUpdater:(SUUpdater *)updater; + +/*! + Returns the path to the application which is used to relaunch after the update is installed. + + The installer also waits for the termination of the application at this path. + + The default is the path of the host bundle. + + \param updater The SUUpdater instance. + */ +- (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; + +/*! + Called before an updater shows a modal alert window, + to give the host the opportunity to hide attached windows that may get in the way. + + \param updater The SUUpdater instance. + */ +- (void)updaterWillShowModalAlert:(SUUpdater *)updater; + +/*! + Called after an updater shows a modal alert window, + to give the host the opportunity to hide attached windows that may get in the way. + + \param updater The SUUpdater instance. + */ +- (void)updaterDidShowModalAlert:(SUUpdater *)updater; + +/*! + Called when an update is scheduled to be silently installed on quit. + + This is after an update has been automatically downloaded in the background. + (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + \param invocation Can be used to trigger an immediate silent install and relaunch. + */ +- (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation; + +/*! + Called when an update is scheduled to be silently installed on quit. + This is after an update has been automatically downloaded in the background. + (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) + This method acts as a more modern alternative to SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationInvocation: using a block instead of NSInvocation, which is not available in Swift environments. + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that is proposed to be installed. + \param installationBlock Can be used to trigger an immediate silent install and relaunch. + */ +- (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))installationBlock; + +/*! + Calls after an update that was scheduled to be silently installed on quit has been canceled. + + \param updater The SUUpdater instance. + \param item The appcast item corresponding to the update that was proposed to be installed. + + \deprecated This method is no longer invoked. The installer will try to its best ability to install the update. + */ +- (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item __deprecated; + +/*! + Called after an update is aborted due to an error. + + \param updater The SUUpdater instance. + \param error The error that caused the abort + */ +- (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUVersionComparisonProtocol.h b/OSX/Sparkle.framework/Versions/B/Headers/SUVersionComparisonProtocol.h new file mode 100644 index 00000000..8d22d7a9 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUVersionComparisonProtocol.h @@ -0,0 +1,42 @@ +// +// 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 <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + Provides version comparison facilities for Sparkle. +*/ +@protocol SUVersionComparison + +/** + An abstract method to compare two version strings. + + 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 + +NS_ASSUME_NONNULL_END +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Headers/SUVersionDisplayProtocol.h b/OSX/Sparkle.framework/Versions/B/Headers/SUVersionDisplayProtocol.h new file mode 100644 index 00000000..2874706e --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/SUVersionDisplayProtocol.h @@ -0,0 +1,78 @@ +// +// SUVersionDisplayProtocol.h +// EyeTV +// +// Created by Uli Kusterer on 08.12.09. +// Copyright 2009 Elgato Systems GmbH. All rights reserved. +// + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +@class SUAppcastItem; + +NS_ASSUME_NONNULL_BEGIN + +/** + Applies special display formatting to version numbers of the bundle to update and the update before presenting them to the user. +*/ +SU_EXPORT @protocol SUVersionDisplay <NSObject> + +/** + Formats an update's version string and bundle's version string for display. + + This method is used to format both the display version of the update and the display version of the bundle to update. + + The display versions returned by this method are then used for presenting to the user when a new update is available, + or when the user cannot download/install the latest update for a specific reason, or when the user has a newer version + installed than the latest known version in the update feed. + + On input, the `update.displayVersionString` and `*inOutBundleDisplayVersion` may be the same, but the + `update.versionString` and `bundleVersion` will differ. To differentiate between these display versions, you may + choose to return different display version strings for the update and bundle. + + @param update The update to format the update display version from. You can query `update.displayVersionString` and `update.versionString` to retrieve the update's version information. + @param inOutBundleDisplayVersion On input, the display version string (or `CFBundleShortVersionString`) of the bundle to update. On output, this is the display version string of the bundle to show to the user. + @param bundleVersion The version (or CFBundleVersion) of the bundle to update. + @return A new display version string of the `update.displayVersionString` to show to the user. + */ +- (NSString *)formatUpdateDisplayVersionFromUpdate:(SUAppcastItem *)update andBundleDisplayVersion:(NSString * _Nonnull __autoreleasing * _Nonnull)inOutBundleDisplayVersion withBundleVersion:(NSString *)bundleVersion; + +@optional + +/** + Formats a bundle's version string for display. + + This method is used to format the display version of the bundle. + This method may be used when no new update is available and the user is already on the latest known version. + In this case, no new update version is shown to the user. + + This method is optional. If it's not implemented, Sparkle will default to using the `bundleDisplayVersion` passed to this method. + + @param bundleDisplayVersion The display version string (or `CFBundleShortVersionString`) of the bundle to update. + @param bundleVersion The version (or `CFBundleVersion`) of the bundle to update. + @param matchingUpdate The update in the feed that corresponds to the current bundle, or `nil` if no matching update item could be found in the feed. + @return A new display version string of the bundle to show to the user. + */ +- (NSString *)formatBundleDisplayVersion:(NSString *)bundleDisplayVersion withBundleVersion:(NSString *)bundleVersion matchingUpdate:(SUAppcastItem * _Nullable)matchingUpdate; + +/** + Formats two version strings. + + Both versions are provided so that important distinguishing information + can be displayed while also leaving out unnecessary/confusing parts. +*/ +- (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB __deprecated_msg("Please use -formatUpdateDisplayVersionFromUpdate:andBundleDisplayVersion:withBundleVersion:"); + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/Headers/Sparkle.h b/OSX/Sparkle.framework/Versions/B/Headers/Sparkle.h new file mode 100644 index 00000000..a048d267 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Headers/Sparkle.h @@ -0,0 +1,39 @@ +// +// Sparkle.h +// Sparkle +// +// Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SPARKLE_H +#define SPARKLE_H + +// 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 <Sparkle/SUExport.h> +#import <Sparkle/SUAppcast.h> +#import <Sparkle/SUAppcastItem.h> +#import <Sparkle/SUStandardVersionComparator.h> +#import <Sparkle/SPUUpdater.h> +#import <Sparkle/SPUUpdaterDelegate.h> +#import <Sparkle/SPUUpdaterSettings.h> +#import <Sparkle/SUVersionComparisonProtocol.h> +#import <Sparkle/SUVersionDisplayProtocol.h> +#import <Sparkle/SUErrors.h> +#import <Sparkle/SPUUpdatePermissionRequest.h> +#import <Sparkle/SUUpdatePermissionResponse.h> +#import <Sparkle/SPUUserDriver.h> +#import <Sparkle/SPUDownloadData.h> + +// UI bits +#import <Sparkle/SPUStandardUpdaterController.h> +#import <Sparkle/SPUStandardUserDriver.h> +#import <Sparkle/SPUStandardUserDriverDelegate.h> + +// Deprecated bits +#import <Sparkle/SUUpdater.h> +#import <Sparkle/SUUpdaterDelegate.h> + +#endif diff --git a/OSX/Sparkle.framework/Versions/B/Modules/module.modulemap b/OSX/Sparkle.framework/Versions/B/Modules/module.modulemap new file mode 100644 index 00000000..af3fe6d0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Sparkle { + umbrella header "Sparkle.h" + + export * + module * { export * } +} diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUAppcastItemStateResolver.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUAppcastItemStateResolver.h new file mode 100644 index 00000000..929d3f1b --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUAppcastItemStateResolver.h @@ -0,0 +1,38 @@ +// +// SPUAppcastItemStateResolver.h +// Sparkle +// +// Created by Mayur Pawashe on 5/31/21. +// Copyright © 2021 Sparkle Project. All rights reserved. +// + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SUStandardVersionComparator, SPUAppcastItemState; +@protocol SUVersionComparison; + +/** + Private exposed class used to resolve Appcast Item properties that rely on external factors such as a host. + This resolver is used for constructing appcast items. + */ +SU_EXPORT @interface SPUAppcastItemStateResolver : NSObject + +- (instancetype)init NS_UNAVAILABLE; + +- (instancetype)initWithHostVersion:(NSString *)hostVersion applicationVersionComparator:(id<SUVersionComparison>)applicationVersionComparator standardVersionComparator:(SUStandardVersionComparator *)standardVersionComparator; + +@end + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h new file mode 100644 index 00000000..a509e0e0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h @@ -0,0 +1,22 @@ +// +// SPUGentleUserDriverReminders.h +// Sparkle +// +// Copyright © 2022 Sparkle Project. All rights reserved. +// + +#ifndef SPUGentleUserDriverReminders_h +#define SPUGentleUserDriverReminders_h + +/** + A private protocol for user drivers implementing gentle scheduled reminders + */ +@protocol SPUGentleUserDriverReminders + +- (void)logGentleScheduledUpdateReminderWarningIfNeeded; + +- (void)resetTimeSinceOpportuneUpdateNotice; + +@end + +#endif /* SPUGentleUserDriverReminders_h */ diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h new file mode 100644 index 00000000..2c6e5561 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h @@ -0,0 +1,19 @@ +// +// SPUInstallationType.h +// Sparkle +// +// Created by Mayur Pawashe on 7/24/16. +// Copyright © 2016 Sparkle Project. All rights reserved. +// + +#ifndef SPUInstallationType_h +#define SPUInstallationType_h + +#define SPUInstallationTypeApplication @"application" // the default installation type for ordinary application updates +#define SPUInstallationTypeGuidedPackage @"package" // the preferred installation type for package installations +#define SPUInstallationTypeInteractivePackage @"interactive-package" // the deprecated installation type; use guided package instead + +#define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage, SPUInstallationTypeInteractivePackage]) +#define SPUValidInstallationType(x) ((x != nil) && [SPUInstallationTypesArray containsObject:(NSString * _Nonnull)x]) + +#endif /* SPUInstallationType_h */ diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUStandardUserDriver+Private.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUStandardUserDriver+Private.h new file mode 100644 index 00000000..45bd43fe --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUStandardUserDriver+Private.h @@ -0,0 +1,40 @@ +// +// SPUStandardUserDriver+Private.h +// Sparkle +// +// Copyright © 2022 Sparkle Project. All rights reserved. +// + +#ifndef SPUStandardUserDriver_Private_h +#define SPUStandardUserDriver_Private_h + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SPUStandardUserDriver.h" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SPUStandardUserDriver.h> +#import <Sparkle/SUExport.h> +#endif + +@class NSWindowController; + +NS_ASSUME_NONNULL_BEGIN + +SU_EXPORT @interface SPUStandardUserDriver (Private) + +/** + Private API for accessing the active update alert's window controller. + This is the window controller that shows the update's release notes and install choices. + This can be accessed in -[SPUStandardUserDriverDelegate standardUserDriverWillHandleShowingUpdate:forUpdate:state:] + */ +@property (nonatomic, readonly, nullable) NSWindowController *activeUpdateAlert; + +@end + +NS_ASSUME_NONNULL_END + +#endif /* SPUStandardUserDriver_Private_h */ diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h new file mode 100644 index 00000000..392fccb4 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h @@ -0,0 +1,29 @@ +// +// SPUUserAgent+Private.h +// Sparkle +// +// Created by Mayur Pawashe on 11/12/21. +// Copyright © 2021 Sparkle Project. All rights reserved. +// + +#import <Foundation/Foundation.h> + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class SUHost; + +SU_EXPORT NSString *SPUMakeUserAgentWithHost(SUHost *responsibleHost, NSString * _Nullable displayNameSuffix); + +SU_EXPORT NSString *SPUMakeUserAgentWithBundle(NSBundle *responsibleBundle, NSString * _Nullable displayNameSuffix); + +NS_ASSUME_NONNULL_END diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUAppcastItem+Private.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUAppcastItem+Private.h new file mode 100644 index 00000000..1005ded9 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUAppcastItem+Private.h @@ -0,0 +1,39 @@ +// +// SUAppcastItem+Private.h +// Sparkle +// +// Created by Mayur Pawashe on 4/30/21. +// Copyright © 2021 Sparkle Project. All rights reserved. +// + +#ifndef SUAppcastItem_Private_h +#define SUAppcastItem_Private_h + +#import <Foundation/Foundation.h> + +NS_ASSUME_NONNULL_BEGIN + +// Available in SPUAppcastItemStateResolver.h (a private exposed header) +@class SPUAppcastItemStateResolver; +@class SUSignatures; + +@interface SUAppcastItem (Private) <NSSecureCoding> + +/** + Initializes with data from a dictionary provided by the RSS class and state resolver + + This initializer method is intended to be marked "private" and discouraged from public usage. + This method is available however. Talk to us to describe your use case and if you need to construct appcast items yourself. + */ +- (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL stateResolver:(SPUAppcastItemStateResolver *)stateResolver failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error; + +/** + The EdDSA and DSA signatures along with their statuses. + */ +@property (readonly, nonatomic, nullable) SUSignatures *signatures; + +@end + +NS_ASSUME_NONNULL_END + +#endif /* SUAppcastItem_Private_h */ diff --git a/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUInstallerLauncher+Private.h b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUInstallerLauncher+Private.h new file mode 100644 index 00000000..8922e181 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/PrivateHeaders/SUInstallerLauncher+Private.h @@ -0,0 +1,37 @@ +// +// SUInstallerLauncher+Private.h +// SUInstallerLauncher+Private +// +// Created by Mayur Pawashe on 8/21/21. +// Copyright © 2021 Sparkle Project. All rights reserved. +// + +#ifndef SUInstallerLauncher_Private_h +#define SUInstallerLauncher_Private_h + +#if defined(BUILDING_SPARKLE_SOURCES_EXTERNALLY) +// Ignore incorrect warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" +#import "SUExport.h" +#import "SPUInstallationType.h" +#pragma clang diagnostic pop +#else +#import <Sparkle/SUExport.h> +// Chances are clients will need this too +#import <Sparkle/SPUInstallationType.h> +#endif + +@class NSString; + +/** + Private API for determining if the system needs authorization access to update a bundle path + + This API is not supported when used directly from a Sandboxed applications and will always return @c YES in that case. + + @param bundlePath The bundle path to test if authorization is needed when performing an update that replaces this bundle. + @return @c YES if Sparkle thinks authorization is needed to update the @c bundlePath, otherwise @c NO. + */ +SU_EXPORT BOOL SPUSystemNeedsAuthorizationAccessForBundlePath(NSString *bundlePath); + +#endif /* SUInstallerLauncher_Private_h */ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib new file mode 100644 index 00000000..ce9f4cbf Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib new file mode 100644 index 00000000..d1a64e0b Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib new file mode 100644 index 00000000..01210ef5 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings new file mode 100644 index 00000000..4f44fbc9 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/Info.plist b/OSX/Sparkle.framework/Versions/B/Resources/Info.plist new file mode 100644 index 00000000..2300fdbc --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/Info.plist @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>22G90</string> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>Sparkle</string> + <key>CFBundleIdentifier</key> + <string>org.sparkle-project.Sparkle</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Sparkle</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>2.5.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>CFBundleVersion</key> + <string>2031</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string></string> + <key>DTPlatformName</key> + <string>macosx</string> + <key>DTPlatformVersion</key> + <string>13.3</string> + <key>DTSDKBuild</key> + <string>22E245</string> + <key>DTSDKName</key> + <string>macosx13.3</string> + <key>DTXcode</key> + <string>1431</string> + <key>DTXcodeBuild</key> + <string>14E300c</string> + <key>LSMinimumSystemVersion</key> + <string>10.13</string> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css b/OSX/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css new file mode 100644 index 00000000..bcd84a20 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css @@ -0,0 +1,13 @@ +@media (prefers-color-scheme: dark) { + html { + color-scheme: dark; + color: white; + background: transparent; + } + :link { + color: #419CFF; + } + :link:active { + color: #FF1919; + } +} diff --git a/OSX/Sparkle.framework/Versions/B/Resources/SUStatus.nib b/OSX/Sparkle.framework/Versions/B/Resources/SUStatus.nib new file mode 100644 index 00000000..a5bb5ac2 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/SUStatus.nib differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..55b02304 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "محدث البرنامج"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "معلومات عن الإصدار:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "تذكيري لاحقًا"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "تخطي هذا الإصدار"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "تثبيت التحديث"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "تنزيل التحديثات وتثبيتها تلقائيًا في المستقبل"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..dcd6dde0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "عدم التحقق"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "هل تريد أن يتم التحقق من وجود تحديثات تلقائيًا؟"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "تضمين تقرير عن النظام دون ذكر معلومات عن المستخدم"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "تنزيل التحديثات وتثبيتها تلقائيًا في المست"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "التحقق تلقائيًا"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings new file mode 100644 index 00000000..7ba248ad Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..284cf6dc --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Actualització del programari"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Notes d'aquesta versió:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Recorda-m'ho més tard"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Omet aquesta versió"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instal·la l'actualització"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Descarrega i instal·la les actualitzacions automàticament en el futur"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings new file mode 100644 index 00000000..1a8d279b Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..ff7d56ff --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Aktualizace aplikace"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Poznámky k vydání:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Připomenout později"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Přeskočit tuto verzi"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instalovat aktualizaci"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "V budoucnu stahovat a instalovat aktualizace automaticky"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..6c971d19 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Informace z anonymního systémového profilu pomáhají vývojářům lépe plánovat budoucí vývoj aplikace.\nBudete-li mít nějaký dotaz, obraÅ¥te se na nás.\n\nToto jsou informace, které budou odeslány:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Nevyhledávat"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Vyhledávat aktualizace automaticky?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Odeslat anonymní systémový profil"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Stahovat a instalovat aktualizace automaticky"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Automaticky vyhledávat"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings new file mode 100644 index 00000000..8025bac1 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..271ae308 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Software Update"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Om denne udgivelse:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "PÃ¥mind mig senere"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Spring over"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installer"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Hent og installer opdateringer automatisk i fremtiden"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..0bc75d70 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Søg ikke"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Søg efter opdateringer automatisk?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Vedhæft anonym systemprofil"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Hent og installer opdateringer automatisk"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Søg automatisk"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings new file mode 100644 index 00000000..07b5827d Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..93e067a3 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Softwareupdate"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Versionshinweise:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Später erinnern"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Diese Version überspringen"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installieren"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Updates in Zukunft automatisch laden und installieren"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..b34f5a44 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = ""; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = ""; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Das anonymisierte Systemprofil unterstützt uns bei der zukünftigen Entwicklung. Bitte kontaktiere uns, wenn du Fragen hierzu hast.\n\nDiese Informationen würden an uns gesendet werden:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Nicht suchen"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Automatisch nach Updates suchen?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Anonymisiertes Systemprofil übertragen"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Updates automatisch laden und installieren"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Automatisch suchen"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings new file mode 100644 index 00000000..d551282f Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..fc8679d8 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Ενημέρωση προγράμματος"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Σημειώσεις Έκδοσης:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Υπενθύμιση Αργότερα"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Παράλειψη Έκδοσης"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Εγκατάσταση Ενημέρωσης"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Αυτόματη λήψη και εγκατάσταση ενημερώσεων στο μέλλον"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..febfca22 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Οι ανώνυμες πληροφορίες του προφίλ του συστήματός σας, μας βοηθούν στο σχεδιασμό της μελλοντικής ανάπτυξης του προγράμματος. Παρακαλώ επικοινωνήστε μαζί μας άν έχετε ερωτήσεις.\n\nΑυτές είναι οι πληροφορίες που θα σταλούν σε εμάς:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Κανένας έλεγχος"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Αυτόματος έλεγχος για ενημερώσεις;"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Συμπερίληψη του ανώνυμου προφίλ του συστήματός σας"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Αυτόματη λήψη και εγκατάσταση ενημερώσεων"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Αυτόματος Ελεγχος"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings new file mode 100644 index 00000000..805e4074 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..45a4cfc0 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings @@ -0,0 +1,18 @@ + +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Software Update"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Release Notes:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Remind Me Later"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Skip This Version"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Install Update"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Automatically download and install updates in the future"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..fe430d94 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,27 @@ + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "176"; */ +"OhZ-1K-DmA.title" = "Check Automatically"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "177"; */ +"cCJ-V0-aTi.title" = "Don’t Check"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "178"; */ +"gmh-T4-BO0.title" = "Check for updates automatically?"; + +/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "179"; */ +"179.title" = "DO NOT LOCALIZE"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "180"; */ +"gz7-LM-gNf.title" = "Include anonymous system profile"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Automatically download and install updates"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..ab59ec28 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Actualización de software"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Notas de la versión:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Recordármelo"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "No instalar esta versión"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instalar actualización"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Descargar e instalar actualizaciones automáticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..885bf298 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "La información de perfil de sistema anónimo se usa para ayudarnos a planear el trabajo de desarrollo futuro. Por favor, póngase en contacto con nosotros si tiene preguntas sobre esto.\n\nEsta es la información que nos enviaría:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "No comprobar"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "¿Comprobar si hay actualizaciones automáticamente?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Incluir perfil de sistema anónimo"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Descargar e instalar actualizaciones automáticamente"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Comprobar automáticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings new file mode 100644 index 00000000..a79fc47e Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings new file mode 100644 index 00000000..342f6584 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..dca6e2e3 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Ohjelmiston pävitys"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Tietoa päivityksestä:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Muistuta myöhemmin"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Ohita tämä versio"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Asenna päivitys"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Hae ja asenna päivitykset jatkossa automaattisesti"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..04bf32be --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Älä tarkista"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Tarkista päivitykset käynnistyksen yhteydessä?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Sisällytä nimetön järjestelmäprofiili"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Hae ja asenna päivitykset automaattisesti"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Tarkista automaattisesti"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings new file mode 100644 index 00000000..974473a4 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..fd8042ed --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Mise à jour logiciel"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Notes de version :"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Pas maintenant"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Ignorer cette version"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installer"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Télécharger et installer automatiquement les mises à jour"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..c059f185 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Les informations anonymes de profil système nous aident à planifier les futurs développements. Contactez-nous pour toute question à ce sujet.\n\nCi-dessous figurent les informations qui seront transmises :"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Ne pas vérifier"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Rechercher automatiquement les mises à jour ?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Avec transmission anonyme de mon profil système"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Télécharger et installer automatiquement les mises à jour"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Vérifier automatiquement"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings new file mode 100644 index 00000000..8a9ee047 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..dc8fa211 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "עדכון תכנה"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "פרטי גרסה:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "הזכר לי מאוחר יותר"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "דלג על גרסה זו"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "התקן עדכון"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "הורד והתקן עדכונים אוטומטית גם בעתיד"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings new file mode 100644 index 00000000..8a29dbe6 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..60525afb --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Aktualiziranje softvera"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Napomene uz izdanje:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Podsjeti me kasnije"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Zanemari ovu verziju"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instaliraj nadogradnju"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Ubuduće preuzmi i instaliraj nadogradnje automatski"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..665e3a1a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonimizirani podaci profila susatava pomažu nam planirati budući razvoj. Kontaktiraj nas, ako imaÅ¡ pitanja o tome.\n\nÅ alju se sljedeći podaci:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Nemoj provjeravati"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Automatski provjeriti nadogradnje?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Uključi anonimizirane podatke o profilu sustava"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Preuzmi i instaliraj nadogradnje automatski"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Provjeri automatski"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings new file mode 100644 index 00000000..2dc1a918 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..841a5423 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Szoftverfrissítés"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Változások az előző verzióhoz képest:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Emlékeztessen később"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Verzió kihagyása"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Telepítés"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "A jövőben automatikusan töltse le és telepítse a frissítéseket"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..d1a121f3 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,20 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Manuális keresés"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Keresse automatikusan a frissítéseket?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Anonim rendszerinformáció küldése"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Automatikus keresés"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings new file mode 100644 index 00000000..6b397d42 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..314a8caa --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Hugbúnaðaruppfærsla"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Útgáfupunktar:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Áminntu mig síðar"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Sleppa þessari útgáfu"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Innsetja"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Sækja og innsetja uppfærslur sjálfkrafa framvegis"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..66dc3187 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Upplýsingar úr nafnlausum kerfisskýrslum eru notaðar til að hjálpa okkur við framtíðarþróun hugbúnaðarins. Ekki hika við að hafa samband ef spurningar vakna um þetta.\n\nÞetta eru upplýsingarnar sem yrðu sendar:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Ekki kanna"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Athuga sjálfkrafa með uppfærslur?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Innifela nafnlausa kerfisskýrslu"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Sækja og innsetja uppfærslur sjálfkrafa"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Kanna sjálfkrafa"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings new file mode 100644 index 00000000..1b185813 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..cc0d7c34 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Aggiornamento Software"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Note di rilascio:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Ricordamelo più tardi"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Ignora questa versione"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installa"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "In futuro scarica e installa automaticamente gli aggiornamenti"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..a051914f --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Le informazioni del profilo di sistema anomino sono utilizzate per aiutarci in futuri lavori di sviluppo. Contattaci se hai dei quesiti sull’argomento.\n\nQueste sono le informazioni che verrebbero inviate:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Non controllare"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Controllo automaticamente gli aggiornamenti?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Include profilo di sistema anonimo"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Scarica e installa automaticamente gli aggiornamenti"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Controlla Automaticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings new file mode 100644 index 00000000..27f08340 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..6ac6410d --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "ソフトウェア・アップデート"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "リリースノート:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "後で通知"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "このバージョンはスキップ"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "アップデートをインストール"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "今後はアップデートのダウンロードとインストールを自動で行う"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..cff48a22 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,20 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "匿名のシステムプロファイル情報は、今後の開発の参考にさせていただきます。この件に関してご質問があればご連絡下さい。\n\n以下の情報が送信されます:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "確認しない"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "アップデートを自動で確認しますか?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "匿名のシステム情報を含める"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "自動で確認"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings new file mode 100644 index 00000000..903adfc7 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..ee92bf29 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Software Update"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "배포 정보:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "나중에"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "이 버전 건너뛰기"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "업데이트 설치"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "나중에 업데이트 자동으로 다운로드 및 설치"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..472ef437 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,20 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "익명으로 보내지는 시스템 정보로 차후 프로그램 개발에 도움이 될 수 있습니다. 질문이 있으시면 연락 주십시오.\n\n아래 정보가 전송될 것입니다."; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "취소"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "자동으로 업데이트 확인할까요?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "익명 시스템 정보 포함"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "자동으로 확인"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings new file mode 100644 index 00000000..fe2190e4 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..bd58fbb6 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdateAlert.strings @@ -0,0 +1,18 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Programoppdatering"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Om oppdateringen:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Utsett"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Hopp over"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installer"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Last ned og installer automatisk i fremtiden"; + diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..c921f626 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,24 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Den anonyme systemprofilen hjelper oss med Ã¥ planlegge fremtidig utviklingsarbeid. Ta gjerne kontakt med oss hvis du har spørsmÃ¥l om dette.
\nFølgende innhold vil bli sendt:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Ikke søk"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Søk etter oppdateringer automatisk?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Inkluder anonym systemprofil"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Last ned og installer automatisk"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Søk automatisk"; + diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings new file mode 100644 index 00000000..3d8e2aa2 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..3edac367 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Software-update"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Versiegegevens:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Herinner mij later"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Sla deze versie over"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installeer update"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Download en installeer updates voortaan automatisch"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..89953610 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,17 @@ +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Aan de hand van anonieme informatie over het systeemprofiel kunnen wij toekomstige ontwikkelingswerkzaamheden beter plannen. Neem contact met ons op als je hierover vragen hebt.\n\nDit is de informatie die wordt verzonden:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Zoek niet"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Automatisch zoeken naar updates?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Voeg anoniem systeemprofiel bij"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Download en installeer updates automatisch"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Zoek automatisch"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings new file mode 100644 index 00000000..3c4c92ba Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..4092fd0a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Uaktualnienie oprogramowania"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Szczegóły wydania:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Przypomnij później"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Pomiń tę wersję"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Zainstaluj teraz"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Automatycznie pobierz i zainstaluj przyszłe uaktualnienia"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..ca85ca81 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Nie sprawdzaj"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Sprawdzać automatycznie uaktualnienia?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Załącz anonimowe informacje o systemie"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Automatycznie pobierz i zainstaluj uaktualnienia"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Sprawdzaj automatycznie"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings new file mode 100644 index 00000000..33226f24 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..65aab087 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Atualização de Software"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Notas do Lançamento:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Mais Tarde"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Ignorar Esta Versão"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instalar Atualização"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Baixar e instalar atualizações futuras automaticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..a4352707 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,26 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "As informações anônimas do sistema são usadas para nos ajudar a planejar o desenvolvimento futuro do aplicativo. Contate-nos caso tenha dúvidas sobre este procedimento.\n\nAs seguintes informações seriam enviadas:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Não Buscar"; + +/* Class = "NSTextFieldCell"; title = "DO NOT LOCALIZE"; ObjectID = "cfa-j0-Ya4"; */ +"cfa-j0-Ya4.title" = ""; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Buscar atualizações automaticamente?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Incluir perfil anônimo do sistema"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Baixar e instalar atualizações automaticamente"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Buscar Automaticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings new file mode 100644 index 00000000..6c393ab9 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..ae805c42 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Actualização de Software"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Notas de lançamento:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Lembrar mais tarde"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Saltar esta versão"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instalar actualização"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "No futuro, transferir e instalar actualizações automaticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..cb41028a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "A informação anónima do perfil de sistema é usada para no futuro nos ajudar a planear o trabalho de desenvolvimento. Por favor contacte-nos se tiver alguma questão acerca deste assunto.\n\nEsta é a informação que seria enviada:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Não procurar"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Procurar actualizações automaticamente?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Incluir perfil de sistema anónimo"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Transferir e instalar actualizações automaticamente"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Procurar automaticamente"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings new file mode 100644 index 00000000..fddae71b Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..37e9bc76 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Actualizarea aplicației"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Note de ediție:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Amintește-mi mai târziu"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Sari peste…"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Instalează actualizarea"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "În viitor descarcă și instalează în automat actualizările"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..c9d38137 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Nu verifica"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Verifică pentru actualizări în mod automat?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Include profil anomin de sistem"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Descarcă și instalează în automat actualizările"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Verifică în mod automat"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings new file mode 100644 index 00000000..f08fba0e Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..137fd579 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Обновление программного обеспечения"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Заметки о выпуске:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Напоминать позже"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Пропустить эту версию"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Установить обновление"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Автоматически загружать и устанавливать обновления в будущем"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..99f15966 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Использование анонимного профиля системы помогает нам в планировании будущей работы по разработке. Если у вас есть какие-либо вопросы по этой теме, обращайтесь к нам.\n\nЭто информация, предназначенная для отправления:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Не проверять"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Выполнять автоматическую проверку наличия обновлений?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Включить анонимный профиль системы"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Автоматически загружать и устанавливать обновления"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Проверять автоматически"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings new file mode 100644 index 00000000..1ce90e80 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..266f0fb4 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Aktualizácia softvéru"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Poznámky k vydaniu:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Pripomenúť neskôr"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "VynechaÅ¥ túto verziu"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "NainÅ¡talovaÅ¥"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "V budúcnosti aktualizácie preberaÅ¥ a inÅ¡talovaÅ¥ automaticky"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..25c836d8 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,20 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonymný profil systému nám umožní zlepÅ¡iÅ¥ plánovanie budúceho vývoja aplikácie. Ak máte ohľadom tohto akékoľvek otázky, neváhajte a kontaktujte nás.\n\nOdosielané budú nasledujúce informácie:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "NekontrolovaÅ¥"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "KontrolovaÅ¥ aktualizácie automaticky?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Zahrnúť anonymný profil systému"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "KontrolovaÅ¥ automaticky"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings new file mode 100644 index 00000000..9e3444e0 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..d1060213 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Posodabljanje programske opreme"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Opombe ob izdaji:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Spomni me kasneje"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Preskoči to verzijo"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Namesti posodobitev"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "V prihodnje samodejno nameščaj posodobitve"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..03b141ca --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonimni profil sistema se uporablja za načrtovanje nadaljnega razvoja programa. V primeru vpraÅ¡anj nas lahko kontaktirate.\n\nPoÅ¡ljejo se sledeče informacije:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Ne preverjaj"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Naj občasno preverjam, če so na voljo posodobitve?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Vključi anonimni profil sistema"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Samodejno namestite posodobitve"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Samodejno preverjaj"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings new file mode 100644 index 00000000..2e64a63b Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..382b634a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Programuppdatering"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Versionsinformation:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "PÃ¥minn mig senare"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Hoppa över denna version"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Installera uppdatering"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Hämta och installera nya uppdateringar automatiskt i framtiden."; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..b26b32e4 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Textcell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Textcell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Anonym systemprofilinformation används för att hjälpa oss att planera framtida utvecklingsarbete. Vänligen kontakta oss ifall du har nÃ¥gra frÃ¥got om detta.\n\nDetta är informationen som skulle sändas:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Kontrollera inte"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Leta efter uppdateringar automatiskt?\n"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Inkludera anonym systemprofil"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Hämta och installera nya uppdateringar automatiskt."; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Kontrollera automatiskt"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings new file mode 100644 index 00000000..df36ec1c Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..c57e3d3c --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "อัพเดทซอฟต์แวร์"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Release Notes:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "เตือนในภายหลัง"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "ข้ามเวอร์ชั่นนี้"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "ติดตั้งอัพเดท"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "ดาวน์โหลดและติดตั้งอัพเดทโดยอัตโนมัติในอนาคต"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..b755d038 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "ข้อมูลระบบแบบนิรนามช่วยในการวางแผนพัฒนาแอปพลิเคชันของเราในอนาคต กรุณาติดต่อเราถ้าคุณมีข้อสงสัยในเรื่องนี้\n\nนี่คือข้อมูลที่จะถูกส่งไป:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "ไม่ต้องตรวจสอบ"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "ตรวจสอบอัพเดทอัตโนมัติ?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "ส่งข้อมูลระบบแบบนิรนาม"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "ดาวน์โหลดและติดตั้งอัพเดทโดยอัตโนมัติ"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "ตรวจสอบโดยอัตโนมัติ"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings new file mode 100644 index 00000000..6b8c8786 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..7f67ed64 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Software-Aktualisierung"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Sürüm Hakkında:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Sonra Hatırlat"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Bu Sürümü Geç"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Kur"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Bundan sonra güncellemeleri kendiliğinden indir ve kur"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..4901fadd --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Gönderdiğiniz anonim sistem bilgileri bu yazılımın geliştirilmesi için kullanılacaktır. Konu ile ilgili ayrıntılı bilgi için lütfen bizimle bağlantıya geçiniz. Göndereceğiniz Bilgiler:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Arama"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Güncellemeler otomatik olarak aransın mı?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Sistem bilgilerini kimlik gizlenmiş olarak gönder"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Güncellemeleri kendiliğinden indir ve kur"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Otomatik Olarak Ara"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings new file mode 100644 index 00000000..5496cbb9 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..ece66707 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "Оновлення програмного забезпечення"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "Примітки про нову версію:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "Нагадати пізніше"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "Пропустити цю версію"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "Встановити оновлення"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "Автоматично завантажувати та встановлювати оновлення у майбутньому"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..27451a33 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "Використання анонімного профілю системи допомагає нам у планування майбутньої розробки. Якщо у вас виникли питання щодо цього, звертайтесь до нас.\n\nІнформація, що буде надіслано:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "Не перервіряти"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "Виконувати автоматичну перевірку оновлень?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "Автоматично надсилати профіль системи"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "Автоматично завантажувати та встановлювати оновлення"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "Перевіряти автоматично"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings new file mode 100644 index 00000000..e3f07919 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..5772fc63 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "软件更新"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "更新信息:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "稍后提示我"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "跳过这个版本"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "安装更新"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "以后自动下载并安装更新"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..bdf7d69e --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "无记名系统概况信息被用于帮助我们安排将来的开发工作。如果对此存在疑问请联系我们。\n\n这是将要被发送的信息::"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "不核查"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "自动核查更新?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "包括无记名系统概况"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "自动下载并安装更新"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "自动核查"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings new file mode 100644 index 00000000..3acf2a0c Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..d7cb6fe1 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "軟體更新"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "更新事項:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "稍後提醒我"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "跳過此版本"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "安裝更新"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "以後自動下載並安裝更新"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..b40c572f --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "匿名系統概況資訊可用來協助我等計畫未來開發工作。若對此有任何疑問,請聯繫我等。\n\n以下係會傳送嘅資訊:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "毋檢查"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "自動檢查更新?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "包含匿名系統概況"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "自動下載並安裝更新"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "自動檢查"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings new file mode 100644 index 00000000..4d758a3c Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings new file mode 100644 index 00000000..d53374dd --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdateAlert.strings @@ -0,0 +1,17 @@ +/* Class = "NSWindow"; title = "Software Update"; ObjectID = "5"; */ +"5.title" = "軟體更新"; + +/* Class = "NSTextFieldCell"; title = "Release Notes:"; ObjectID = "170"; */ +"170.title" = "更新事項:"; + +/* Class = "NSButtonCell"; title = "Remind Me Later"; ObjectID = "171"; */ +"171.title" = "暫緩提醒"; + +/* Class = "NSButtonCell"; title = "Skip This Version"; ObjectID = "172"; */ +"172.title" = "跳過此版本"; + +/* Class = "NSButtonCell"; title = "Install Update"; ObjectID = "173"; */ +"173.title" = "安裝更新項目"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates in the future"; ObjectID = "175"; */ +"175.title" = "自動下載並安裝未來的更新項目"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings new file mode 100644 index 00000000..635b4532 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings @@ -0,0 +1,23 @@ +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "43"; */ +"43.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Text Cell"; ObjectID = "45"; */ +"45.title" = "Text Cell"; + +/* Class = "NSTextFieldCell"; title = "Anonymous system profile information is used to help us plan future development work. Please contact us if you have any questions about this.\n\nThis is the information that would be sent:"; ObjectID = "183"; */ +"183.title" = "匿名系統描述資訊可用來協助我們計畫未來的開發工作。若您有任何相關問題,請與我們聯繫。\n\n以下是會傳送的資訊:"; + +/* Class = "NSButtonCell"; title = "Don’t Check"; ObjectID = "cCJ-V0-aTi"; */ +"cCJ-V0-aTi.title" = "不要檢查"; + +/* Class = "NSTextFieldCell"; title = "Check for updates automatically?"; ObjectID = "gmh-T4-BO0"; */ +"gmh-T4-BO0.title" = "自動檢查更新項目?"; + +/* Class = "NSButtonCell"; title = "Include anonymous system profile"; ObjectID = "gz7-LM-gNf"; */ +"gz7-LM-gNf.title" = "包含匿名的系統描述資料"; + +/* Class = "NSButtonCell"; title = "Automatically download and install updates"; ObjectID = "AUc-33-qGN"; */ +"AUc-33-qGN.title" = "自動下載並安裝更新項目"; + +/* Class = "NSButtonCell"; title = "Check Automatically"; ObjectID = "OhZ-1K-DmA"; */ +"OhZ-1K-DmA.title" = "自動檢查"; diff --git a/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings new file mode 100644 index 00000000..6018e8bc Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings differ diff --git a/OSX/Sparkle.framework/Versions/B/Sparkle b/OSX/Sparkle.framework/Versions/B/Sparkle new file mode 100755 index 00000000..2039bf7e Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Sparkle differ diff --git a/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Info.plist b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Info.plist new file mode 100644 index 00000000..8f7af20d --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Info.plist @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>22G90</string> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>Updater</string> + <key>CFBundleIdentifier</key> + <string>org.sparkle-project.Sparkle.Updater</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleLocalizations</key> + <array> + <string>en</string> + <string>ca</string> + <string>ar</string> + <string>cs</string> + <string>da</string> + <string>de</string> + <string>el</string> + <string>en</string> + <string>es</string> + <string>fa</string> + <string>fi</string> + <string>fr</string> + <string>he</string> + <string>hr</string> + <string>hu</string> + <string>is</string> + <string>it</string> + <string>ja</string> + <string>ko</string> + <string>nb</string> + <string>nl</string> + <string>pl</string> + <string>pt-BR</string> + <string>pt-PT</string> + <string>ro</string> + <string>ru</string> + <string>sk</string> + <string>sl</string> + <string>sv</string> + <string>th</string> + <string>tr</string> + <string>uk</string> + <string>zh_CN</string> + <string>zh_HK</string> + <string>zh_TW</string> + </array> + <key>CFBundleName</key> + <string>Updater</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>2.5.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>CFBundleVersion</key> + <string>2031</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string></string> + <key>DTPlatformName</key> + <string>macosx</string> + <key>DTPlatformVersion</key> + <string>13.3</string> + <key>DTSDKBuild</key> + <string>22E245</string> + <key>DTSDKName</key> + <string>macosx13.3</string> + <key>DTXcode</key> + <string>1431</string> + <key>DTXcodeBuild</key> + <string>14E300c</string> + <key>LSApplicationCategoryType</key> + <string>public.app-category.utilities</string> + <key>LSMinimumSystemVersion</key> + <string>10.13</string> + <key>LSUIElement</key> + <string>1</string> + <key>NSPrincipalClass</key> + <string>NSApplication</string> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater new file mode 100755 index 00000000..e43bdc82 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater differ diff --git a/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo new file mode 100644 index 00000000..bd04210f --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib new file mode 100644 index 00000000..a5bb5ac2 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib differ diff --git a/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources new file mode 100644 index 00000000..a7bc0d1a --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <dict> + <key>Resources/SUStatus.nib</key> + <data> + C+A5AK9r0wh2EeQDmcX3eh5QGr8= + </data> + </dict> + <key>files2</key> + <dict> + <key>Resources/SUStatus.nib</key> + <dict> + <key>hash2</key> + <data> + V7nQA4E39SW5aUzqhBVsXTFN0jH5W2mdJr74xs58fWU= + </data> + </dict> + </dict> + <key>rules</key> + <dict> + <key>^Resources/</key> + <true/> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^version.plist$</key> + <true/> + </dict> + <key>rules2</key> + <dict> + <key>.*\.dSYM($|/)</key> + <dict> + <key>weight</key> + <real>11</real> + </dict> + <key>^(.*/)?\.DS_Store$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>2000</real> + </dict> + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^.*</key> + <true/> + <key>^Info\.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^PkgInfo$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^[^/]+$</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^embedded\.provisionprofile$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^version\.plist$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist new file mode 100644 index 00000000..0ae6a402 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>22G90</string> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>Downloader</string> + <key>CFBundleIdentifier</key> + <string>org.sparkle-project.Downloader</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Downloader</string> + <key>CFBundlePackageType</key> + <string>XPC!</string> + <key>CFBundleShortVersionString</key> + <string>2.5.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>CFBundleVersion</key> + <string>2031</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string></string> + <key>DTPlatformName</key> + <string>macosx</string> + <key>DTPlatformVersion</key> + <string>13.3</string> + <key>DTSDKBuild</key> + <string>22E245</string> + <key>DTSDKName</key> + <string>macosx13.3</string> + <key>DTXcode</key> + <string>1431</string> + <key>DTXcodeBuild</key> + <string>14E300c</string> + <key>LSMinimumSystemVersion</key> + <string>10.13</string> + <key>NSAppTransportSecurity</key> + <dict> + <key>NSAllowsArbitraryLoads</key> + <false/> + </dict> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2016 Sparkle Project. All rights reserved.</string> + <key>XPCService</key> + <dict> + <key>RunLoopType</key> + <string>NSRunLoop</string> + <key>ServiceType</key> + <string>Application</string> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader new file mode 100755 index 00000000..8cf246de Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader differ diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/_CodeSignature/CodeResources new file mode 100644 index 00000000..d5d0fd74 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/_CodeSignature/CodeResources @@ -0,0 +1,115 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <dict/> + <key>files2</key> + <dict/> + <key>rules</key> + <dict> + <key>^Resources/</key> + <true/> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^version.plist$</key> + <true/> + </dict> + <key>rules2</key> + <dict> + <key>.*\.dSYM($|/)</key> + <dict> + <key>weight</key> + <real>11</real> + </dict> + <key>^(.*/)?\.DS_Store$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>2000</real> + </dict> + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^.*</key> + <true/> + <key>^Info\.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^PkgInfo$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^[^/]+$</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^embedded\.provisionprofile$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^version\.plist$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist new file mode 100644 index 00000000..3e4288ce --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>22G90</string> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>Installer</string> + <key>CFBundleIdentifier</key> + <string>org.sparkle-project.InstallerLauncher</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Installer</string> + <key>CFBundlePackageType</key> + <string>XPC!</string> + <key>CFBundleShortVersionString</key> + <string>2.5.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>CFBundleVersion</key> + <string>2031</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string></string> + <key>DTPlatformName</key> + <string>macosx</string> + <key>DTPlatformVersion</key> + <string>13.3</string> + <key>DTSDKBuild</key> + <string>22E245</string> + <key>DTSDKName</key> + <string>macosx13.3</string> + <key>DTXcode</key> + <string>1431</string> + <key>DTXcodeBuild</key> + <string>14E300c</string> + <key>LSMinimumSystemVersion</key> + <string>10.13</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2016 Sparkle Project. All rights reserved.</string> + <key>XPCService</key> + <dict> + <key>JoinExistingSession</key> + <true/> + <key>ServiceType</key> + <string>Application</string> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer new file mode 100755 index 00000000..65e0fe23 Binary files /dev/null and b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer differ diff --git a/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/_CodeSignature/CodeResources new file mode 100644 index 00000000..d5d0fd74 --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/_CodeSignature/CodeResources @@ -0,0 +1,115 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <dict/> + <key>files2</key> + <dict/> + <key>rules</key> + <dict> + <key>^Resources/</key> + <true/> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^version.plist$</key> + <true/> + </dict> + <key>rules2</key> + <dict> + <key>.*\.dSYM($|/)</key> + <dict> + <key>weight</key> + <real>11</real> + </dict> + <key>^(.*/)?\.DS_Store$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>2000</real> + </dict> + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^.*</key> + <true/> + <key>^Info\.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^PkgInfo$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^[^/]+$</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^embedded\.provisionprofile$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^version\.plist$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/B/_CodeSignature/CodeResources b/OSX/Sparkle.framework/Versions/B/_CodeSignature/CodeResources new file mode 100644 index 00000000..76f57cde --- /dev/null +++ b/OSX/Sparkle.framework/Versions/B/_CodeSignature/CodeResources @@ -0,0 +1,2186 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <dict> + <key>Resources/Base.lproj/SUUpdateAlert.nib</key> + <data> + CcSGUnHshFRNbXNCax4Fk/Ar3sk= + </data> + <key>Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib</key> + <data> + kQCQnExWsd4UN/XCwMWsdBo8rmU= + </data> + <key>Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib</key> + <data> + ShA7h1IUUX/SyuDWg6JseOHtNHo= + </data> + <key>Resources/Base.lproj/Sparkle.strings</key> + <data> + yENpjnRY3Io5iY3w/nXBi2P2CFc= + </data> + <key>Resources/Info.plist</key> + <data> + inXDNNZsCBUSiN/ib9t/0pgmdBo= + </data> + <key>Resources/ReleaseNotesColorStyle.css</key> + <data> + NjIvb1z7eJuLCKf9HS15O5heg50= + </data> + <key>Resources/SUStatus.nib</key> + <data> + C+A5AK9r0wh2EeQDmcX3eh5QGr8= + </data> + <key>Resources/ar.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + qTOMJ1P/HhCcJQi4qSJV9l/b7q0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ar.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + zZ/0sjHdlPnBGe10CetKo1kF1xQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ar.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 5Ukin0TnIF0ot6Daz8OSgIoDZJ0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ca.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + l9CaCmAXFcs+Z+8rRt7PX9onkf8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ca.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + DL6k3g2A8CPQPkykQht4w+H/xYc= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + G9Wgf14zMhU2alRSZvqclMmlTCA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + rhsuTqRoVAfmLW+GJ1vvxJPRJ0U= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + KTLNyu97zLvTNgaUfYWqc8nB9C4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + NEt5JVKz+OoMSynKxJC18KXMGaA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + s6oFpgOPENk+LCyXJoLfVqZauVQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 7MO7J38OUDrmZMLJiNSeNRATia8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + YLQxXHDo3e3Udzaj8LHDIjotWzE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + W8+shbfn38JAPBpgHTMWuU0oHfQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + FcFO4FvZjeiHQb9cbZI1wh1jHT4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + BS+NpAFPK7X/XzX+n99gJLhlNKU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + TNa05IunzylN4fz2uHvkj5EnyRk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 6VadVc0qrgmUnWfL3FgiI6TzchM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/en.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + FSez7jCd0gDTFFGHiWL1QXY8OUU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/en.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + 7+SiSQLU1hqbN74YfiBS1cQFVqU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + Q36SuanjGk70efU6liei3uz+Uds= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + kNfRs9Pgn30BdjtuNzhRvKXcqu0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 08cvLbzKYXVy2xMw/nxid5JOK7o= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fa.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + IySTqO8MqmOO/IHR5WBZdf0jYaA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + My5YiAuNV+4oR1vPL1np+nMMMOI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + NcjaY8nD4cpjcpK4M878R5JDK1s= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + KRoZrUbgs7+EwIxs18H121Szw+0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + ffz6ccHMgxcBdH6by1YAYX1jpOQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + p4tAU3Ek6hEWqW9e8+C1L8WMQIM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + BS6wdN+n1R2u/skiaNGAfrXwcKA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/he.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + nZXhvxaoacIflCBRrHxQ4NDkeKg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/he.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + +bhO5LfEJtbZlq+wfPs/WUEO2ic= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + b/ru54Y0QwvH9Kz9sfRPEoP5z5k= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + rdv7bU5k1tUG/tyNsQ1i/Rniypk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 70rdfUc3cUNcMed6Hq4zQBWoGrk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + VD/QPXFfEHRW7ksDLYiiO1xl1LQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + PMarJZpNhDysjzZuBuyKv8KBTXQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 5CCN2xKgiom6y3+mcWd48RVdX48= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + bQiB5tUCaD24QKubEYeBTXsAF1g= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + vGNXtUX/4qNYIzE89IO7e4GxS60= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + tplLwN1kGq9MoWLnyPQhozI6c54= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + Yev0Ro2PsLfgCLoY7JNED63PnqM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + IGMzQ4TCQgpEQaOcESzlhe8ny9I= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + HvJh7rlxinaVRX3rGu84YDTq5j8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + vl6gP7QCeuFYsNYdgVYYUcm0S/4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + vmA8scrUnfvMygrsa76QF557nDU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + qUoPouJsSuujtYJeA1Jn1M6d+CA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + xZjyKASZdwg70f4m29uGtJjFUgQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + d+ifBccX26E56rM7eOY72BKC5aY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + vidckNwrgXZkzwbptfj9ycGywxE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + fck+vL9Sgcx19X7HthrjizRGhu8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + eiq9zVX/y56Q0ymxVNFnYahFbxs= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + Xm8t/g53ktlmyq8w1aI29nEiGO8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + 5ZpTsHPgV4inhhYiISGjC03BMG4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + LgvDZbmPK7Ox9+gNe7zXN3egxlM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + HUFefTfqhwJx6nNNmACg3qxtHKo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + HX2RXVrN+fpwO4I60/UDyNuGj5Y= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + abNyxpda7OkXoR5Ok35XgMr9eBc= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + MXjhjMKrcFaSZhXYssMrBTXPu80= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + YFXY6v+45ptf8TuBq2MsKKdhfQ8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + 2iCpI0fy7Tm1zxR19dV1iCYW3bo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + mVP9x5C0h0Q+njDLXhZXmDsOjWM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + pWRHcAJRvjUt7BOLr/gd+IupcGA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + Om//DOu8+gBjHYrCHVmxKxBDvPs= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 6IY8J7Jbjd3eG/BMld5iJSwZZvM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + a/RNqEdkehva+SwGWz11MktFGWA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + JDMBsS6fp2v5X+C0d1EJAREHIkA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + rihcAKPJ1j7EoW5B+lq7Dpci/Zo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + Lmn0e5MDPfan55gnani1dQbR10Q= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + z+XqvyZR2X6cb0PioKpfYDCF3YY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + ZtVq/Mf1qT9j8xdhz9ULfJ1O05k= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + 8o3l6mjHafwy5sLMMO2rZIe7xiQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + s3Cllq+eYT+urMLfXvnwsMkboWQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + gqdvwKoHMg+gDZ4MZVVqbV4yqI8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + Ny5EoZGpd5UK5c3eMIUKLR8x4/I= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + vbP9bj0jn5GKz9uEu3amXnozkWo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + hz8NwYxW1d0aWPQDMF8/c4lJRwU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + YWicg3ZZLCEoiJ9WOUUZ6WoTZJY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + JKbTlT+iKE5KOwvLD9N/Go2K+q0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + UH7udC5C4WHwnnx4Eg6Io23rBzk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + Cd6guArNrSoJO3e2ntd1Eys3bok= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + L4ZWMKTKnMsbMsL8V2V6OLySKLE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + O9PZTdxbP4Y306ym/2sJ6p5klE0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + wl9JoCOsqKgCSgMpFzhwObUUdh8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + 7lGd5uiq64Gdix4ymGi5MrjTtjs= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + L+JSm1Y1SMSRVqore5+HlcHCyew= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + 6/WdcAg1mJs1/HT5krHhOxqyMWk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + I4B4qXPwnMhj/A+yU0vvngP7oak= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 3YLrl/aRzoPCubIKa873XDZeU1w= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + DjCjxSor6wnKAz8bFLcPCnW1Kw0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + xeCj4c1ifxxhDFeLtNsSc4NgBFw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + Q18TnLdR6a0E72xXP6ETh0FF4CY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + +9prrb68fl57+m9WFQ+8Ay6XjRk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + 5Pazf5ErH02Ny5mFB+R+dwCWPVM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + v2NQCc/vUJacBpqiLL5yANtiGc4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash</key> + <data> + 167IbTfOhYu699bxXBhaGehjrco= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash</key> + <data> + SNJz+3Rb1AJ2cKstnbGWL6Q8OW8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/Sparkle.strings</key> + <dict> + <key>hash</key> + <data> + 48nGyIkkDrsDKSq77pFReYsumCA= + </data> + <key>optional</key> + <true/> + </dict> + </dict> + <key>files2</key> + <dict> + <key>Autoupdate</key> + <dict> + <key>cdhash</key> + <data> + o5T5EkaC+CwlU729GYNYKmqetao= + </data> + <key>requirement</key> + <string>cdhash H"a394f9124682f82c2553bdbd1983582a6a9eb5aa" or cdhash H"0e6dcaf18ca843031d6c7395f90f2c430ced6967"</string> + </dict> + <key>Headers/SPUDownloadData.h</key> + <dict> + <key>hash2</key> + <data> + yhS+aH6hPb1hSOt0tT6Rej2kQoPz6wrtntLOBuoIIJs= + </data> + </dict> + <key>Headers/SPUStandardUpdaterController.h</key> + <dict> + <key>hash2</key> + <data> + +3I+CmUwJuOPUMU9MsBJW4BZNzMkjeJjyYVSGAFGKh8= + </data> + </dict> + <key>Headers/SPUStandardUserDriver.h</key> + <dict> + <key>hash2</key> + <data> + Y4fOofv2Ua1TAI9qM7wL8CalQGHLa1spvUNg9JB71NE= + </data> + </dict> + <key>Headers/SPUStandardUserDriverDelegate.h</key> + <dict> + <key>hash2</key> + <data> + Y1CXvdztYvr7TNU5uykV9jSjdvcpl2aCQPwjVHZe+IQ= + </data> + </dict> + <key>Headers/SPUUpdateCheck.h</key> + <dict> + <key>hash2</key> + <data> + H30F2i5GYmOu/j4JEw5WsuZbiGJXnge5gpyb9e2SHAM= + </data> + </dict> + <key>Headers/SPUUpdatePermissionRequest.h</key> + <dict> + <key>hash2</key> + <data> + hnRNYPeaK0NWoKPXEYs2AoyD6QOE0CHDJWJxKM5Ma24= + </data> + </dict> + <key>Headers/SPUUpdater.h</key> + <dict> + <key>hash2</key> + <data> + 2RfJYG0mMGzLSAP82wi9XHEFSfkoBc22JiIik4SObd0= + </data> + </dict> + <key>Headers/SPUUpdaterDelegate.h</key> + <dict> + <key>hash2</key> + <data> + LHjSN/efNGASgXqi8P76eNivCLV2QZxP2/rvDMLcKyU= + </data> + </dict> + <key>Headers/SPUUpdaterSettings.h</key> + <dict> + <key>hash2</key> + <data> + Nnk1lMwSl/z+ugdM8ovU0U/bQUoOWG6zjYQHXPF+kCU= + </data> + </dict> + <key>Headers/SPUUserDriver.h</key> + <dict> + <key>hash2</key> + <data> + FZyzRoNn6SIm0ugYRKGMzlmq0C60WknB8YHjZtfmmYw= + </data> + </dict> + <key>Headers/SPUUserUpdateState.h</key> + <dict> + <key>hash2</key> + <data> + Z4UKJcXMF/bUmSkIiM+D8jTiS8i5x1CLqoo4uG4aQvg= + </data> + </dict> + <key>Headers/SUAppcast.h</key> + <dict> + <key>hash2</key> + <data> + M3KUgO+Ud/n5t/rXjFYzQMUTPDA8fK7W46QQfuh5DnA= + </data> + </dict> + <key>Headers/SUAppcastItem.h</key> + <dict> + <key>hash2</key> + <data> + imKkb6r+8fp+9enH9Xlnh0VZ5S12ZkwmU53UHTx/Tdo= + </data> + </dict> + <key>Headers/SUErrors.h</key> + <dict> + <key>hash2</key> + <data> + fmP8Y0mI10K5McjVGtVKtgzae36JLxmqLw3sr7vdBGY= + </data> + </dict> + <key>Headers/SUExport.h</key> + <dict> + <key>hash2</key> + <data> + XO8CQmbFThLbYg949NEGhg3g+iouIw3/3+BCCLtEdFE= + </data> + </dict> + <key>Headers/SUStandardVersionComparator.h</key> + <dict> + <key>hash2</key> + <data> + fUB7nOch1cZQ50HstpLnfxLvO14Y6oE29yRI6NcgjGw= + </data> + </dict> + <key>Headers/SUUpdatePermissionResponse.h</key> + <dict> + <key>hash2</key> + <data> + HScQok/zuc704lNfwGl1Csr6nigQLAsjeRJXG1HTuks= + </data> + </dict> + <key>Headers/SUUpdater.h</key> + <dict> + <key>hash2</key> + <data> + 8BXIwn75UYazfTyDZklTch+t6AlsOxNdTI/bNj/qx1I= + </data> + </dict> + <key>Headers/SUUpdaterDelegate.h</key> + <dict> + <key>hash2</key> + <data> + XRFzmZB3ShVUFY8JAvcjptVwxLmD/VL5rwnFoy5rSlc= + </data> + </dict> + <key>Headers/SUVersionComparisonProtocol.h</key> + <dict> + <key>hash2</key> + <data> + KLu0JKx6uB4rk/YeNZ/vo+0J1qONCyZQBNIQPA9GvbQ= + </data> + </dict> + <key>Headers/SUVersionDisplayProtocol.h</key> + <dict> + <key>hash2</key> + <data> + PyPE+5u9vBlxRYDuTdf3P/wxQ26nM8m7MIw/dOerUSw= + </data> + </dict> + <key>Headers/Sparkle.h</key> + <dict> + <key>hash2</key> + <data> + OkQqMusip3u1oI5hrGeNr/32xpfTMCC4Kmg7r0Aijgw= + </data> + </dict> + <key>Modules/module.modulemap</key> + <dict> + <key>hash2</key> + <data> + 1TF+JZkzFr6n8oH4WItto+C5Vf3K12f0H9KjqD0A5QU= + </data> + </dict> + <key>PrivateHeaders/SPUAppcastItemStateResolver.h</key> + <dict> + <key>hash2</key> + <data> + HDvimACMGXV647Jwg2IqAFvOgJoB8G0sdPbeoW8yFO4= + </data> + </dict> + <key>PrivateHeaders/SPUGentleUserDriverReminders.h</key> + <dict> + <key>hash2</key> + <data> + 9W2dJ38WQX151mpIS0r8/EfCqZV6jEh621xwna2JVAI= + </data> + </dict> + <key>PrivateHeaders/SPUInstallationType.h</key> + <dict> + <key>hash2</key> + <data> + hj9Br7Gf1Y8X1dqNvSUHMP70K+Q+S9xZAyPYMqKthFQ= + </data> + </dict> + <key>PrivateHeaders/SPUStandardUserDriver+Private.h</key> + <dict> + <key>hash2</key> + <data> + rMdk5zH+nm0wf+Mt6k0GtFGWQiXCsql0WiPwNanN6q0= + </data> + </dict> + <key>PrivateHeaders/SPUUserAgent+Private.h</key> + <dict> + <key>hash2</key> + <data> + DD6nxqq6syhA5BxWuyLPq03uTd4zAmA7b0q6msG1hQw= + </data> + </dict> + <key>PrivateHeaders/SUAppcastItem+Private.h</key> + <dict> + <key>hash2</key> + <data> + 760gwh52KqECJ9eZ1qZ6YyaaFHNHaEFf9mel5xnG4aE= + </data> + </dict> + <key>PrivateHeaders/SUInstallerLauncher+Private.h</key> + <dict> + <key>hash2</key> + <data> + yy6cRl8IqwMJwr86TS98NdnHb/WkSAaUcAoiKYUg3ZQ= + </data> + </dict> + <key>Resources/Base.lproj/SUUpdateAlert.nib</key> + <dict> + <key>hash2</key> + <data> + rNJnQOQk5Kw1RR/pFDaL/mDaQ6JBYFTTBPMmbSZRWD8= + </data> + </dict> + <key>Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib</key> + <dict> + <key>hash2</key> + <data> + JKjxgN6h8KUeAa51gY+o3UrMEEEIvZUG3qN6jSF8jZk= + </data> + </dict> + <key>Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib</key> + <dict> + <key>hash2</key> + <data> + bwYMQkHPDvn3lBABOZ6BxAcwSpZ3Lrl1YyvMRkNWt6U= + </data> + </dict> + <key>Resources/Base.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + aZ6hIsTY6mApb4yL8CxqMHw0W1sTdp71lBqcEBR5ATk= + </data> + </dict> + <key>Resources/Info.plist</key> + <dict> + <key>hash2</key> + <data> + As2ncnEr+6Q0chlVgQ1A/2o+An2IpNJGUM54KpAbokE= + </data> + </dict> + <key>Resources/ReleaseNotesColorStyle.css</key> + <dict> + <key>hash2</key> + <data> + dr1pmXWP2OUdF+a0gttDT5tHaMArA3r2vS46AAzoy8E= + </data> + </dict> + <key>Resources/SUStatus.nib</key> + <dict> + <key>hash2</key> + <data> + V7nQA4E39SW5aUzqhBVsXTFN0jH5W2mdJr74xs58fWU= + </data> + </dict> + <key>Resources/ar.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 33nOBJb6OPaZt3PKT2iUJ3RfF/c59DAGmt9TCQVn74A= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ar.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + ku6BdTbNrkSmKEdwyNA1hmoKbQ3uRv8JR4LK4cjqgpA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ar.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + yx9tkKjj3aOHvgdYCWXM89uhlyVeNb4oqcAenJxibwI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ca.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 18qLsTRnJfi0wDf6A85XbiMXGORSmuo9Ul3IK4m5gq0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ca.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 3iHHzb3P1DvR6KaXp59ybrj1JySnfOgPbOigOIgI7es= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + qSoDl0PIYv+OrSxtJfUYk9xeQihmzfaxAf+egKyw4y4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + obkk1c1EawdfEyPHqo5ddIzsUcWfClFUbg895zj3/Ag= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/cs.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 2Nm0MQj4WgMucaSuEdljuTIGS/oceXEuVWi2kDgjRq0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + aKNcPadrNnf7wuYmBAxoRzES9XhxXRHMrW/+9MtZBQs= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + xremLoAOqEfufOFyjOrH8S8ZkWwRklRhGCGB/igGD38= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/da.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + BOUi5PfyUb/ZRM6WZOuFC34IOic4+XPJkLikDtwhZIw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + A6JiLH5c4UX2iobAPXPHv7TLiBInrdHvtvqnnsTBxLI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + GPjZbm0EAKfj0CK7Pb1UITo5WoDzNpf4m2XELfj3eio= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/de.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + Wv+mo8RfxojepYE9GcBeYwUNycpqkk9qo/BjYGwb08M= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + utAXO7a8Od4ICYV3R0WQBa8ncUQ30SfruZACTuvyDxk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + V0h7tXPJI0b1Z0FEMxe7RJIn2oWGg9QUhF/cRSz7aWE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/el.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + Bl2oDZnDwbj55sSp/MNoHmcSbiOW5kxY1OGcL3k5scY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/en.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + EBVS8ZfEIJxGSghO17emwoHQo0LVWWzBJMFs8RwvKWg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/en.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + MN0HeTdXIxqALqUMUoLnVkRcDcvnDXqjsifU07tV3a8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 8KSmmlZHYEiMGUwXQRV+ZDxs07XmaeH4XIYI+di1ono= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + GEtUsrVDWqXyHAV8lWPrEUWQm30jetvOjJZdlI7egwQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/es.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + OaVgz8LiS96ZT2vfsJKv7bM+mwC0DT7Px6A1rIxboYg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fa.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + Ue4NSlcLQL9OAOrD5Ibul1RaIwZOl6vcIv7DsffzQMA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + O+ja0EMKj5RxMmW3TRALc9XTpMJ7Y7dwXm706E33rUA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + MfjVC0QQ0Dxvz6Rt03EhMaahM5Gh5rhqMSJFEqzSRLo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fi.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + O6+s8+GKGX06x08WB1v526jOSl30MEoNnzjhYKe4IA0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + Avyaxx14FRXq/CTIDvvF7uww42SRhYgNSc960h7MCfc= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + qlNtkoH6vAA93/yxp8Stav74m46gvKb+3R26QDMSsXs= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/fr.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + O5To7z4frtvm1D6zwFzz6rpleVtia2BFro3bElXznDg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/he.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + SmfKGCNVK9M61LCNGqWk4/FZInlcKG2U9uD5ajPVobw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/he.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + dWNbn7k2fHYYtPta1WhZ1DvglupayXIaQjBYK/8G7cQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + L7shRNgdZIfbt5y5pioLEIo+A9I7VtgIUFpzoCFkB1I= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + 5x5zRCWzWYlbd7MkUcbPs5ZWrWQRDZnj3s9K2LmsnBw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hr.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + Nmip9NgB014UDYN3yOsmsOFa9D3wED0L56Mve3WIVQg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 8LbsWTkMSczHFa4Rh9XZDRo0uCOyrV9VXUYEiEvnG7I= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + twHi8JXysxao7MlTGr178ZpB8yz1mXkij2V5n8NJWSQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/hu.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 0UBqgjXjtRG51lEacNaLTmNvj5aFUeJ7oo1J4WYkrCw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 04Q9PpqtuYz6kfVhf6eI9XBxJn0LQB9Ck/ceBq1ztGU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + heK63dQF7YJvehrOEQk1jesq6v3bQBJy2jL+w5jjMlE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/is.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 5/4A+HgH/PhUAQ3NVnURPeiIJsQYJyZ28sAObmxJlVU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + 1zxkJlohqYtSJb0pj93fJXlPkedYm2IllbilGRDFo90= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + XjyG4RGvcVUZia4jJHGYQEfgocs1iEx7iljn+vue5xY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/it.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 2Glm2TwT78wZfe8iqBg8z/oCgrmtzqthnzNlHvHt5ls= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + vFagmq7Xdp80v7/plWY/m3PBNbxFsCeu0x8wDzZQRT4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + zYuOp6owctTI6zIFWac7yKqGLEglaXnTlNOnh/n7mow= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ja.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + ND5iilhwr65bkm+YhqLGqKEISY1I2td3Ncn8D8Vdass= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + shkQwYfF0rI+GzhWoVLqI7A1hKTnRr/o4wnUFb3Vhik= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + lqPQJYKtJlVGV2/UpetCpxTEpb4u5aUUU9CjmZO2OaI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ko.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + YqbMnU7mRpPLmsdD7YIXgMZkaxkkL5aaeoiv4bLN93I= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + RQbKlvLGnVjjVMP5eHHNUCv5kLJl4EA6zNGdDKatbH0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + F85iUA2aHbvo23Z0jJ/T/pwJ2HOQdYD5eRyAow9cSgY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nb.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + 6sl0vlKoRBQtvGvC7oGwtHA8/B+fNdwBGwN2AyISsXQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + tp3fY8ogv+xcQOFkz5BkDNTZHIaRrhGgT9uKfCjDB70= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + Yrwc9ESTayZoqv2JWm0nD1IHGLeAiBncPc2OeaVz8J8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/nl.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + tBjWBavMtayqool9JGs+xH56A2Kui/7dRQX27xG2jx0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + oB2rGM/SPnJLdvhUz2CJfm8TS6XhrhmHD2gFyrVSq8U= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + ubFfFWaG2RKXgeGR4DRtvbY0fH+SNJZzBebSPCo6K5c= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pl.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + KwctPd8Y+mrsEYWALAkKXeCfY4celUbA3MVn+Ye4Imc= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + hDN04zbJliR6KRqEv4lEuAVNTjbkmyYUpKjCbWKaKdU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + 6NvKj6GmzGQLAsGBC6IUvRBoLSRfEJuWi7ZitoTyoTk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-BR.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + Kcwam/xq0V6VzMD4+rbUrDyAtrsl186J6lEeu5K2qD4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + gto4ribWYRWZl0Eez6/7XZg3EesExPlGb5Nz1YVTuzE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + st4wdNoLjj5sVIFHqDAh3cjRFhxhpzkcFP7AJSXjYkw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/pt-PT.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + RLdbB4cQnps2k/crFyvGScdjmGE3KSkG448wTbYi4vY= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + PZZnueQNOLmQuEtkELhzxhnG+MDu7RyeOaySHSoHmYU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + IkIaDJ/HgpnBNNkP+MF2JGSd+rNgAI+o9c2aNor+ewo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ro.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + w2L0Ki7vhlIa92HDkDRmDExmCXIGkOWil+ROXr+6I+k= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + wdiMmOcek4MJvdl1u2OoccWD56zCu2lKDGUd40bnMb8= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + /uARbwIQFupNOZvlyWgeE722GAsKcu4/QooLAEGHCBQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/ru.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + INHL+VHSTd0hjYmUXHPShl3l4xTB4C3KcCLgVn/AHGw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + FDJ/dTwG5X34BF9lDDkFVGJUwpLeKi1MUbF072nYass= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + xa+UPXIC+og1IpGE6bA/+51E2uR9ZG+HGWKFA83tTNU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sk.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + VmLLF6tJBA+j9jFby3BVx9GagD//qx4ETRywoU71PVQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + OAq7ojI6K/xR4nFEK1OBTiJeNaHqgb8xCgzZ5Y3P7Uo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + ik4klDAQYgMT5hrecUkfi+K/tuGyvOYk96xp+z98l74= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sl.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + VTtzpxCnkPCO1yB2GviO6AkaZFKPpcUh530dTdqFcQE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + LYXEBB7MF82Ig5MgIM9pTtJJAYJL51nzYzbVW1kdSGI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + XDORKepHKWfDihFVMFnshPW/qjSLPLoU/zHqJQbRoBk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/sv.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + nidShaf5BKX1wQntkXeQhcGQoWUzNgVQhfHSM44GXVM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + dvWO9t2NYZ+cQoe/9B3Tib+EPOdPp4wgatHaVVhu8gQ= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + mxCL8k437ikdUpl3px2Ii/2fZqL85x1Fn/xe7h1YI6E= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/th.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + vj4h7104vuQqis9NXvSgrgQNz9czX6lMJqdvem4VCUk= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + Eas+RUaJ03H05UVqHIhONcr5aa06Oj3g21RnNac5od4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + D3zqZ6c91YzDkgT4Vs+/SM98tCcw+qDhY/eKhohBfZg= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/tr.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + noD1zsNtx5u2wHPX8rarT7YPn+H09/DgvHb2553BnDo= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + lR6DOvFkMHpmbtXQJNE1aXtRXgBbd0siVMoq01D4dhM= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + +MphWMKEy2hsIqrjroJQcq+x1mytcNeZm+z3Lv+ll6A= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/uk.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + gvuLzOKGahqSQtAwSCb9CuBAYuDVwfj+lwwSv/NPq8s= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + NXEAoNAKcjI5GBtGxYcUXmtz+rP06ocJSSVlaR/lnMA= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + 8co96MJCMuKNvaPFe13uh2d028P/Cgpa8iOiNml9rfE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_CN.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + nKdLa3IQhWTKipj6MF+VwRUugjpvTVuGIpzQF/QDUYI= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + zegYIhIFwtdJa87mjTlkalyYSz31LrnhiwNWDJDPqBU= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + 54ogzTvsgJOl4aSWIQRzRzky1TddmGlpamTLhHMJWb0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_HK.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + AKEvYEi8FGZbbYnhpr2nqeUWrBQaj7wJjo8/KjED1U0= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/SUUpdateAlert.strings</key> + <dict> + <key>hash2</key> + <data> + jdmB9inrJUf1OmYmVnORSMfdz5z1SWmBtdv39I776K4= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings</key> + <dict> + <key>hash2</key> + <data> + 4tCLZKKcNuOJ1up1IgFXUeEp7s5U5BOBGHC1EZMyrhE= + </data> + <key>optional</key> + <true/> + </dict> + <key>Resources/zh_TW.lproj/Sparkle.strings</key> + <dict> + <key>hash2</key> + <data> + NhrxIO01cQJckmOoEhEbQ73y2RcEy8drXCHDvsvcLEw= + </data> + <key>optional</key> + <true/> + </dict> + <key>Updater.app</key> + <dict> + <key>cdhash</key> + <data> + bwydMD30i3XJLgdaSJaOKvGHWNw= + </data> + <key>requirement</key> + <string>cdhash H"6f0c9d303df48b75c92e075a48968e2af18758dc" or cdhash H"ccf6be6a2321e5fca26c2d4e18a84a7b88335410"</string> + </dict> + <key>XPCServices/Downloader.xpc</key> + <dict> + <key>cdhash</key> + <data> + JGT6QWfBdYaNLDT53M7XH6CMf9w= + </data> + <key>requirement</key> + <string>cdhash H"2464fa4167c175868d2c34f9dcced71fa08c7fdc" or cdhash H"4d0238ab298ac7844cc4c060c8d0e44fdb6c199a"</string> + </dict> + <key>XPCServices/Installer.xpc</key> + <dict> + <key>cdhash</key> + <data> + 7skE4fG1Lz/R9Xo6olqHNFAC5VE= + </data> + <key>requirement</key> + <string>cdhash H"eec904e1f1b52f3fd1f57a3aa25a87345002e551" or cdhash H"ab805e9c434dc9a04e995ff82949a5338e9e0be2"</string> + </dict> + </dict> + <key>rules</key> + <dict> + <key>^Resources/</key> + <true/> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^version.plist$</key> + <true/> + </dict> + <key>rules2</key> + <dict> + <key>.*\.dSYM($|/)</key> + <dict> + <key>weight</key> + <real>11</real> + </dict> + <key>^(.*/)?\.DS_Store$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>2000</real> + </dict> + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^.*</key> + <true/> + <key>^Info\.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^PkgInfo$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^Resources/Base\.lproj/</key> + <dict> + <key>weight</key> + <real>1010</real> + </dict> + <key>^[^/]+$</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^embedded\.provisionprofile$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^version\.plist$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + </dict> +</dict> +</plist> diff --git a/OSX/Sparkle.framework/Versions/Current b/OSX/Sparkle.framework/Versions/Current index 8c7e5a66..7371f47a 120000 --- a/OSX/Sparkle.framework/Versions/Current +++ b/OSX/Sparkle.framework/Versions/Current @@ -1 +1 @@ -A \ No newline at end of file +B \ No newline at end of file diff --git a/OSX/Sparkle.framework/XPCServices b/OSX/Sparkle.framework/XPCServices new file mode 120000 index 00000000..99c46ea2 --- /dev/null +++ b/OSX/Sparkle.framework/XPCServices @@ -0,0 +1 @@ +Versions/Current/XPCServices \ No newline at end of file diff --git a/OSX/Updater.h b/OSX/Updater.h index 3b568302..50f34d88 100644 --- a/OSX/Updater.h +++ b/OSX/Updater.h @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright (c) 2013-2018 Jamie Zawinski <jwz@jwz.org> +/* xscreensaver, Copyright © 2013-2023 Jamie Zawinski <jwz@jwz.org> * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -11,17 +11,18 @@ #ifdef IN_UPDATER # import <Cocoa/Cocoa.h> -# import <Sparkle/SUUpdaterDelegate.h> +# import <Sparkle/SPUUpdaterDelegate.h> +# import <Sparkle/SPUStandardUserDriverDelegate.h> @interface XScreenSaverUpdater : NSObject <NSApplicationDelegate, - SUUpdaterDelegate> + SPUUpdaterDelegate, + SPUStandardUserDriverDelegate> { - NSTimer *timer; } @end #endif // IN_UPDATER -#define UPDATER_DOMAIN "org.jwz.xscreensaver.updater" +#define UPDATER_DOMAIN "org.jwz.xscreensaver.XScreenSaverUpdater" // Strings must match Sparkle/SUConstants.m #define SUSUEnableAutomaticChecksKey "SUEnableAutomaticChecks" @@ -30,13 +31,20 @@ #define SUAutomaticallyUpdateDef NO #define SUSendProfileInfoKey "SUSendProfileInfo" #define SUSendProfileInfoDef YES -#define SUScheduledCheckIntervalKey "SUScheduledCheckInterval" -#define SUScheduledCheckIntervalDef 604800 #define SULastCheckTimeKey "SULastCheckTime" +#define SULastCheckTimeDef "1992-08-17 19:00:00 +0000" + +#define SUScheduledCheckIntervalKey "SUScheduledCheckInterval" +#ifdef IN_UPDATER +# define SUScheduledCheckIntervalDef 86400 // Updater: 1 day +#else +# define SUScheduledCheckIntervalDef 604800 // Savers: 2 weeks +#endif #define UPDATER_DEFAULTS @{ \ @SUSUEnableAutomaticChecksKey: @SUSUEnableAutomaticChecksDef, \ @SUAutomaticallyUpdateKey: @SUAutomaticallyUpdateDef, \ @SUSendProfileInfoKey: @SUSendProfileInfoDef, \ - @SUScheduledCheckIntervalKey: @SUScheduledCheckIntervalDef \ + @SULastCheckTimeKey: @SULastCheckTimeDef, \ + @SUScheduledCheckIntervalKey: @SUScheduledCheckIntervalDef, \ } diff --git a/OSX/Updater.m b/OSX/Updater.m index d689133f..1af0fb44 100644 --- a/OSX/Updater.m +++ b/OSX/Updater.m @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright © 2013-2021 Jamie Zawinski <jwz@jwz.org> +/* xscreensaver, Copyright © 2013-2023 Jamie Zawinski <jwz@jwz.org> * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -12,42 +12,50 @@ * via Sparkle.framework. * * Created: 7-Dec-2013 - * - * NOTE: This does not work with Sparkle 1.5b6 -- it requires the "HEAD" - * version 4-Dec-2013 or later. */ #define IN_UPDATER -#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" - #import "Updater.h" -#import "Sparkle/SUUpdater.h" +#import "Sparkle/SPUUpdater.h" +#import "Sparkle/SPUStandardUpdaterController.h" +#import "nslog.h" -@implementation XScreenSaverUpdater : NSObject +@implementation XScreenSaverUpdater +{ + NSTimer *timer; + SPUStandardUpdaterController *updater; +} - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSUserDefaults *defs = [NSUserDefaults standardUserDefaults]; [defs registerDefaults:UPDATER_DEFAULTS]; - // If it's not time to run the updater, then bail immediately. - // I'm not sure why this is necessary, but Sparkle seems to be - // checking too often. - // - if (! [self timeToCheck]) - [[NSApplication sharedApplication] terminate:self]; + updater = [[[SPUStandardUpdaterController alloc] + initWithUpdaterDelegate: self + userDriverDelegate: self] + retain]; - // If the screen saver is not running, then launch the updater now. - // Otherwise, wait until the screen saver deactivates, and then do - // it. This is because if the updater tries to pop up a dialog box - // while the screen saver is active, everything goes to hell and it - // never shows up. You'd expect the dialog to just map below the - // screen saver window, but no. + if (! [self timeToCheck]) { + NSLog (@"updater: not checking"); + [[NSApplication sharedApplication] terminate:self]; + } + // On macOS 10.15, if we tried to pop up the Sparkle dialog while the + // screen was blanked, the dialog never showed up. So on such systems, + // we wait until the screen becomes un-blanked before running the updater. + // + // On macOS 14.0, it works just fine to pop up the dialog while the screen + // is blanked: it becomes visible once the screen un-blanks, as you'd + // expect. Which is good, because we also have no way of knowing whether + // the screen is blanked. + // if (! [self screenSaverActive]) { + NSLog (@"updater: running immediately"); [self runUpdater]; } else { + NSLog (@"updater: waiting for screen to unblank"); // Run the updater when the "screensaver.didstop" notification arrives. [[NSDistributedNotificationCenter defaultCenter] addObserver:self @@ -65,20 +73,59 @@ } +// This is mostly informational now, since XScreenSaverView checkForUpdates +// also does this test, and only invokes us if it is time. +// - (BOOL) timeToCheck { NSUserDefaults *defs = [NSUserDefaults standardUserDefaults]; - NSTimeInterval interval = [defs doubleForKey:@SUScheduledCheckIntervalKey]; - NSDate *last = [defs objectForKey:@SULastCheckTimeKey]; - if (!interval || !last) + + // This must always be small so we do an update each-ish time we're launched. + // We check it here but so does the Sparkle bundle. + NSTimeInterval interval = 60 * 60 * 24; + [defs setObject: [NSNumber numberWithInt: interval] + forKey: @SUScheduledCheckIntervalKey]; + updater.updater.updateCheckInterval = interval; + + NSDate *last_check = [defs objectForKey:@SULastCheckTimeKey]; + if ([last_check isKindOfClass:[NSString class]]) { + NSString *s = (NSString *) last_check; + if (!s.length) { + last_check = nil; + } else { + NSDateFormatter *f = [[NSDateFormatter alloc] init]; + [f setDateFormat:@"yyyy-MM-dd HH:mm:ss ZZZZZ"]; + [f setTimeZone: [NSTimeZone timeZoneForSecondsFromGMT: 0]]; + last_check = [f dateFromString: s]; + } + } + + if (!last_check) { + NSLog (@"updater: never checked for updates (interval %d days)", + (int) (interval / (60 * 60 * 24))); return YES; - NSTimeInterval since = [[NSDate date] timeIntervalSinceDate:last]; - return (since > interval); + } else { + NSTimeInterval elapsed = -[last_check timeIntervalSinceNow]; + if (elapsed < interval) { + NSLog (@"updater: last checked for updates %d days ago, skipping check" + " (interval %d days)", + (int) (elapsed / (60 * 60 * 24)), + (int) (interval / (60 * 60 * 24))); + return NO; + } else { + NSLog (@"updater: last checked for updates %d days ago" + " (interval %d days)", + (int) (elapsed / (60 * 60 * 24)), + (int) (interval / (60 * 60 * 24))); + return YES; + } + } } // Whether ScreenSaverEngine is currently running, meaning screen is blanked. // There's no easy way to determine this other than scanning the process table. +// This always returns false as of macOS 14.0. // - (BOOL) screenSaverActive { @@ -111,14 +158,17 @@ - (void) saverStoppedNotification:(NSNotification *)note { + NSLog (@"updater: screen unblanked"); [self runUpdater]; } - (void) pollSaverTermination:(NSTimer *)t { - if (! [self screenSaverActive]) + if (! [self screenSaverActive]) { + NSLog (@"updater: screen unblanked, polled"); [self runUpdater]; + } } @@ -129,27 +179,60 @@ timer = nil; } - SUUpdater *updater = [SUUpdater updaterForBundle: - [NSBundle bundleForClass:[self class]]]; - [updater setDelegate:self]; - // Launch the updater thread. - [updater checkForUpdatesInBackground]; + [updater.updater checkForUpdatesInBackground]; // Now we need to wait for the Sparkle thread to finish before we can // exit, so just poll waiting for it. // - [NSTimer scheduledTimerWithTimeInterval:1 - target:self - selector:@selector(pollUpdaterTermination:) - userInfo:updater - repeats:YES]; + NSLog (@"updater: waiting for sparkle"); + [NSTimer scheduledTimerWithTimeInterval: 1 + target: self + selector: @selector(pollUpdaterTermination:) + userInfo: nil + repeats: YES]; +} + + +- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)app +{ + return YES; +} + +- (void) pollUpdaterTermination:(NSTimer *)t +{ + if ([updater.updater sessionInProgress]) { + // NSLog (@"updater: waiting for sparkle"); + } else { + NSLog (@"updater: sparkle finished (polled)"); + [[NSApplication sharedApplication] terminate:self]; + } +} + +- (void) updater: (SPUUpdater *) updater + didFinishUpdateCycleForUpdateCheck: (SPUUpdateCheck) uc + error: (NSError *) err +{ + if (err) + NSLog (@"updater: finished with error: %@", err); + else + NSLog (@"updater: finished"); + [[NSApplication sharedApplication] terminate:self]; } -// Delegate method that lets us append extra info to the system-info URL. // -- (NSArray *) feedParametersForUpdater:(SUUpdater *)updater +// Sparkle configuration +// + +- (BOOL) updaterShouldRelaunchApplication: (SPUStandardUpdaterController *) u +{ + return NO; // No need for Sparkle to re-launch XScreenSaverUpdater +} + +// Append extra info to the system-info URL. +// +- (NSArray *) feedParametersForUpdater:(SPUStandardUpdaterController *) u sendingSystemProfile:(BOOL)sending { // Get the name of the saver that invoked us, and include that in the @@ -170,17 +253,82 @@ } -- (void) pollUpdaterTermination:(NSTimer *)t +// Just add some more logging to various delegate hooks. + + +- (void) updater: (SPUStandardUpdaterController *) u + didFinishLoadingAppcast: (SUAppcast *) appcast { - SUUpdater *updater = [t userInfo]; - if (![updater updateInProgress]) - [[NSApplication sharedApplication] terminate:self]; + NSLog (@"updater: sparkle finished loading %@", appcast); } - -- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)app +- (BOOL) updaterShouldShowUpdateAlertForScheduledUpdate: + (SPUStandardUpdaterController *) u + forItem: (SUAppcastItem *) item { + NSLog (@"updater: update alert: %@", item); return YES; } +- (void) updater: (SPUStandardUpdaterController *) u + didDismissUpdateAlertPermanently: (BOOL) permanently + forItem: (SUAppcastItem *) item +{ + NSLog (@"updater: dismissed: %@", item); +} + +- (void) updaterDidNotFindUpdate:(SPUStandardUpdaterController *) u +{ + NSLog (@"updater: no updates"); +} + +- (void) updater: (SPUStandardUpdaterController *) u + willDownloadUpdate: (SUAppcastItem *) item + withRequest: (NSMutableURLRequest *) request +{ + NSLog (@"updater: downloading %@", item); +} + +- (void) updater: (SPUStandardUpdaterController *) u + didDownloadUpdate: (SUAppcastItem *) item +{ + NSLog (@"updater: downloaded %@", item); +} + +- (void) updater: (SPUStandardUpdaterController *) u + failedToDownloadUpdate: (SUAppcastItem *) item + error: (NSError *) error +{ + NSLog (@"updater: download failed: %@ %@", item, error); +} + +- (void) userDidCancelDownload: (SPUStandardUpdaterController *) u +{ + NSLog (@"updater: download cancelled"); +} + +- (void) updater: (SPUStandardUpdaterController *) u + willExtractUpdate: (SUAppcastItem *) item +{ + NSLog (@"updater: extracting %@", item); +} + +- (void) updater: (SPUStandardUpdaterController *) u + didExtractUpdate: (SUAppcastItem *) item +{ + NSLog (@"updater: extracted %@", item); +} + +- (void) updater: (SPUStandardUpdaterController *) u + willInstallUpdate: (SUAppcastItem *) item +{ + NSLog (@"updater: installing %@", item); +} + +- (void) updater: (SPUStandardUpdaterController *) u + didAbortWithError: (NSError *) error +{ + NSLog (@"updater: failed: %@", error); +} + @end diff --git a/OSX/Updater.plist b/OSX/Updater.plist index 1c501132..7aa26c01 100644 --- a/OSX/Updater.plist +++ b/OSX/Updater.plist @@ -17,7 +17,7 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>6.07</string> + <string>6.08</string> <key>LSMinimumSystemVersion</key> <string>${MACOSX_DEPLOYMENT_TARGET}</string> <key>NSPrincipalClass</key> @@ -25,13 +25,13 @@ <key>LSApplicationCategoryType</key> <string>public.app-category.entertainment</string> <key>CFBundleShortVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleLongVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleGetInfoString</key> - <string>6.07</string> + <string>6.08</string> <key>NSHumanReadableCopyright</key> - <string>6.07</string> + <string>6.08</string> <key>NSMainNibFile</key> <string>Updater</string> <key>CFBundleIconFile</key> @@ -47,6 +47,6 @@ <key>SUPublicEDKey</key> <string>D5YfJDsnJeiG/OhmYBGrPytPDxPsq8p0lholwaueaBo=</string> <key>SUScheduledCheckInterval</key> - <integer>604800</integer> + <integer>86400</integer> </dict> </plist> diff --git a/OSX/XScreenSaver.plist b/OSX/XScreenSaver.plist index 82cf0286..bbffa9ca 100644 --- a/OSX/XScreenSaver.plist +++ b/OSX/XScreenSaver.plist @@ -17,7 +17,7 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>6.07</string> + <string>6.08</string> <key>LSMinimumSystemVersion</key> <string>${MACOSX_DEPLOYMENT_TARGET}</string> <key>NSPrincipalClass</key> @@ -25,13 +25,13 @@ <key>LSApplicationCategoryType</key> <string>public.app-category.entertainment</string> <key>CFBundleShortVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleLongVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleGetInfoString</key> - <string>6.07</string> + <string>6.08</string> <key>NSHumanReadableCopyright</key> - <string>6.07</string> + <string>6.08</string> <key>NSMainNibFile</key> <string>SaverRunner</string> </dict> diff --git a/OSX/XScreenSaverConfigSheet.m b/OSX/XScreenSaverConfigSheet.m index 15a2a741..4ef31fb2 100644 --- a/OSX/XScreenSaverConfigSheet.m +++ b/OSX/XScreenSaverConfigSheet.m @@ -28,6 +28,7 @@ #import "jwxyz.h" #import "InvertedSlider.h" +#import "nslog.h" #ifdef HAVE_IPHONE # define NSView UIView @@ -2842,14 +2843,14 @@ find_text_field_of_button (NSButton *button) [x] Check for Updates [ Monthly ] <hgroup> - <boolean id="automaticallyChecksForUpdates" + <boolean id="SUAutomaticallyUpdate" _label="Automatically check for updates" - arg-unset="-no-automaticallyChecksForUpdates" /> - <select id="updateCheckInterval"> - <option="hourly" _label="Hourly" arg-set="-updateCheckInterval 3600"/> - <option="daily" _label="Daily" arg-set="-updateCheckInterval 86400"/> - <option="weekly" _label="Weekly" arg-set="-updateCheckInterval 604800"/> - <option="monthly" _label="Monthly" arg-set="-updateCheckInterval 2629800"/> + arg-unset="-no-SUAutomaticallyUpdate" /> + <select id="SUScheduledCheckInterval"> + <option="hourly" _label="Hourly" arg-set="-SUScheduledCheckInterval 3600"/> + <option="daily" _label="Daily" arg-set="-SUScheduledCheckInterval 86400"/> + <option="weekly" _label="Weekly" arg-set="-SUScheduledCheckInterval 604800"/> + <option="monthly" _label="Monthly" arg-set="-SUScheduledCheckInterval 2629800"/> </select> </hgroup> */ diff --git a/OSX/XScreenSaverView.m b/OSX/XScreenSaverView.m index f8f3bdcd..aeceb540 100644 --- a/OSX/XScreenSaverView.m +++ b/OSX/XScreenSaverView.m @@ -29,6 +29,7 @@ #import "jwxyzI.h" #import "jwxyz-cocoa.h" #import "jwxyz-timers.h" +#import "nslog.h" #ifdef HAVE_IPHONE // XScreenSaverView.m speaks OpenGL ES just fine, but enableBackbuffer does @@ -40,7 +41,9 @@ #ifndef HAVE_IPHONE # define VENTURA_KLUDGE +# define SONOMA_KLUDGE #endif +#undef CATCH_SIGNALS #undef countof #define countof(x) (sizeof((x))/sizeof((*x))) @@ -58,7 +61,6 @@ const char *progname; const char *progclass; int mono_p = 0; - # ifdef HAVE_IPHONE # define NSSizeToCGSize(x) (x) @@ -396,6 +398,11 @@ add_default_options (const XrmOptionDescRec *opts, } +#ifdef CATCH_SIGNALS +// +// This doesn't work. We display backtraces for exceptions, but not for +// signals, including for abort() unless it was wrapped with jwxyz_abort(). +// static void sighandler (int sig) { const char *s = strsignal(sig); @@ -460,6 +467,8 @@ static void catch_signals (void) NSLog (@"installed signal handlers"); } +#endif // CATCH_SIGNALS + #ifdef VENTURA_KLUDGE // Duplicated in Randomizer.m static NSMutableArray *all_saver_views = NULL; #endif @@ -474,7 +483,9 @@ static NSMutableArray *all_saver_views = NULL; return 0; saver_title = [_title retain]; +# ifdef CATCH_SIGNALS catch_signals(); +# endif xsft = [self findFunctionTable: saver_title]; if (! xsft) { [self release]; @@ -550,6 +561,49 @@ static NSMutableArray *all_saver_views = NULL; } #endif // VENTURA_KLUDGE +# ifdef SONOMA_KLUDGE // Duplicated in Randomizer.m + + /* Oct 2023, macOS 14.0: we get startAnimation on each screen, but + stopAnimation is never called, and our process (legacyScreenSaver) + never exits. This means that the screen saver just keeps running + forever in the background on an invisible window, burning CPU! + + That invisible window is both 'visible' and 'onActiveSpace', and has + no parentWindow, so its invisibility is not detectable. + + However, there is a "com.apple.screensaver.willstop" notification and + from that we can intuit that we should send ourselves stopAnimation. + + Except, stopAnimation() isn't great, because it seems that sometimes + legacyScreenSaver holds on to old copies of this bundle and begins + animating them again -- so we have multiple invisible copies of the + same saver running, which burns CPU uselessly and kills our frame rate. + So let's just exit() instead. + */ + if (!p && !randomizer_p) { + [[NSDistributedNotificationCenter defaultCenter] + addObserverForName: @"com.apple.screensaver.willstop" + object: nil + queue: nil + usingBlock:^(NSNotification *n) { + NSLog (@"received %@", [n name]); + [self stopAnimation]; + NSLog (@"exiting"); + [[NSApplication sharedApplication] terminate:self]; + }]; + + /* Do it before sleeping as well, I guess? */ + [[[NSWorkspace sharedWorkspace] notificationCenter] + addObserverForName: NSWorkspaceWillSleepNotification + object: nil + queue: nil + usingBlock:^(NSNotification *n) { + NSLog (@"received %@", [n name]); + [self stopAnimation]; + }]; + } +# endif // SONOMA_KLUDGE + return self; } @@ -567,7 +621,7 @@ static NSMutableArray *all_saver_views = NULL; June 2023, macOS 13.4: On a system with 3 screens, initWithFrame is called on every screen, but viewDidMoveToWindow is called only on screen 3 -- but - that screen's view has the frame of screen 0! So we get only one saver + that screen's view has the frame of screen 1! So we get only one saver running, and it is the wrong size. We detect and correct this insanity with the VENTURA_KLUDGE stuff. */ @@ -1300,6 +1354,11 @@ gl_check_ver (const struct gl_version *caps, { const char *version_str = (const char *)glGetString (GL_VERSION); + if (! version_str) { + NSLog (@"no GL_VERSION?"); + version_str = ""; + } + /* iPhone is always OpenGL ES 1.1. */ if (sscanf ((const char *)version_str, "%u.%u", &version.major, &version.minor) < 2) @@ -1463,8 +1522,7 @@ gl_check_ver (const struct gl_version *caps, GLsizei olen = backbuffer_len; # if !defined __OPTIMIZE__ || TARGET_IPHONE_SIMULATOR - NSLog(@"backbuffer %.0fx%.0f", - new_size.width, new_size.height); + NSLog(@"backbuffer %.0fx%.0f", new_size.width, new_size.height); # endif /* OS X uses APPLE_client_storage and APPLE_texture_range, as described in @@ -1941,7 +1999,13 @@ gl_check_ver (const struct gl_version *caps, resized_p = YES; # endif - [self checkForUpdates]; +# ifndef HAVE_IPHONE + [NSTimer scheduledTimerWithTimeInterval: 10 + frand(10) + target: self + selector: @selector(checkForUpdates) + userInfo: nil + repeats: NO]; +# endif // !HAVE_IPHONE # ifdef HAVE_IPHONE BOOL cyclep = get_boolean_resource (xdpy, "globalCycle", "GlobalCycle"); @@ -2079,7 +2143,6 @@ gl_check_ver (const struct gl_version *caps, static int frame = 0; if (++frame == 100) { fprintf(stderr,"BOOM\n"); - int y = 0; // int aa = *((int*)y); int x = 30/y; } @@ -3285,6 +3348,48 @@ gl_check_ver (const struct gl_version *caps, # ifndef HAVE_IPHONE +/* Hooooooboy, is checking for updates a mess! + + The various screen savers, via XScreenSaverConfigSheet, normally store + their preferences into NSUserDefaultsController and ScreenSaverDefaults, + which (when running under legacyScreenSaver, which is sandboxed) writes + those preferences into: + + Library/Containers/com.apple.ScreenSaver.Engine.legacyScreenSaver/Data/\ + Library/Preferences/ByHost/org.jwz.xscreensaver.$NAME.$UUID.plist + + The exception to this is the two global preferences controlling whether + and how often we should check for updates. Those two preferences, + "SUAutomaticallyUpdate" and "SUScheduledCheckInterval", are instead + written into NSUserDefaultsController / GlobalDefaults, which means + those end up in: + + Library/Containers/com.apple.ScreenSaver.Engine.legacyScreenSaver/Data/\ + Library/Preferences/org.jwz.xscreensaver.XScreenSaverUpdater.plist + + However, XScreenSaverUpdater.app, which is not sandboxed, expects to + read those preferences from: + + Library/Preferences/org.jwz.xscreensaver.XScreenSaverUpdater.plist + + which cannot be written by a sandboxed .saver bundle. + + Also a sandboxed app cannot pass command-line args to a launched + application. + + How we resolve this is by moving the "when to check" logic into + XScreenSaverView. We examine the sandboxed versions of the Sparkle + preferences and use those to decide when and whether to launch + XScreenSaverUpdater.app. And we arrange for XScreenSaverUpdater.app + to always check if it has been launched, by having these settings as + its defaults: + + SUAutomaticallyUpdate: yes + SUScheduledCheckInterval: daily + */ + + + // Returns the full pathname to the Sparkle updater app. // - (NSString *) updaterPath @@ -3321,26 +3426,72 @@ gl_check_ver (const struct gl_version *caps, return app_path; } -# endif // !HAVE_IPHONE + + +// Upon successful launch of the updater, record the date. +// +- (void) updaterLaunched +{ + NSUserDefaultsController *def = [prefsReader globalDefaultsController]; + NSAssert (def, @"no globalDefaultsController"); + + // SULastCheckTime = "2023-10-09 17:01:59 +0000"; + + NSDateFormatter *f = [[NSDateFormatter alloc] init]; + [f setDateFormat:@"yyyy-MM-dd HH:mm:ss +0000"]; + [f setTimeZone: [NSTimeZone timeZoneForSecondsFromGMT: 0]]; + NSString *date = [f stringFromDate: [NSDate date]]; + + NSString *old = [[def defaults] objectForKey: @SULastCheckTimeKey]; + NSLog (@"%@: \"%@\" => \"%@\"", @SULastCheckTimeKey, old, date); + + [[def defaults] setObject: date forKey: @SULastCheckTimeKey]; + [def commitEditing]; + [def save: self]; +} - (void) checkForUpdates { -# ifndef HAVE_IPHONE - // We only check once at startup, even if there are multiple screens, - // and even if this saver is running for many days. - // (Uh, except this doesn't work because this static isn't shared, - // even if we make it an exported global. Not sure why. Oh well.) - static BOOL checked_p = NO; - if (checked_p) return; - checked_p = YES; - - // If it's off, don't bother running the updater. Otherwise, the - // updater will decide if it's time to hit the network. if (! get_boolean_resource (xdpy, SUSUEnableAutomaticChecksKey, - SUSUEnableAutomaticChecksKey)) + SUSUEnableAutomaticChecksKey)) { + NSLog (@"update checks disbled"); return; + } + + int interval = get_integer_resource (xdpy, + SUScheduledCheckIntervalKey, + SUScheduledCheckIntervalKey); + if (interval <= 0) + interval = 60 * 60 * 24; + + const char *last_check = get_string_resource (xdpy, + SULastCheckTimeKey, + SULastCheckTimeKey); + if (!last_check || !*last_check) { + NSLog (@"never checked for updates (interval %d days)", + (int) (interval / (60 * 60 * 24))); + } else { + NSDateFormatter *f = [[NSDateFormatter alloc] init]; + [f setDateFormat:@"yyyy-MM-dd HH:mm:ss ZZZZZ"]; + [f setTimeZone: [NSTimeZone timeZoneForSecondsFromGMT: 0]]; + NSDate *last_check2 = + [f dateFromString: [NSString stringWithCString: last_check + encoding: NSUTF8StringEncoding]]; + NSTimeInterval elapsed = -[last_check2 timeIntervalSinceNow]; + if (elapsed < interval) { + NSLog (@"last checked for updates %d days ago, skipping check" + " (interval %d days)", + (int) (elapsed / (60 * 60 * 24)), + (int) (interval / (60 * 60 * 24))); + return; + } else { + NSLog (@"last checked for updates %d days ago (interval %d days)", + (int) (elapsed / (60 * 60 * 24)), + (int) (interval / (60 * 60 * 24))); + } + } NSString *app_path = [self updaterPath]; @@ -3350,18 +3501,44 @@ gl_check_ver (const struct gl_version *caps, } NSWorkspace *workspace = [NSWorkspace sharedWorkspace]; + +# if 1 // Deprecated as of macOS 11.0: NSError *err = nil; - if (! [workspace launchApplicationAtURL:[NSURL fileURLWithPath:app_path] - options:(NSWorkspaceLaunchWithoutAddingToRecents | - NSWorkspaceLaunchWithoutActivation | - NSWorkspaceLaunchAndHide) - configuration:[NSMutableDictionary dictionary] - error:&err]) { - NSLog(@"Unable to launch %@: %@", app_path, err); + if ([workspace launchApplicationAtURL: [NSURL fileURLWithPath:app_path] + options: (NSWorkspaceLaunchWithoutAddingToRecents | + NSWorkspaceLaunchWithoutActivation | + NSWorkspaceLaunchAndHide) + configuration: [NSMutableDictionary dictionary] + error: &err]) { + NSLog (@"Launched %@", app_path); + [self updaterLaunched]; + } else { + NSLog (@"Unable to launch %@: %@", app_path, err); } +# else // Available in macOS 10.15 or newer: + NSWorkspaceOpenConfiguration *conf = + [NSWorkspaceOpenConfiguration configuration]; + conf.activates = NO; + conf.addsToRecentItems = NO; + conf.allowsRunningApplicationSubstitution = YES; + conf.createsNewApplicationInstance = NO; + conf.hides = NO; + conf.hidesOthers = NO; + conf.promptsUserIfNeeded = YES; + [workspace openApplicationAtURL: [NSURL fileURLWithPath:app_path] + configuration: conf + completionHandler: ^(NSRunningApplication *app, NSError *err) { + if (err) { + NSLog(@"Unable to launch %@: %@", app, err); + } else { + NSLog(@"Launched %@", app); + [self updaterLaunched]; + } + } ]; +# endif +} # endif // !HAVE_IPHONE -} @end diff --git a/OSX/bindist.rtf b/OSX/bindist.rtf index ff703f3b..624ee43b 100644 --- a/OSX/bindist.rtf +++ b/OSX/bindist.rtf @@ -16,8 +16,8 @@ \b0 by Jamie Zawinski\ and many others\ \ -version 6.07\ -29-Aug-2023\ +version 6.08\ +10-Oct-2023\ \ {\field{\*\fldinst{HYPERLINK "https://www.jwz.org/xscreensaver/"}}{\fldrslt \cf2 \ul \ulc2 https://www.jwz.org/xscreensaver/}}\ \pard\pardeftab720 @@ -29,11 +29,22 @@ version 6.07\ \b0 \cf0 \ Just double-click on \i Install Everything\i0.\ \ -If it won't open because of your security settings, just control-click and +If it won't open because of your security settings, control-click and select \i Open \i0 from the context menu.\ \ \pard\pardeftab720 +\b \cf0 For best variety:\ +\pard\pardeftab720\li360 + +\b0 \cf0 \ +Select the screen saver at the bottom of the list that is called +\i "Random XScreenSaver" \i0 instead of the built-in one called just +\i "Random" \i0 -- you can choose how long a saver should run before a new +one is selected, and you can un-check the ones that you don't like.\ +\ +\pard\pardeftab720 + \b \cf0 To install only some of them:\ \pard\pardeftab720\li360 diff --git a/OSX/iSaverRunner.plist b/OSX/iSaverRunner.plist index 89e168ba..3c6e39ff 100644 --- a/OSX/iSaverRunner.plist +++ b/OSX/iSaverRunner.plist @@ -17,17 +17,17 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>6.07</string> + <string>6.08</string> <key>LSApplicationCategoryType</key> <string>public.app-category.entertainment</string> <key>CFBundleShortVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleLongVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleGetInfoString</key> - <string>6.07</string> + <string>6.08</string> <key>NSHumanReadableCopyright</key> - <string>6.07</string> + <string>6.08</string> <key>NSMainNibFile</key> <string>iSaverRunner</string> <key>CFBundleDisplayName</key> diff --git a/OSX/installer.rtf b/OSX/installer.rtf index 4c595960..2ac08178 100644 --- a/OSX/installer.rtf +++ b/OSX/installer.rtf @@ -11,15 +11,16 @@ \fs28 \cf0 This will install all of the screen savers system-wide. -If you prefer, you can instead install them one at a time by opening -the \i "Screen Savers" \i0 folder in this disk image and double-clicking -on only the ones that you want.\ -\ -The full installation will take around 220 MB.\ +It will take around 360 MB.\ \ \b Installation will take several minutes, and the progress bar will not move for most of that time. Just wait it out! \b0 \ \ +After installation, select the screen saver at the bottom of the list that is +called \i "Random XScreenSaver" \i0 instead of the built-in one called just +\i "Random" \i0 -- you can choose how long a saver should run before a new +one is selected, and you can un-check the ones that you don't like.\ +\ XScreenSaver also runs on iOS and Android. Free downloads in the {\field{\*\fldinst{HYPERLINK "https://itunes.apple.com/app/xscreensaver/id539014593?mt=8"}} diff --git a/OSX/installer.sh b/OSX/installer.sh index 83d6253b..62e15cc0 100755 --- a/OSX/installer.sh +++ b/OSX/installer.sh @@ -1,5 +1,5 @@ #!/bin/bash -# XScreenSaver, Copyright © 2013-2022 Jamie Zawinski <jwz@jwz.org> +# XScreenSaver, Copyright © 2013-2023 Jamie Zawinski <jwz@jwz.org> # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that @@ -20,7 +20,7 @@ #set -x DEBUG=0 -REQUIRED_SPACE=220 # MB. Highly approximate. +REQUIRED_SPACE=360 # MB. Highly approximate; updated 6.07. export PATH="/bin:/sbin:/usr/bin:/usr/sbin:$PATH" @@ -185,6 +185,19 @@ if [ "$V0" -ge 11 -o \ fi +# As of macOS 14.0, legacyScreenSaver remains running even while the screen +# is unblanked. It might have already loaded saver bundles from a previous +# installation of XScreenSaver, so we must kill it to get it to load the +# new versions. +# +pid=`ps -Ac -o pid,comm | grep legacyScreenSaver | \ + sed -e 's/^ *//' -e 's/ .*//'` +if [ ! -z "$pid" ]; then + kill $pid # Sometimes it will not die. + ( sleep 5 ; kill -9 $pid ) & +fi + + # Launch the updater so that the user gets these dialogs now, instead of them # happening the first time a screen saver activates, and that screen saver # failing to run and showing up black. (I'm not sure if this is working.) @@ -196,6 +209,16 @@ su "$USER" -c "open \"$DST1/$UPDATER_DST\"" & sleep 5 +# If System Preferences is running, it might have old saver bundles loaded +# into it. Kill it so we pick up the new ones. +# +pid=`ps -Ac -o pid,comm | grep 'System Settings' | \ + sed -e 's/^ *//' -e 's/ .*//'` +if [ ! -z "$pid" ]; then + kill $pid +fi + + # Launch System Preferences with the "Desktop" pane selected. In the olden # days, this was a single pane with two tabs, "Desktop" and "Screen Saver", # and it would always come up with "Desktop" selected. As of macOS 13, these diff --git a/OSX/nslog.h b/OSX/nslog.h new file mode 100644 index 00000000..424a081d --- /dev/null +++ b/OSX/nslog.h @@ -0,0 +1,52 @@ +/* xscreensaver, Copyright © 2023 Jamie Zawinski <jwz@jwz.org> + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation. No representations are made about the suitability of this + * software for any purpose. It is provided "as is" without express or + * implied warranty. + */ + +#ifndef __XSCREENSAVER_NSLOG__ +#define __XSCREENSAVER_NSLOG__ + +#ifndef HAVE_IPHONE + +/* WTF! On macOS 14.0, NSLog "%.02f" prints like "1,234.0000" + But both sprintf and stringWithFormat work correctly! + */ +static void +xscreensaver_nslog (NSString *format, ...) +{ + va_list args; + va_start (args, format); + va_end (args); + NSString *s = [[NSString alloc] initWithFormat:format arguments:args]; + NSLog (@"%@", s); + +# if 0 + // Debugging legacyScreenSaver without the /usr/bin/log quagmire. + NSDateFormatter *f = [[NSDateFormatter alloc] init]; + [f setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; + NSString *date = [f stringFromDate: [NSDate date]]; + s = [NSString stringWithFormat:@"%@ %@\n", date, s]; + NSString *file = @"/tmp/log.txt"; + NSFileHandle *out = [NSFileHandle fileHandleForWritingAtPath: file]; + if (! out) { + [[NSFileManager defaultManager] createFileAtPath:file + contents:nil attributes:nil]; + out = [NSFileHandle fileHandleForWritingAtPath: file]; + // if (!out) abort(); + } + [out seekToEndOfFile]; + [out writeData: [s dataUsingEncoding:NSUTF8StringEncoding]]; + [out closeFile]; +# endif // 0 +} + +#define NSLog xscreensaver_nslog + +#endif // HAVE_IPHONE +#endif // __XSCREENSAVER_NSLOG__ diff --git a/OSX/sparkle-bin/BinaryDelta b/OSX/sparkle-bin/BinaryDelta index 2030fabb..2625c625 100755 Binary files a/OSX/sparkle-bin/BinaryDelta and b/OSX/sparkle-bin/BinaryDelta differ diff --git a/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Info.plist b/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Info.plist deleted file mode 100644 index 325809b9..00000000 --- a/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> - <dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleIdentifier</key> - <string>com.apple.xcode.dsym.BinaryDelta</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>dSYM</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleShortVersionString</key> - <string>1.0</string> - <key>CFBundleVersion</key> - <string>1</string> - </dict> -</plist> diff --git a/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Resources/DWARF/BinaryDelta b/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Resources/DWARF/BinaryDelta deleted file mode 100644 index 5d618ccf..00000000 Binary files a/OSX/sparkle-bin/BinaryDelta.dSYM/Contents/Resources/DWARF/BinaryDelta and /dev/null differ diff --git a/OSX/sparkle-bin/generate_appcast b/OSX/sparkle-bin/generate_appcast index 13c6e424..8284108d 100755 Binary files a/OSX/sparkle-bin/generate_appcast and b/OSX/sparkle-bin/generate_appcast differ diff --git a/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Info.plist b/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Info.plist deleted file mode 100644 index 85e47831..00000000 --- a/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> - <dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleIdentifier</key> - <string>com.apple.xcode.dsym.generate_appcast</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>dSYM</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleShortVersionString</key> - <string>1.0</string> - <key>CFBundleVersion</key> - <string>1</string> - </dict> -</plist> diff --git a/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Resources/DWARF/generate_appcast b/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Resources/DWARF/generate_appcast deleted file mode 100644 index 1d5602e4..00000000 Binary files a/OSX/sparkle-bin/generate_appcast.dSYM/Contents/Resources/DWARF/generate_appcast and /dev/null differ diff --git a/OSX/sparkle-bin/generate_keys b/OSX/sparkle-bin/generate_keys index 66f66979..4d776af1 100755 Binary files a/OSX/sparkle-bin/generate_keys and b/OSX/sparkle-bin/generate_keys differ diff --git a/OSX/sparkle-bin/generate_keys.dSYM/Contents/Info.plist b/OSX/sparkle-bin/generate_keys.dSYM/Contents/Info.plist deleted file mode 100644 index 3caf8909..00000000 --- a/OSX/sparkle-bin/generate_keys.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> - <dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleIdentifier</key> - <string>com.apple.xcode.dsym.generate_keys</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>dSYM</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleShortVersionString</key> - <string>1.0</string> - <key>CFBundleVersion</key> - <string>1</string> - </dict> -</plist> diff --git a/OSX/sparkle-bin/generate_keys.dSYM/Contents/Resources/DWARF/generate_keys b/OSX/sparkle-bin/generate_keys.dSYM/Contents/Resources/DWARF/generate_keys deleted file mode 100644 index 022323cc..00000000 Binary files a/OSX/sparkle-bin/generate_keys.dSYM/Contents/Resources/DWARF/generate_keys and /dev/null differ diff --git a/OSX/sparkle-bin/sign_update b/OSX/sparkle-bin/sign_update index 359668fa..90bd66bd 100755 Binary files a/OSX/sparkle-bin/sign_update and b/OSX/sparkle-bin/sign_update differ diff --git a/OSX/sparkle-bin/sign_update.dSYM/Contents/Info.plist b/OSX/sparkle-bin/sign_update.dSYM/Contents/Info.plist deleted file mode 100644 index 07393896..00000000 --- a/OSX/sparkle-bin/sign_update.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> - <dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleIdentifier</key> - <string>com.apple.xcode.dsym.sign_update</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>dSYM</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleShortVersionString</key> - <string>1.0</string> - <key>CFBundleVersion</key> - <string>1</string> - </dict> -</plist> diff --git a/OSX/sparkle-bin/sign_update.dSYM/Contents/Resources/DWARF/sign_update b/OSX/sparkle-bin/sign_update.dSYM/Contents/Resources/DWARF/sign_update deleted file mode 100644 index 2437f8aa..00000000 Binary files a/OSX/sparkle-bin/sign_update.dSYM/Contents/Resources/DWARF/sign_update and /dev/null differ diff --git a/OSX/tvSaverRunner.plist b/OSX/tvSaverRunner.plist index 0178ac33..ddf54710 100644 --- a/OSX/tvSaverRunner.plist +++ b/OSX/tvSaverRunner.plist @@ -17,17 +17,17 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>6.07</string> + <string>6.08</string> <key>LSApplicationCategoryType</key> <string>public.app-category.entertainment</string> <key>CFBundleShortVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleLongVersionString</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleGetInfoString</key> - <string>6.07</string> + <string>6.08</string> <key>NSHumanReadableCopyright</key> - <string>6.07</string> + <string>6.08</string> <key>CFBundleDisplayName</key> <string>${PRODUCT_NAME}</string> <key>CFBundleIcons</key> diff --git a/OSX/update-info-plist.pl b/OSX/update-info-plist.pl index b709b082..ccb86a2c 100755 --- a/OSX/update-info-plist.pl +++ b/OSX/update-info-plist.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright © 2006-2021 Jamie Zawinski <jwz@jwz.org> +# Copyright © 2006-2023 Jamie Zawinski <jwz@jwz.org> # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that @@ -27,7 +27,7 @@ use IO::Compress::Gzip qw(gzip $GzipError); my ($exec_dir, $progname) = ($0 =~ m@^(.*?)/([^/]+)$@); -my ($version) = ('$Revision: 1.57 $' =~ m/\s(\d[.\d]+)\s/s); +my ($version) = ('$Revision: 1.58 $' =~ m/\s(\d[.\d]+)\s/s); $ENV{PATH} = "/usr/local/bin:$ENV{PATH}"; # for seticon $ENV{PATH} = "/opt/local/bin:$ENV{PATH}"; # for macports wget @@ -234,6 +234,18 @@ sub update_saver_xml($$) { # so we convert these to UTF8 when embedding them in the .saver bundle. $body =~ s@encoding="ISO-8859-1"@encoding="UTF-8"@gsi; + # Make sure "xscreensaver-text" is included if and only if the XML + # contains "<xscreensaver-text>". + # + my $text_p = ($body =~ m/<xscreensaver-text/s); + my $image_p = ($body =~ m/<xscreensaver-image/s); + my $textf = "$app_dir/Contents/Resources/xscreensaver-text"; + my $imagef = "$app_dir/Contents/Resources/xscreensaver-getimage-file"; + error ($text_p ? "$textf does not exist" : "$textf should not exist") + if (!!$text_p != !!(-f $textf)); + error ($image_p ? "$imagef does not exist" : "$imagef should not exist") + if (!!$image_p != !!(-f $imagef)); + if ($obody eq $body && $was_compressed_p) { print STDERR "$progname: $filename: unchanged\n" if ($verbose > 1); } else { diff --git a/OSX/updates.xml b/OSX/updates.xml index 7cf63b3e..0a5df4b2 100644 --- a/OSX/updates.xml +++ b/OSX/updates.xml @@ -7,6 +7,17 @@ <link>https://www.jwz.org/xscreensaver/updates.xml</link> <description>Updates to xscreensaver.</description> <language>en</language> + <item> + <title>Version 6.08 + https://www.jwz.org/xscreensaver/xscreensaver-6.08.dmg + • Upgraded Sparkle (the "Check for Updates" library) for macOS 14.0 compatibility.]]> + Tue, 10 Oct 2023 17:34:41 -0700 + + Version 6.07 https://www.jwz.org/xscreensaver/xscreensaver-6.07.dmg @@ -29,16 +40,5 @@ length="80828727" type="application/octet-stream" /> - - Version 6.04 - https://www.jwz.org/xscreensaver/xscreensaver-6.04.dmg - • Settings dialog shows diagnostics for bad image folders and feeds.
• URLs for `imageDirectory' can now point at archive.org collections.
• Sliders for various "Speed" preferences are easier to use.
• Updated `webcollage'.]]>
- Sun, 29 May 2022 12:37:00 -0700 - -
diff --git a/OSX/xscreensaver.xcodeproj/project.pbxproj b/OSX/xscreensaver.xcodeproj/project.pbxproj index c899b45b..6347be51 100644 --- a/OSX/xscreensaver.xcodeproj/project.pbxproj +++ b/OSX/xscreensaver.xcodeproj/project.pbxproj @@ -2775,6 +2775,7 @@ AF75110B1782B5B900380EA1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; AF75110C1782B5B900380EA1 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF48112B0990A2C700FB32B8 /* Carbon.framework */; }; AF7511151782B64300380EA1 /* kaleidocycle.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7511141782B64300380EA1 /* kaleidocycle.c */; }; + AF7602542A9FBD7800460454 /* xscreensaver-getimage-file in Resources */ = {isa = PBXBuildFile; fileRef = AF0FAF1209CA712600EE1051 /* xscreensaver-getimage-file */; }; AF7776EA09B63ABF00EA3033 /* XScreenSaverSubclass.m in Sources */ = {isa = PBXBuildFile; fileRef = AF9CC7A0099580E70075E99B /* XScreenSaverSubclass.m */; }; AF77770209B63B3900EA3033 /* phosphor.xml in Resources */ = {isa = PBXBuildFile; fileRef = AFC258F30988A469000655EE /* phosphor.xml */; }; AF77770409B63B5F00EA3033 /* phosphor.c in Sources */ = {isa = PBXBuildFile; fileRef = AF77770309B63B5F00EA3033 /* phosphor.c */; }; @@ -8864,7 +8865,6 @@ AF3582211433318500E09C51 /* tronbit.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = tronbit.xml; sourceTree = ""; }; AF35E8A00E63823600691F2F /* Jigsaw.saver */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Jigsaw.saver; sourceTree = BUILT_PRODUCTS_DIR; }; AF35EB250E6382BA00691F2F /* jigsaw.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; name = jigsaw.c; path = hacks/glx/jigsaw.c; sourceTree = ""; }; - AF3633F918530DD90086A439 /* sparkle_dsa_pub.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sparkle_dsa_pub.pem; sourceTree = ""; }; AF3633FA18530DD90086A439 /* Updater.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Updater.h; sourceTree = ""; }; AF3633FB18530DD90086A439 /* Updater.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Updater.m; sourceTree = ""; }; AF3633FE18530DFF0086A439 /* Updater.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Updater.plist; sourceTree = ""; }; @@ -14301,7 +14301,6 @@ AF1AD9E818500FA000932759 /* Updater */ = { isa = PBXGroup; children = ( - AF3633F918530DD90086A439 /* sparkle_dsa_pub.pem */, AF3633FA18530DD90086A439 /* Updater.h */, AF3633FB18530DD90086A439 /* Updater.m */, AF3633FE18530DFF0086A439 /* Updater.plist */, @@ -15206,7 +15205,6 @@ AF08399209930B6B00277BE9 /* Resources */, AF08399409930B6B00277BE9 /* Sources */, AF08399709930B6B00277BE9 /* Frameworks */, - AF08399E09930B6B00277BE9 /* Rez */, AFA3D95309C03D9800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15226,7 +15224,6 @@ AF083A35099311D700277BE9 /* Resources */, AF083A37099311D700277BE9 /* Sources */, AF083A3D099311D700277BE9 /* Frameworks */, - AF083A44099311D700277BE9 /* Rez */, AFA3D95509C03D9C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15246,7 +15243,6 @@ AF0BF6D029456B2E000D9473 /* Resources */, AF0BF6D229456B2E000D9473 /* Sources */, AF0BF6D529456B2E000D9473 /* Frameworks */, - AF0BF6DD29456B2E000D9473 /* Rez */, AF0BF6DE29456B2E000D9473 /* Run Update Info Plist */, ); buildRules = ( @@ -15266,7 +15262,6 @@ AF0DC7AE0C4C73F600D76972 /* Resources */, AF0DC7B00C4C73F600D76972 /* Sources */, AF0DC7B40C4C73F600D76972 /* Frameworks */, - AF0DC7B80C4C73F600D76972 /* Rez */, AF0DC7B90C4C73F600D76972 /* Run Update Info Plist */, ); buildRules = ( @@ -15287,7 +15282,6 @@ AF0DCA450C4CBB0D00D76972 /* Resources */, AF0DCA470C4CBB0D00D76972 /* Sources */, AF0DCA4A0C4CBB0D00D76972 /* Frameworks */, - AF0DCA510C4CBB0D00D76972 /* Rez */, AF0DCA520C4CBB0D00D76972 /* Run Update Info Plist */, ); buildRules = ( @@ -15307,7 +15301,6 @@ AF1A17640D6D6EE3008AF328 /* Resources */, AF1A17670D6D6EE3008AF328 /* Sources */, AF1A176A0D6D6EE3008AF328 /* Frameworks */, - AF1A176E0D6D6EE3008AF328 /* Rez */, AF1A176F0D6D6EE3008AF328 /* Run Update Info Plist */, ); buildRules = ( @@ -15347,7 +15340,6 @@ AF1B0FAA1D7AB4740011DBE4 /* Resources */, AF1B0FAC1D7AB4740011DBE4 /* Sources */, AF1B0FAF1D7AB4740011DBE4 /* Frameworks */, - AF1B0FB71D7AB4740011DBE4 /* Rez */, AF1B0FB81D7AB4740011DBE4 /* Run Update Info Plist */, ); buildRules = ( @@ -15367,7 +15359,6 @@ AF2107741FD23BDD00B61EA9 /* Resources */, AF2107761FD23BDD00B61EA9 /* Sources */, AF2107791FD23BDD00B61EA9 /* Frameworks */, - AF2107811FD23BDD00B61EA9 /* Rez */, AF2107821FD23BDD00B61EA9 /* Run Update Info Plist */, ); buildRules = ( @@ -15387,7 +15378,6 @@ AF296A582A5A776D007441BF /* Resources */, AF296A5A2A5A776D007441BF /* Sources */, AF296A5D2A5A776D007441BF /* Frameworks */, - AF296A652A5A776D007441BF /* Rez */, AF296A662A5A776D007441BF /* Run Update Info Plist */, ); buildRules = ( @@ -15407,7 +15397,6 @@ AF2A634428401496003791B4 /* Resources */, AF2A634628401496003791B4 /* Sources */, AF2A634928401496003791B4 /* Frameworks */, - AF2A635128401496003791B4 /* Rez */, AF2A635228401496003791B4 /* Run Update Info Plist */, ); buildRules = ( @@ -15427,7 +15416,6 @@ AF2D0D28241D7C870001D8B8 /* Resources */, AF2D0D2A241D7C870001D8B8 /* Sources */, AF2D0D2D241D7C870001D8B8 /* Frameworks */, - AF2D0D35241D7C870001D8B8 /* Rez */, AF2D0D36241D7C870001D8B8 /* Run Update Info Plist */, ); buildRules = ( @@ -15447,7 +15435,6 @@ AF32D9E30F3AD0B40080F535 /* Resources */, AF32D9E50F3AD0B40080F535 /* Sources */, AF32D9E80F3AD0B40080F535 /* Frameworks */, - AF32D9EF0F3AD0B40080F535 /* Rez */, AF32D9F00F3AD0B40080F535 /* Run Update Info Plist */, ); buildRules = ( @@ -15467,7 +15454,6 @@ AF3581C21431D47B00E09C51 /* Resources */, AF3581C51431D47B00E09C51 /* Sources */, AF3581C91431D47B00E09C51 /* Frameworks */, - AF3581D01431D47B00E09C51 /* Rez */, AF3581D11431D47B00E09C51 /* Run Update Info Plist */, ); buildRules = ( @@ -15487,7 +15473,6 @@ AF3581FE143330F900E09C51 /* Resources */, AF358202143330F900E09C51 /* Sources */, AF35820A143330F900E09C51 /* Frameworks */, - AF358211143330F900E09C51 /* Rez */, AF358212143330F900E09C51 /* Run Update Info Plist */, ); buildRules = ( @@ -15507,7 +15492,6 @@ AF35E88D0E63823600691F2F /* Resources */, AF35E88F0E63823600691F2F /* Sources */, AF35E8940E63823600691F2F /* Frameworks */, - AF35E89B0E63823600691F2F /* Rez */, AF35E89C0E63823600691F2F /* Run Update Info Plist */, ); buildRules = ( @@ -15527,7 +15511,6 @@ AF39381D1D0FBD6A00205406 /* Resources */, AF39381F1D0FBD6A00205406 /* Sources */, AF3938221D0FBD6A00205406 /* Frameworks */, - AF39382A1D0FBD6A00205406 /* Rez */, AF39382B1D0FBD6A00205406 /* Run Update Info Plist */, ); buildRules = ( @@ -15547,7 +15530,6 @@ AF39E285198A11F60064A58D /* Resources */, AF39E287198A11F60064A58D /* Sources */, AF39E28A198A11F60064A58D /* Frameworks */, - AF39E291198A11F60064A58D /* Rez */, AF39E292198A11F60064A58D /* Run Update Info Plist */, ); buildRules = ( @@ -15567,7 +15549,6 @@ AF3C71480D624BF50030CC0D /* Resources */, AF3C714A0D624BF50030CC0D /* Sources */, AF3C714D0D624BF50030CC0D /* Frameworks */, - AF3C71540D624BF50030CC0D /* Rez */, AF3C71550D624BF50030CC0D /* Run Update Info Plist */, ); buildRules = ( @@ -15587,7 +15568,6 @@ AF3EC97B2035154C00180A35 /* Resources */, AF3EC97D2035154C00180A35 /* Sources */, AF3EC9802035154C00180A35 /* Frameworks */, - AF3EC9882035154C00180A35 /* Rez */, AF3EC9892035154C00180A35 /* Run Update Info Plist */, ); buildRules = ( @@ -15607,7 +15587,6 @@ AF41E955201D49DB0098E253 /* Resources */, AF41E957201D49DB0098E253 /* Sources */, AF41E95A201D49DB0098E253 /* Frameworks */, - AF41E962201D49DB0098E253 /* Rez */, AF41E963201D49DB0098E253 /* Run Update Info Plist */, ); buildRules = ( @@ -15627,7 +15606,6 @@ AF4363FF241D84CE00966603 /* Resources */, AF436401241D84CE00966603 /* Sources */, AF436404241D84CE00966603 /* Frameworks */, - AF43640C241D84CE00966603 /* Rez */, AF43640D241D84CE00966603 /* Run Update Info Plist */, ); buildRules = ( @@ -15647,7 +15625,6 @@ AF46E9D21CBBA2B300240FBC /* Resources */, AF46E9D41CBBA2B300240FBC /* Sources */, AF46E9D71CBBA2B300240FBC /* Frameworks */, - AF46E9DF1CBBA2B300240FBC /* Rez */, AF46E9E01CBBA2B300240FBC /* Run Update Info Plist */, ); buildRules = ( @@ -15667,7 +15644,6 @@ AF476FB8099D154F001F091E /* Resources */, AF476FBB099D154F001F091E /* Sources */, AF476FBE099D154F001F091E /* Frameworks */, - AF476FC2099D154F001F091E /* Rez */, AFA3D89509C03C4400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15687,7 +15663,6 @@ AF476FDD099D1686001F091E /* Resources */, AF476FE0099D1686001F091E /* Sources */, AF476FE3099D1686001F091E /* Frameworks */, - AF476FE7099D1686001F091E /* Rez */, AFA3D8E309C03CCA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15707,7 +15682,6 @@ AF47704F099D4385001F091E /* Resources */, AF477051099D4385001F091E /* Sources */, AF477054099D4385001F091E /* Frameworks */, - AF477058099D4385001F091E /* Rez */, AFA3D86F09C03BF700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15727,7 +15701,6 @@ AF47716C099D4786001F091E /* Resources */, AF47716E099D4786001F091E /* Sources */, AF477171099D4786001F091E /* Frameworks */, - AF477175099D4786001F091E /* Rez */, AFA3D86309C03BE200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15747,7 +15720,6 @@ AF477182099D4803001F091E /* Resources */, AF477184099D4803001F091E /* Sources */, AF477187099D4803001F091E /* Frameworks */, - AF47718B099D4803001F091E /* Rez */, AFA3D8E909C03CD500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15767,7 +15739,6 @@ AF4771AA099D4949001F091E /* Resources */, AF4771AC099D4949001F091E /* Sources */, AF4771AF099D4949001F091E /* Frameworks */, - AF4771B3099D4949001F091E /* Rez */, AFA3D8E109C03CC400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15787,7 +15758,6 @@ AF4771DE099D4D9A001F091E /* Resources */, AF4771E0099D4D9A001F091E /* Sources */, AF4771E3099D4D9A001F091E /* Frameworks */, - AF4771E7099D4D9A001F091E /* Rez */, AFA3D85D09C03BD700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15807,7 +15777,6 @@ AF4771F5099D4E63001F091E /* Resources */, AF4771F7099D4E63001F091E /* Sources */, AF4771FA099D4E63001F091E /* Frameworks */, - AF4771FE099D4E63001F091E /* Rez */, AFA3D8AF09C03C7300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15827,7 +15796,6 @@ AF47720B099D4EE8001F091E /* Resources */, AF47720D099D4EE8001F091E /* Sources */, AF477210099D4EE8001F091E /* Frameworks */, - AF477214099D4EE8001F091E /* Rez */, AFA3D8ED09C03CDB00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15847,7 +15815,6 @@ AF477221099D4F67001F091E /* Resources */, AF477223099D4F67001F091E /* Sources */, AF477226099D4F67001F091E /* Frameworks */, - AF47722A099D4F67001F091E /* Rez */, AFCCCBB509C033DF00353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -15867,7 +15834,6 @@ AF477256099D5717001F091E /* Resources */, AF477258099D5717001F091E /* Sources */, AF47725B099D5717001F091E /* Frameworks */, - AF47725F099D5717001F091E /* Rez */, AFA3D88509C03C2700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15887,7 +15853,6 @@ AF47726E099D57B9001F091E /* Resources */, AF477270099D57B9001F091E /* Sources */, AF477273099D57B9001F091E /* Frameworks */, - AF477277099D57B9001F091E /* Rez */, AFA3D8BF09C03C8D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15907,7 +15872,6 @@ AF477286099D5926001F091E /* Resources */, AF477288099D5926001F091E /* Sources */, AF47728B099D5926001F091E /* Frameworks */, - AF47728F099D5926001F091E /* Rez */, AFA3D8BB09C03C8600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15927,7 +15891,6 @@ AF477385099D65A1001F091E /* Resources */, AF477387099D65A1001F091E /* Sources */, AF47738A099D65A1001F091E /* Frameworks */, - AF47738E099D65A1001F091E /* Rez */, AFA3D8EF09C03CDE00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15947,7 +15910,6 @@ AF47739D099D6648001F091E /* Resources */, AF47739F099D6648001F091E /* Sources */, AF4773A2099D6648001F091E /* Frameworks */, - AF4773A6099D6648001F091E /* Rez */, AFA3D87F09C03C1E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -15967,7 +15929,6 @@ AF4773C4099D67B9001F091E /* Resources */, AF4773C6099D67B9001F091E /* Sources */, AF4773C9099D67B9001F091E /* Frameworks */, - AF4773CD099D67B9001F091E /* Rez */, AFCCCBC709C03AAF00353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -15987,7 +15948,6 @@ AF477404099D69E7001F091E /* Resources */, AF477407099D69E7001F091E /* Sources */, AF47740A099D69E7001F091E /* Frameworks */, - AF47740E099D69E7001F091E /* Rez */, AFA3D89709C03C4700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16007,7 +15967,6 @@ AF477429099D7C70001F091E /* Resources */, AF47742C099D7C70001F091E /* Sources */, AF47742F099D7C70001F091E /* Frameworks */, - AF477433099D7C70001F091E /* Rez */, AFA3D88F09C03C3900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16027,7 +15986,6 @@ AF477445099D7D33001F091E /* Resources */, AF477447099D7D33001F091E /* Sources */, AF47744A099D7D33001F091E /* Frameworks */, - AF47744E099D7D33001F091E /* Rez */, AFA3D8F909C03CED00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16047,7 +16005,6 @@ AF477486099D89E4001F091E /* Resources */, AF477488099D89E4001F091E /* Sources */, AF47748B099D89E4001F091E /* Frameworks */, - AF47748F099D89E4001F091E /* Rez */, AFA3D87909C03C1200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16067,7 +16024,6 @@ AF47749C099D8A74001F091E /* Resources */, AF47749E099D8A74001F091E /* Sources */, AF4774A1099D8A74001F091E /* Frameworks */, - AF4774A5099D8A74001F091E /* Rez */, AFA3D89B09C03C4D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16087,7 +16043,6 @@ AF4774B7099D8B5F001F091E /* Resources */, AF4774B9099D8B5F001F091E /* Sources */, AF4774BC099D8B5F001F091E /* Frameworks */, - AF4774C0099D8B5F001F091E /* Rez */, AFA3D89F09C03C5300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16107,7 +16062,6 @@ AF4774D1099D8BFF001F091E /* Resources */, AF4774D3099D8BFF001F091E /* Sources */, AF4774D6099D8BFF001F091E /* Frameworks */, - AF4774DA099D8BFF001F091E /* Rez */, AFA3D8A109C03C5600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16127,7 +16081,6 @@ AF477560099D9A1A001F091E /* Resources */, AF477562099D9A1A001F091E /* Sources */, AF477565099D9A1A001F091E /* Frameworks */, - AF477569099D9A1A001F091E /* Rez */, AFA3D8B309C03C7900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16147,7 +16100,6 @@ AF477586099D9C28001F091E /* Resources */, AF477588099D9C28001F091E /* Sources */, AF47758B099D9C28001F091E /* Frameworks */, - AF47758F099D9C28001F091E /* Rez */, AFA3D8C109C03C9000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16167,7 +16119,6 @@ AF4775A2099D9CF7001F091E /* Resources */, AF4775A4099D9CF7001F091E /* Sources */, AF4775A7099D9CF7001F091E /* Frameworks */, - AF4775AB099D9CF7001F091E /* Rez */, AFA3D8DD09C03CBD00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16187,7 +16138,6 @@ AF4775DB099D9F69001F091E /* Resources */, AF4775DD099D9F69001F091E /* Sources */, AF4775E0099D9F69001F091E /* Frameworks */, - AF4775E4099D9F69001F091E /* Rez */, AFA3D86509C03BE500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16207,7 +16157,6 @@ AF4775F5099DA030001F091E /* Resources */, AF4775F7099DA030001F091E /* Sources */, AF4775FA099DA030001F091E /* Frameworks */, - AF4775FE099DA030001F091E /* Rez */, AFA3D87309C03C0000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16227,7 +16176,6 @@ AF477616099DA26C001F091E /* Resources */, AF477618099DA26C001F091E /* Sources */, AF47761B099DA26C001F091E /* Frameworks */, - AF47761F099DA26C001F091E /* Rez */, AFA3D89D09C03C5000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16247,7 +16195,6 @@ AF477647099DA6D0001F091E /* Resources */, AF477649099DA6D0001F091E /* Sources */, AF47764C099DA6D0001F091E /* Frameworks */, - AF477650099DA6D0001F091E /* Rez */, AFA3D8DB09C03CBA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16267,7 +16214,6 @@ AF47765D099DA78E001F091E /* Resources */, AF47765F099DA78E001F091E /* Sources */, AF477662099DA78E001F091E /* Frameworks */, - AF477666099DA78E001F091E /* Rez */, AFA3D86709C03BE800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16287,7 +16233,6 @@ AF477673099DA849001F091E /* Resources */, AF477675099DA849001F091E /* Sources */, AF477678099DA849001F091E /* Frameworks */, - AF47767C099DA849001F091E /* Rez */, AFA3D8B709C03C7F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16307,7 +16252,6 @@ AF477692099DAA6F001F091E /* Resources */, AF477694099DAA6F001F091E /* Sources */, AF477697099DAA6F001F091E /* Frameworks */, - AF47769B099DAA6F001F091E /* Rez */, AFCCCBD109C03AFC00353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -16327,7 +16271,6 @@ AF4776AD099DABDD001F091E /* Resources */, AF4776AF099DABDD001F091E /* Sources */, AF4776B2099DABDD001F091E /* Frameworks */, - AF4776B6099DABDD001F091E /* Rez */, AFA3D8FD09C03CF400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16347,7 +16290,6 @@ AF4776C3099DAC8A001F091E /* Resources */, AF4776C5099DAC8A001F091E /* Sources */, AF4776C8099DAC8A001F091E /* Frameworks */, - AF4776CC099DAC8A001F091E /* Rez */, AFA3D8FB09C03CF100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16367,7 +16309,6 @@ AF4776DE099DADDF001F091E /* Resources */, AF4776E0099DADDF001F091E /* Sources */, AF4776E3099DADDF001F091E /* Frameworks */, - AF4776E7099DADDF001F091E /* Rez */, AFA3D8EB09C03CD800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16387,7 +16328,6 @@ AF4776F4099DAE7A001F091E /* Resources */, AF4776F6099DAE7A001F091E /* Sources */, AF4776F9099DAE7A001F091E /* Frameworks */, - AF4776FD099DAE7A001F091E /* Rez */, AFA3D8E709C03CD100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16407,7 +16347,6 @@ AF477710099DAF9F001F091E /* Resources */, AF477712099DAF9F001F091E /* Sources */, AF477715099DAF9F001F091E /* Frameworks */, - AF477719099DAF9F001F091E /* Rez */, AFA3D86109C03BDE00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16427,7 +16366,6 @@ AF477726099DB044001F091E /* Resources */, AF477728099DB044001F091E /* Sources */, AF47772B099DB044001F091E /* Frameworks */, - AF47772F099DB044001F091E /* Rez */, AFA3D8DF09C03CC000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16447,7 +16385,6 @@ AF477755099DB61E001F091E /* Resources */, AF477757099DB61E001F091E /* Sources */, AF47775A099DB61E001F091E /* Frameworks */, - AF47775E099DB61E001F091E /* Rez */, AFA3D89309C03C4000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16467,7 +16404,6 @@ AF477777099DB965001F091E /* Resources */, AF477779099DB965001F091E /* Sources */, AF47777C099DB965001F091E /* Frameworks */, - AF477780099DB965001F091E /* Rez */, AFA3D85F09C03BDA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16487,7 +16423,6 @@ AF477793099DBA90001F091E /* Resources */, AF477795099DBA90001F091E /* Sources */, AF477798099DBA90001F091E /* Frameworks */, - AF47779C099DBA90001F091E /* Rez */, AFA3D87B09C03C1700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16507,7 +16442,6 @@ AF4777D4099DC183001F091E /* Resources */, AF4777D6099DC183001F091E /* Sources */, AF4777D9099DC183001F091E /* Frameworks */, - AF4777DD099DC183001F091E /* Rez */, AFCCCBD509C03B0500353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -16527,7 +16461,6 @@ AF4778AE099DDB79001F091E /* Resources */, AF4778B0099DDB79001F091E /* Sources */, AF4778B3099DDB79001F091E /* Frameworks */, - AF4778B7099DDB79001F091E /* Rez */, AFA3D8B509C03C7C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16547,7 +16480,6 @@ AF4778CA099DDCAE001F091E /* Resources */, AF4778CC099DDCAE001F091E /* Sources */, AF4778CF099DDCAE001F091E /* Frameworks */, - AF4778D3099DDCAE001F091E /* Rez */, AFA3D8F509C03CE800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16567,7 +16499,6 @@ AF4778EB099DDDC8001F091E /* Resources */, AF4778ED099DDDC8001F091E /* Sources */, AF4778F0099DDDC8001F091E /* Frameworks */, - AF4778F4099DDDC8001F091E /* Rez */, AFA3D86909C03BEC00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16587,7 +16518,6 @@ AF47790C099DE379001F091E /* Resources */, AF47790E099DE379001F091E /* Sources */, AF477911099DE379001F091E /* Frameworks */, - AF477915099DE379001F091E /* Rez */, AFA3D91709C03D2400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16607,7 +16537,6 @@ AF47792D099DE4C7001F091E /* Resources */, AF47792F099DE4C7001F091E /* Sources */, AF477932099DE4C7001F091E /* Frameworks */, - AF477936099DE4C7001F091E /* Rez */, AFA3D8D309C03CAE00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16645,7 +16574,6 @@ AF480C4C098E301400FB32B8 /* Resources */, AF480C4E098E301400FB32B8 /* Sources */, AF480C50098E301400FB32B8 /* Frameworks */, - AF480C54098E301400FB32B8 /* Rez */, AFA3D88909C03C2E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16665,7 +16593,6 @@ AF480D75098EEDDE00FB32B8 /* Resources */, AF480D77098EEDDE00FB32B8 /* Sources */, AF480D79098EEDDE00FB32B8 /* Frameworks */, - AF480D7D098EEDDE00FB32B8 /* Rez */, AFA3D90F09C03D1800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16685,7 +16612,6 @@ AF4810EE09909FBA00FB32B8 /* Resources */, AF4810F009909FBA00FB32B8 /* Sources */, AF4810F309909FBA00FB32B8 /* Frameworks */, - AF4810F709909FBA00FB32B8 /* Rez */, AFA3D97109C03DD000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16705,7 +16631,6 @@ AF4812530990CE2700FB32B8 /* Resources */, AF4812550990CE2700FB32B8 /* Sources */, AF4812590990CE2700FB32B8 /* Frameworks */, - AF4812600990CE2700FB32B8 /* Rez */, AFA3D98309C03DEE00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16725,7 +16650,6 @@ AF4812B60990D3D900FB32B8 /* Resources */, AF4812B80990D3D900FB32B8 /* Sources */, AF4812BB0990D3D900FB32B8 /* Frameworks */, - AF4812C20990D3D900FB32B8 /* Rez */, AFA3D9B509C03E5700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -16745,7 +16669,6 @@ AF48DEF20A0C25E000F94CF9 /* Resources */, AF48DEF40A0C25E000F94CF9 /* Sources */, AF48DEF70A0C25E000F94CF9 /* Frameworks */, - AF48DEFE0A0C25E000F94CF9 /* Rez */, AF48DEFF0A0C25E000F94CF9 /* Run Update Info Plist */, ); buildRules = ( @@ -16765,7 +16688,6 @@ AF4A344C102A593600A81B2A /* Resources */, AF4A344E102A593600A81B2A /* Sources */, AF4A3451102A593600A81B2A /* Frameworks */, - AF4A3458102A593600A81B2A /* Rez */, AF4A3459102A593600A81B2A /* Run Update Info Plist */, ); buildRules = ( @@ -16785,7 +16707,6 @@ AF4FD6E90CE7A486005EE58E /* Resources */, AF4FD6EB0CE7A486005EE58E /* Sources */, AF4FD6EE0CE7A486005EE58E /* Frameworks */, - AF4FD6F50CE7A486005EE58E /* Rez */, AF4FD6F60CE7A486005EE58E /* Run Update Info Plist */, ); buildRules = ( @@ -16805,7 +16726,6 @@ AF4FF4BD0D52CBDE00666F98 /* Resources */, AF4FF4BF0D52CBDE00666F98 /* Sources */, AF4FF4C20D52CBDE00666F98 /* Frameworks */, - AF4FF4C90D52CBDE00666F98 /* Rez */, AF4FF4CA0D52CBDE00666F98 /* Run Update Info Plist */, ); buildRules = ( @@ -16849,7 +16769,6 @@ AF5C9AFC1A0CCE6E00B0147A /* Resources */, AF5C9AFE1A0CCE6E00B0147A /* Sources */, AF5C9B011A0CCE6E00B0147A /* Frameworks */, - AF5C9B081A0CCE6E00B0147A /* Rez */, AF5C9B091A0CCE6E00B0147A /* Run Update Info Plist */, ); buildRules = ( @@ -16869,7 +16788,6 @@ AF5ECEAC2116B1A400069433 /* Resources */, AF5ECEAF2116B1A400069433 /* Sources */, AF5ECEB32116B1A400069433 /* Frameworks */, - AF5ECEBB2116B1A400069433 /* Rez */, AF5ECEBC2116B1A400069433 /* Run Update Info Plist */, ); buildRules = ( @@ -16889,7 +16807,6 @@ AF62D61B2180070600C57C42 /* Resources */, AF62D61D2180070600C57C42 /* Sources */, AF62D6202180070600C57C42 /* Frameworks */, - AF62D6282180070600C57C42 /* Rez */, AF62D6292180070600C57C42 /* Run Update Info Plist */, ); buildRules = ( @@ -16909,7 +16826,6 @@ AF633C041EE0BA6F00AB33BD /* Resources */, AF633C061EE0BA6F00AB33BD /* Sources */, AF633C091EE0BA6F00AB33BD /* Frameworks */, - AF633C111EE0BA6F00AB33BD /* Rez */, AF633C121EE0BA6F00AB33BD /* Run Update Info Plist */, ); buildRules = ( @@ -16929,7 +16845,6 @@ AF63A7F41AB4EDDB00593C75 /* Resources */, AF63A7F61AB4EDDB00593C75 /* Sources */, AF63A7F91AB4EDDB00593C75 /* Frameworks */, - AF63A8011AB4EDDB00593C75 /* Rez */, AF63A8021AB4EDDB00593C75 /* Run Update Info Plist */, ); buildRules = ( @@ -17015,7 +16930,6 @@ AF6423F5099FF9C2000F4CD4 /* Resources */, AF6423F7099FF9C2000F4CD4 /* Sources */, AF6423FA099FF9C2000F4CD4 /* Frameworks */, - AF642401099FF9C2000F4CD4 /* Rez */, AFA3D97909C03DDD00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17035,7 +16949,6 @@ AF6425CF09A18855000F4CD4 /* Resources */, AF6425D109A18855000F4CD4 /* Sources */, AF6425D409A18855000F4CD4 /* Frameworks */, - AF6425D809A18855000F4CD4 /* Rez */, AFA3D88D09C03C3600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17055,7 +16968,6 @@ AF6425EF09A189EC000F4CD4 /* Resources */, AF6425F109A189EC000F4CD4 /* Sources */, AF6425F409A189EC000F4CD4 /* Frameworks */, - AF6425F809A189EC000F4CD4 /* Rez */, AFA3D8C309C03C9300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17075,7 +16987,6 @@ AF64261209A18D6C000F4CD4 /* Resources */, AF64261409A18D6C000F4CD4 /* Sources */, AF64261709A18D6C000F4CD4 /* Frameworks */, - AF64261B09A18D6C000F4CD4 /* Rez */, AFA3D88B09C03C3200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17095,7 +17006,6 @@ AF64262F09A18F54000F4CD4 /* Resources */, AF64263109A18F54000F4CD4 /* Sources */, AF64263409A18F54000F4CD4 /* Frameworks */, - AF64263809A18F54000F4CD4 /* Rez */, AFA3D8AB09C03C6D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17115,7 +17025,6 @@ AF64265209A19229000F4CD4 /* Resources */, AF64265409A19229000F4CD4 /* Sources */, AF64265709A19229000F4CD4 /* Frameworks */, - AF64265B09A19229000F4CD4 /* Rez */, AFA3D8AD09C03C7000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17135,7 +17044,6 @@ AF64267E09A194B0000F4CD4 /* Resources */, AF64268009A194B0000F4CD4 /* Sources */, AF64268309A194B0000F4CD4 /* Frameworks */, - AF64268709A194B0000F4CD4 /* Rez */, AFA3D88109C03C2100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17155,7 +17063,6 @@ AF64277409A1D37A000F4CD4 /* Resources */, AF64277609A1D37A000F4CD4 /* Sources */, AF64277909A1D37A000F4CD4 /* Frameworks */, - AF64277D09A1D37A000F4CD4 /* Rez */, AFA3D8D709C03CB400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17175,7 +17082,6 @@ AF6427AB09A2DE36000F4CD4 /* Resources */, AF6427AD09A2DE36000F4CD4 /* Sources */, AF6427B009A2DE36000F4CD4 /* Frameworks */, - AF6427B409A2DE36000F4CD4 /* Rez */, AFA3D69409C03B6200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17195,7 +17101,6 @@ AF688ABC257C04D200C91EAE /* Resources */, AF688ABE257C04D200C91EAE /* Sources */, AF688AC1257C04D200C91EAE /* Frameworks */, - AF688AC9257C04D200C91EAE /* Rez */, AF688ACA257C04D200C91EAE /* Run Update Info Plist */, ); buildRules = ( @@ -17215,7 +17120,6 @@ AF68A48119196CF800D41CD1 /* Resources */, AF68A48319196CF800D41CD1 /* Sources */, AF68A48619196CF800D41CD1 /* Frameworks */, - AF68A48D19196CF800D41CD1 /* Rez */, AF68A48E19196CF800D41CD1 /* Run Update Info Plist */, ); buildRules = ( @@ -17235,7 +17139,6 @@ AF69E1F4270BA54600358595 /* Resources */, AF69E1F6270BA54600358595 /* Sources */, AF69E1F9270BA54600358595 /* Frameworks */, - AF69E201270BA54600358595 /* Rez */, AF69E202270BA54600358595 /* Run Update Info Plist */, ); buildRules = ( @@ -17255,7 +17158,6 @@ AF6C6D77226AE4FC0065A748 /* Resources */, AF6C6D79226AE4FC0065A748 /* Sources */, AF6C6D7C226AE4FC0065A748 /* Frameworks */, - AF6C6D84226AE4FC0065A748 /* Rez */, AF6C6D85226AE4FC0065A748 /* Run Update Info Plist */, ); buildRules = ( @@ -17275,7 +17177,6 @@ AF6E25B5276C3F030032E38F /* Resources */, AF6E25B7276C3F030032E38F /* Sources */, AF6E25BA276C3F030032E38F /* Frameworks */, - AF6E25C2276C3F030032E38F /* Rez */, AF6E25C3276C3F030032E38F /* Run Update Info Plist */, ); buildRules = ( @@ -17295,7 +17196,6 @@ AF70B7702A81D025007C1EB8 /* Resources */, AF70B7722A81D025007C1EB8 /* Sources */, AF70B7752A81D025007C1EB8 /* Frameworks */, - AF70B77D2A81D025007C1EB8 /* Rez */, AF70B77E2A81D025007C1EB8 /* Run Update Info Plist */, ); buildRules = ( @@ -17315,7 +17215,6 @@ AF70B7912A8320A6007C1EB8 /* Resources */, AF70B7932A8320A6007C1EB8 /* Sources */, AF70B7962A8320A6007C1EB8 /* Frameworks */, - AF70B79E2A8320A6007C1EB8 /* Rez */, AF70B79F2A8320A6007C1EB8 /* Run Update Info Plist */, ); buildRules = ( @@ -17335,7 +17234,6 @@ AF73FF251A09877F00E485E9 /* Resources */, AF73FF271A09877F00E485E9 /* Sources */, AF73FF2A1A09877F00E485E9 /* Frameworks */, - AF73FF311A09877F00E485E9 /* Rez */, AF73FF321A09877F00E485E9 /* Run Update Info Plist */, ); buildRules = ( @@ -17355,7 +17253,6 @@ AF7511021782B5B900380EA1 /* Resources */, AF7511041782B5B900380EA1 /* Sources */, AF7511071782B5B900380EA1 /* Frameworks */, - AF75110D1782B5B900380EA1 /* Rez */, AF75110E1782B5B900380EA1 /* Run Update Info Plist */, ); buildRules = ( @@ -17375,7 +17272,6 @@ AF7776E709B63ABF00EA3033 /* Resources */, AF7776E909B63ABF00EA3033 /* Sources */, AF7776EE09B63ABF00EA3033 /* Frameworks */, - AF7776F209B63ABF00EA3033 /* Rez */, AFA3D8B909C03C8200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17395,7 +17291,6 @@ AF77771D09B6416100EA3033 /* Resources */, AF77771F09B6416100EA3033 /* Sources */, AF77772209B6416100EA3033 /* Frameworks */, - AF77772609B6416100EA3033 /* Rez */, AFA3D93509C03D5700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17415,7 +17310,6 @@ AF77774109B6446500EA3033 /* Resources */, AF77774309B6446500EA3033 /* Sources */, AF77774609B6446500EA3033 /* Frameworks */, - AF77774D09B6446500EA3033 /* Rez */, AFA3D97D09C03DE400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17435,7 +17329,6 @@ AF77777709B6497800EA3033 /* Resources */, AF77777909B6497800EA3033 /* Sources */, AF77777D09B6497800EA3033 /* Frameworks */, - AF77778409B6497800EA3033 /* Rez */, AFA3D98509C03DF100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17455,7 +17348,6 @@ AF77779109B64A5200EA3033 /* Resources */, AF77779309B64A5200EA3033 /* Sources */, AF77779709B64A5200EA3033 /* Frameworks */, - AF77779E09B64A5200EA3033 /* Rez */, AFA3D9A909C03E3D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17475,7 +17367,6 @@ AF7777AB09B64B2600EA3033 /* Resources */, AF7777AD09B64B2600EA3033 /* Sources */, AF7777B109B64B2600EA3033 /* Frameworks */, - AF7777B809B64B2600EA3033 /* Rez */, AFA3D9CF09C03E8700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17495,7 +17386,6 @@ AF7777D309B64C6B00EA3033 /* Resources */, AF7777D509B64C6B00EA3033 /* Sources */, AF7777D909B64C6B00EA3033 /* Frameworks */, - AF7777E009B64C6B00EA3033 /* Rez */, AFA3D99509C03E1900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17515,7 +17405,6 @@ AF7777ED09B64E3100EA3033 /* Resources */, AF7777EF09B64E3100EA3033 /* Sources */, AF7777F309B64E3100EA3033 /* Frameworks */, - AF7777FA09B64E3100EA3033 /* Rez */, AFA3D97F09C03DE700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17535,7 +17424,6 @@ AF77781309B6504400EA3033 /* Resources */, AF77781509B6504400EA3033 /* Sources */, AF77781A09B6504400EA3033 /* Frameworks */, - AF77782109B6504400EA3033 /* Rez */, AFA3D9CD09C03E8400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17555,7 +17443,6 @@ AF77784709B6528100EA3033 /* Resources */, AF77784A09B6528100EA3033 /* Sources */, AF77784D09B6528100EA3033 /* Frameworks */, - AF77785409B6528100EA3033 /* Rez */, AFA3D96509C03DB900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17575,7 +17462,6 @@ AF77786409B6536000EA3033 /* Resources */, AF77786609B6536000EA3033 /* Sources */, AF77786909B6536000EA3033 /* Frameworks */, - AF77787009B6536000EA3033 /* Rez */, AFA3D97309C03DD300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17595,7 +17481,6 @@ AF77788209B6563500EA3033 /* Resources */, AF77788409B6563500EA3033 /* Sources */, AF77788709B6563500EA3033 /* Frameworks */, - AF77788B09B6563500EA3033 /* Rez */, AFA3D87D09C03C1B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17615,7 +17500,6 @@ AF7778A809B659C800EA3033 /* Resources */, AF7778AA09B659C800EA3033 /* Sources */, AF7778AD09B659C800EA3033 /* Frameworks */, - AF7778B109B659C800EA3033 /* Rez */, AFCCCBD309C03B0000353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -17635,7 +17519,6 @@ AF78D178142DD8F3002AAF77 /* Resources */, AF78D17A142DD8F3002AAF77 /* Sources */, AF78D17D142DD8F3002AAF77 /* Frameworks */, - AF78D184142DD8F3002AAF77 /* Rez */, AF78D185142DD8F3002AAF77 /* Run Update Info Plist */, ); buildRules = ( @@ -17655,7 +17538,6 @@ AF794F67099748450059A8B0 /* Resources */, AF794F69099748450059A8B0 /* Sources */, AF794F6C099748450059A8B0 /* Frameworks */, - AF794F70099748450059A8B0 /* Rez */, AFA3D90B09C03D1100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17675,7 +17557,6 @@ AF794F9109974A320059A8B0 /* Resources */, AF794F9309974A320059A8B0 /* Sources */, AF794F9609974A320059A8B0 /* Frameworks */, - AF794F9A09974A320059A8B0 /* Rez */, AFA3D91509C03D2100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17695,7 +17576,6 @@ AF794FD009974FA60059A8B0 /* Resources */, AF794FD209974FA60059A8B0 /* Sources */, AF794FD509974FA60059A8B0 /* Frameworks */, - AF794FD909974FA60059A8B0 /* Rez */, AFA3D93109C03D5100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17715,7 +17595,6 @@ AF796D1D26E5C10700DA6562 /* Resources */, AF796D1F26E5C10700DA6562 /* Sources */, AF796D2226E5C10700DA6562 /* Frameworks */, - AF796D2A26E5C10700DA6562 /* Rez */, AF796D2B26E5C10700DA6562 /* Run Update Info Plist */, ); buildRules = ( @@ -17735,7 +17614,6 @@ AF7ACFC319FF0A9200BD752B /* Resources */, AF7ACFC519FF0A9200BD752B /* Sources */, AF7ACFC819FF0A9200BD752B /* Frameworks */, - AF7ACFCF19FF0A9200BD752B /* Rez */, AF7ACFD019FF0A9200BD752B /* Run Update Info Plist */, ); buildRules = ( @@ -17755,7 +17633,6 @@ AF7F05FC2A50BFAB00E35B45 /* Resources */, AF7F05FE2A50BFAB00E35B45 /* Sources */, AF7F06012A50BFAB00E35B45 /* Frameworks */, - AF7F06092A50BFAB00E35B45 /* Rez */, AF7F060A2A50BFAB00E35B45 /* Run Update Info Plist */, ); buildRules = ( @@ -17775,7 +17652,6 @@ AF81E00325845C2A00CFC475 /* Resources */, AF81E00525845C2A00CFC475 /* Sources */, AF81E00825845C2A00CFC475 /* Frameworks */, - AF81E01025845C2A00CFC475 /* Rez */, AF81E01125845C2A00CFC475 /* Run Update Info Plist */, ); buildRules = ( @@ -17819,7 +17695,6 @@ AF95058725670ECC00C1F257 /* Resources */, AF95058925670ECC00C1F257 /* Sources */, AF95058C25670ECC00C1F257 /* Frameworks */, - AF95059425670ECC00C1F257 /* Rez */, AF95059525670ECC00C1F257 /* Run Update Info Plist */, ); buildRules = ( @@ -17839,7 +17714,6 @@ AF96014125758F9F007FA31B /* Resources */, AF96014325758F9F007FA31B /* Sources */, AF96014625758F9F007FA31B /* Frameworks */, - AF96014E25758F9F007FA31B /* Rez */, AF96014F25758F9F007FA31B /* Run Update Info Plist */, ); buildRules = ( @@ -17859,7 +17733,6 @@ AF975730099C317000B05160 /* Resources */, AF975732099C317000B05160 /* Sources */, AF975735099C317000B05160 /* Frameworks */, - AF975739099C317000B05160 /* Rez */, AFA3D89109C03C3C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17879,7 +17752,6 @@ AF975778099C374A00B05160 /* Resources */, AF97577A099C374A00B05160 /* Sources */, AF97577D099C374A00B05160 /* Frameworks */, - AF975781099C374A00B05160 /* Rez */, AFA3D8A909C03C6900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17899,7 +17771,6 @@ AF9757C5099C3E6300B05160 /* Resources */, AF9757C7099C3E6300B05160 /* Sources */, AF9757CA099C3E6300B05160 /* Frameworks */, - AF9757CE099C3E6300B05160 /* Rez */, AFA3D8C509C03C9600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17919,7 +17790,6 @@ AF97580B099C41D500B05160 /* Resources */, AF97580D099C41D500B05160 /* Sources */, AF975810099C41D500B05160 /* Frameworks */, - AF975814099C41D500B05160 /* Rez */, AFA3D8F109C03CE100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17939,7 +17809,6 @@ AF975868099C475900B05160 /* Resources */, AF97586A099C475900B05160 /* Sources */, AF97586D099C475900B05160 /* Frameworks */, - AF975871099C475900B05160 /* Rez */, AFA3D8CF09C03CA800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17959,7 +17828,6 @@ AF975A39099C681F00B05160 /* Resources */, AF975A3B099C681F00B05160 /* Sources */, AF975A3E099C681F00B05160 /* Frameworks */, - AF975A42099C681F00B05160 /* Rez */, AFA3D8A509C03C6200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17979,7 +17847,6 @@ AF975A6F099C6AB200B05160 /* Resources */, AF975A71099C6AB200B05160 /* Sources */, AF975A74099C6AB200B05160 /* Frameworks */, - AF975A78099C6AB200B05160 /* Rez */, AFA3D87509C03C0400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -17999,7 +17866,6 @@ AF975A89099C6BC300B05160 /* Resources */, AF975A8B099C6BC300B05160 /* Sources */, AF975A8E099C6BC300B05160 /* Frameworks */, - AF975A92099C6BC300B05160 /* Rez */, AFCCCBCF09C03AF800353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -18019,7 +17885,6 @@ AF975ADA099C6EB100B05160 /* Resources */, AF975ADC099C6EB100B05160 /* Sources */, AF975ADF099C6EB100B05160 /* Frameworks */, - AF975AE3099C6EB100B05160 /* Rez */, AFA3D87709C03C0A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18039,7 +17904,6 @@ AF975AFF099C6FE400B05160 /* Resources */, AF975B01099C6FE400B05160 /* Sources */, AF975B04099C6FE400B05160 /* Frameworks */, - AF975B08099C6FE400B05160 /* Rez */, AFA3D8A309C03C5F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18059,7 +17923,6 @@ AF975C15099C8C1500B05160 /* Resources */, AF975C17099C8C1500B05160 /* Sources */, AF975C1A099C8C1500B05160 /* Frameworks */, - AF975C1E099C8C1500B05160 /* Rez */, AFA3D88709C03C2A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18079,7 +17942,6 @@ AF975C40099C8DCF00B05160 /* Resources */, AF975C43099C8DCF00B05160 /* Sources */, AF975C46099C8DCF00B05160 /* Frameworks */, - AF975C4A099C8DCF00B05160 /* Rez */, AFA3D88309C03C2400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18099,7 +17961,6 @@ AF975C60099C8F3F00B05160 /* Resources */, AF975C63099C8F3F00B05160 /* Sources */, AF975C66099C8F3F00B05160 /* Frameworks */, - AF975C6A099C8F3F00B05160 /* Rez */, AFA3D8B109C03C7600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18119,7 +17980,6 @@ AF975D55099CA0F000B05160 /* Resources */, AF975D58099CA0F000B05160 /* Sources */, AF975D5B099CA0F000B05160 /* Frameworks */, - AF975D5F099CA0F000B05160 /* Rez */, AFA3D8C909C03C9E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18139,7 +17999,6 @@ AF976FB80989CAA2001F8B92 /* Resources */, AF976FB90989CAA2001F8B92 /* Sources */, AF976FBA0989CAA2001F8B92 /* Frameworks */, - AF9770150989D0F6001F8B92 /* Rez */, AFA3D86D09C03BF300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18159,7 +18018,6 @@ AF97702A0989D1E6001F8B92 /* Resources */, AF97702C0989D1E6001F8B92 /* Sources */, AF9770390989D1E6001F8B92 /* Frameworks */, - AF97703C0989D1E6001F8B92 /* Rez */, AFA3D8CB09C03CA100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18179,7 +18037,6 @@ AF9770670989D2F6001F8B92 /* Resources */, AF9770690989D2F6001F8B92 /* Sources */, AF9770760989D2F6001F8B92 /* Frameworks */, - AF9770790989D2F6001F8B92 /* Rez */, AFCCCBCD09C03AF400353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -18218,7 +18075,6 @@ AF998EDD0A083DB30051049D /* Resources */, AF998EDF0A083DB30051049D /* Sources */, AF998EE20A083DB30051049D /* Frameworks */, - AF998EE90A083DB30051049D /* Rez */, AF998EEA0A083DB30051049D /* Run Update Info Plist */, ); buildRules = ( @@ -18238,7 +18094,6 @@ AF9D466909B5109C006E59CF /* Resources */, AF9D466B09B5109C006E59CF /* Sources */, AF9D466E09B5109C006E59CF /* Frameworks */, - AF9D467209B5109C006E59CF /* Rez */, AFA3D86B09C03BEF00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18258,7 +18113,6 @@ AF9D474709B5300A006E59CF /* Resources */, AF9D474909B5300A006E59CF /* Sources */, AF9D474C09B5300A006E59CF /* Frameworks */, - AF9D475009B5300A006E59CF /* Rez */, AFA3D8D109C03CAB00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18278,7 +18132,6 @@ AF9D476209B53166006E59CF /* Resources */, AF9D476409B53166006E59CF /* Sources */, AF9D476709B53166006E59CF /* Frameworks */, - AF9D476B09B53166006E59CF /* Rez */, AFA3D8FF09C03CF700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18298,7 +18151,6 @@ AF9D48DE09B53322006E59CF /* Resources */, AF9D48E009B53322006E59CF /* Sources */, AF9D48E309B53322006E59CF /* Frameworks */, - AF9D48E709B53322006E59CF /* Rez */, AFA3D85B09C03BD300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18318,7 +18170,6 @@ AF9D48F709B535DA006E59CF /* Resources */, AF9D48F909B535DA006E59CF /* Sources */, AF9D48FC09B535DA006E59CF /* Frameworks */, - AF9D490009B535DA006E59CF /* Rez */, AFA3D87109C03BFB00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18338,7 +18189,6 @@ AF9D492E09B53CBA006E59CF /* Resources */, AF9D493009B53CBA006E59CF /* Sources */, AF9D493309B53CBA006E59CF /* Frameworks */, - AF9D493709B53CBA006E59CF /* Rez */, AFA3D8C709C03C9900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18358,7 +18208,6 @@ AF9D495709B53FC9006E59CF /* Resources */, AF9D495909B53FC9006E59CF /* Sources */, AF9D495C09B53FC9006E59CF /* Frameworks */, - AF9D496009B53FC9006E59CF /* Rez */, AFA3D8CD09C03CA400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18378,7 +18227,6 @@ AF9D496F09B5411D006E59CF /* Resources */, AF9D497109B5411D006E59CF /* Sources */, AF9D497409B5411D006E59CF /* Frameworks */, - AF9D497809B5411D006E59CF /* Rez */, AFA3D8E509C03CCD00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18398,7 +18246,6 @@ AF9D499A09B544C2006E59CF /* Resources */, AF9D499C09B544C2006E59CF /* Sources */, AF9D499F09B544C2006E59CF /* Frameworks */, - AF9D49A309B544C2006E59CF /* Rez */, AFA3D8D909C03CB700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18418,7 +18265,6 @@ AF9D4C6C09B59F27006E59CF /* Resources */, AF9D4C6E09B59F27006E59CF /* Sources */, AF9D4C7109B59F27006E59CF /* Frameworks */, - AF9D4C7509B59F27006E59CF /* Rez */, AFA3D8F709C03CEA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18438,7 +18284,6 @@ AF9D4CEA09B5AA8E006E59CF /* Resources */, AF9D4CEC09B5AA8E006E59CF /* Sources */, AF9D4CEF09B5AA8E006E59CF /* Frameworks */, - AF9D4CF309B5AA8E006E59CF /* Rez */, AFA3D8BD09C03C8900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18458,7 +18303,6 @@ AF9D4D8109B5B2DC006E59CF /* Resources */, AF9D4D8309B5B2DC006E59CF /* Sources */, AF9D4D8709B5B2DC006E59CF /* Frameworks */, - AF9D4D8B09B5B2DC006E59CF /* Rez */, AFA3D8F309C03CE400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18478,7 +18322,6 @@ AF9D4DB209B5B71E006E59CF /* Resources */, AF9D4DB409B5B71E006E59CF /* Sources */, AF9D4DB809B5B71E006E59CF /* Frameworks */, - AF9D4DBC09B5B71E006E59CF /* Rez */, AFA3D69209C03B5C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18498,7 +18341,6 @@ AF9D4DEF09B5BB19006E59CF /* Resources */, AF9D4DF109B5BB19006E59CF /* Sources */, AF9D4DF609B5BB19006E59CF /* Frameworks */, - AF9D4DFA09B5BB19006E59CF /* Rez */, AFCCCBCB09C03AEE00353F4D /* Run Update Info Plist */, ); buildRules = ( @@ -18518,7 +18360,6 @@ AFA0B121241CE69E0071E35D /* Resources */, AFA0B123241CE69E0071E35D /* Sources */, AFA0B126241CE69E0071E35D /* Frameworks */, - AFA0B12E241CE69E0071E35D /* Rez */, AFA0B12F241CE69E0071E35D /* Run Update Info Plist */, ); buildRules = ( @@ -18538,7 +18379,6 @@ AFA2118F1CD59DAF00C0D2A1 /* Resources */, AFA211911CD59DAF00C0D2A1 /* Sources */, AFA211941CD59DAF00C0D2A1 /* Frameworks */, - AFA2119C1CD59DAF00C0D2A1 /* Rez */, AFA2119D1CD59DAF00C0D2A1 /* Run Update Info Plist */, ); buildRules = ( @@ -18560,7 +18400,6 @@ AFB9B5C024269AF900A5740D /* CopyFiles */, AFA339340B058505002B0E7D /* Sources */, AFA339370B058505002B0E7D /* Frameworks */, - AFA3393B0B058505002B0E7D /* Rez */, AFA3393C0B058505002B0E7D /* Run Update Info Plist */, ); buildRules = ( @@ -18598,7 +18437,6 @@ AFA55949099330B000F3E977 /* Resources */, AFA5594B099330B000F3E977 /* Sources */, AFA5594F099330B000F3E977 /* Frameworks */, - AFA55956099330B000F3E977 /* Rez */, AFA3D96309C03DB500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18618,7 +18456,6 @@ AFA559700993317900F3E977 /* Resources */, AFA559720993317900F3E977 /* Sources */, AFA559740993317900F3E977 /* Frameworks */, - AFA5597B0993317900F3E977 /* Rez */, AFA3D9AB09C03E4200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18638,7 +18475,6 @@ AFA559950993322100F3E977 /* Resources */, AFA559970993322100F3E977 /* Sources */, AFA559990993322100F3E977 /* Frameworks */, - AFA559A00993322100F3E977 /* Rez */, AFA3D9D109C03E8B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18658,7 +18494,6 @@ AFA559B80993328000F3E977 /* Resources */, AFA559BA0993328000F3E977 /* Sources */, AFA559BC0993328000F3E977 /* Frameworks */, - AFA559C30993328000F3E977 /* Rez */, AFA3D9AF09C03E4B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18678,7 +18513,6 @@ AFA559D20993330600F3E977 /* Resources */, AFA559D40993330600F3E977 /* Sources */, AFA559D60993330600F3E977 /* Frameworks */, - AFA559DD0993330600F3E977 /* Rez */, AFA3D9C109C03E6E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18698,7 +18532,6 @@ AFA55A060993340300F3E977 /* Resources */, AFA55A080993340300F3E977 /* Sources */, AFA55A0A0993340300F3E977 /* Frameworks */, - AFA55A110993340300F3E977 /* Rez */, AFA3D9CB09C03E7F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18718,7 +18551,6 @@ AFA55A23099334A000F3E977 /* Resources */, AFA55A25099334A000F3E977 /* Sources */, AFA55A27099334A000F3E977 /* Frameworks */, - AFA55A2E099334A000F3E977 /* Rez */, AFA3D9C909C03E7C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18738,7 +18570,6 @@ AFA55A7C0993364300F3E977 /* Resources */, AFA55A7E0993364300F3E977 /* Sources */, AFA55A800993364300F3E977 /* Frameworks */, - AFA55A870993364300F3E977 /* Rez */, AFA3D9A309C03E3200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18758,7 +18589,6 @@ AFA55AD209933CEF00F3E977 /* Resources */, AFA55AD409933CEF00F3E977 /* Sources */, AFA55AD609933CEF00F3E977 /* Frameworks */, - AFA55ADD09933CEF00F3E977 /* Rez */, AFA3D96109C03DB100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18778,7 +18608,6 @@ AFA55B0C09933E0500F3E977 /* Resources */, AFA55B0E09933E0500F3E977 /* Sources */, AFA55B1309933E0500F3E977 /* Frameworks */, - AFA55B1A09933E0500F3E977 /* Rez */, AFA3D99309C03E1600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18798,7 +18627,6 @@ AFA55B2809933E8D00F3E977 /* Resources */, AFA55B2A09933E8D00F3E977 /* Sources */, AFA55B2C09933E8D00F3E977 /* Frameworks */, - AFA55B3309933E8D00F3E977 /* Rez */, AFA3D9BD09C03E6500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18818,7 +18646,6 @@ AFA55B7C09933F7200F3E977 /* Resources */, AFA55B7E09933F7200F3E977 /* Sources */, AFA55B8009933F7200F3E977 /* Frameworks */, - AFA55B8709933F7200F3E977 /* Rez */, AFA3D9C509C03E7400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18838,7 +18665,6 @@ AFA55B9409933FDA00F3E977 /* Resources */, AFA55B9609933FDA00F3E977 /* Sources */, AFA55B9809933FDA00F3E977 /* Frameworks */, - AFA55B9F09933FDA00F3E977 /* Rez */, AFA3D98709C03DF400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18858,7 +18684,6 @@ AFA55BAE099340CE00F3E977 /* Resources */, AFA55BB0099340CE00F3E977 /* Sources */, AFA55BB2099340CE00F3E977 /* Frameworks */, - AFA55BB9099340CE00F3E977 /* Rez */, AFA3D96709C03DBC00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18878,7 +18703,6 @@ AFA55BE70993429100F3E977 /* Resources */, AFA55BE90993429100F3E977 /* Sources */, AFA55BEB0993429100F3E977 /* Frameworks */, - AFA55BF20993429100F3E977 /* Rez */, AFA3D9A709C03E3A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18898,7 +18722,6 @@ AFA55C110993431300F3E977 /* Resources */, AFA55C130993431300F3E977 /* Sources */, AFA55C150993431300F3E977 /* Frameworks */, - AFA55C1C0993431300F3E977 /* Rez */, AFA3D97709C03DDA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18918,7 +18741,6 @@ AFA55C7A099349A600F3E977 /* Resources */, AFA55C7C099349A600F3E977 /* Sources */, AFA55C7E099349A600F3E977 /* Frameworks */, - AFA55C85099349A600F3E977 /* Rez */, AFA3D99709C03E1C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18938,7 +18760,6 @@ AFA55CAC09934BB200F3E977 /* Resources */, AFA55CAE09934BB200F3E977 /* Sources */, AFA55CB009934BB200F3E977 /* Frameworks */, - AFA55CB709934BB200F3E977 /* Rez */, AFA3D95F09C03DAE00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18958,7 +18779,6 @@ AFA55CCF09934CE400F3E977 /* Resources */, AFA55CD109934CE400F3E977 /* Sources */, AFA55CD309934CE400F3E977 /* Frameworks */, - AFA55CDA09934CE400F3E977 /* Rez */, AFA3D98B09C03DFC00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18978,7 +18798,6 @@ AFA55D3F0993565300F3E977 /* Resources */, AFA55D410993565300F3E977 /* Sources */, AFA55D430993565300F3E977 /* Frameworks */, - AFA55D4A0993565300F3E977 /* Rez */, AFA3D9C309C03E7100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -18998,7 +18817,6 @@ AFA55D650993584B00F3E977 /* Resources */, AFA55D670993584B00F3E977 /* Sources */, AFA55D690993584B00F3E977 /* Frameworks */, - AFA55D700993584B00F3E977 /* Rez */, AFA3D96D09C03DCA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19018,7 +18836,6 @@ AFA55D82099358C400F3E977 /* Resources */, AFA55D84099358C400F3E977 /* Sources */, AFA55D86099358C400F3E977 /* Frameworks */, - AFA55D8D099358C400F3E977 /* Rez */, AFA3D9C709C03E7800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19038,7 +18855,6 @@ AFA55DCB09935D7000F3E977 /* Resources */, AFA55DCD09935D7000F3E977 /* Sources */, AFA55DCF09935D7000F3E977 /* Frameworks */, - AFA55DD609935D7000F3E977 /* Rez */, AFA3D9A509C03E3600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19058,7 +18874,6 @@ AFA55DF309935E4900F3E977 /* Resources */, AFA55DF509935E4900F3E977 /* Sources */, AFA55DF809935E4900F3E977 /* Frameworks */, - AFA55DFF09935E4900F3E977 /* Rez */, AFA3D9BF09C03E6900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19078,7 +18893,6 @@ AFA55E1009935EDC00F3E977 /* Resources */, AFA55E1209935EDC00F3E977 /* Sources */, AFA55E1409935EDC00F3E977 /* Frameworks */, - AFA55E1B09935EDC00F3E977 /* Rez */, AFA3D97509C03DD700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19098,7 +18912,6 @@ AFA55E3209935F8E00F3E977 /* Resources */, AFA55E3409935F8E00F3E977 /* Sources */, AFA55E3709935F8E00F3E977 /* Frameworks */, - AFA55E3E09935F8E00F3E977 /* Rez */, AFA3D98909C03DF700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19118,7 +18931,6 @@ AFA55E5109935FF900F3E977 /* Resources */, AFA55E5309935FF900F3E977 /* Sources */, AFA55E5509935FF900F3E977 /* Frameworks */, - AFA55E5C09935FF900F3E977 /* Rez */, AFA3D98109C03DEA00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19138,7 +18950,6 @@ AFA55ECA099360E300F3E977 /* Resources */, AFA55ECC099360E300F3E977 /* Sources */, AFA55ED8099360E300F3E977 /* Frameworks */, - AFA55EDF099360E300F3E977 /* Rez */, AFA3D95D09C03DAB00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19158,7 +18969,6 @@ AFA55F09099361B700F3E977 /* Resources */, AFA55F0B099361B700F3E977 /* Sources */, AFA55F13099361B700F3E977 /* Frameworks */, - AFA55F1A099361B700F3E977 /* Rez */, AFA3D99D09C03E2600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19178,7 +18988,6 @@ AFA55F2D0993622F00F3E977 /* Resources */, AFA55F2F0993622F00F3E977 /* Sources */, AFA55F310993622F00F3E977 /* Frameworks */, - AFA55F380993622F00F3E977 /* Rez */, AFA3D9A109C03E2E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19198,7 +19007,6 @@ AFA55F450993629000F3E977 /* Resources */, AFA55F470993629000F3E977 /* Sources */, AFA55F490993629000F3E977 /* Frameworks */, - AFA55F500993629000F3E977 /* Rez */, AFA3D99B09C03E2300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19218,7 +19026,6 @@ AFA55F750993643600F3E977 /* Resources */, AFA55F770993643600F3E977 /* Sources */, AFA55F790993643600F3E977 /* Frameworks */, - AFA55F800993643600F3E977 /* Rez */, AFA3D99109C03E1200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19238,7 +19045,6 @@ AFA55FD609936BFA00F3E977 /* Resources */, AFA55FD809936BFA00F3E977 /* Sources */, AFA55FDA09936BFA00F3E977 /* Frameworks */, - AFA55FE109936BFA00F3E977 /* Rez */, AFA3D96F09C03DCD00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19258,7 +19064,6 @@ AFA55FFC09936C6D00F3E977 /* Resources */, AFA55FFE09936C6D00F3E977 /* Sources */, AFA5600009936C6D00F3E977 /* Frameworks */, - AFA5600709936C6D00F3E977 /* Rez */, AFA3D98F09C03E0F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19278,7 +19083,6 @@ AFA5601709936CC800F3E977 /* Resources */, AFA5601909936CC800F3E977 /* Sources */, AFA5601B09936CC800F3E977 /* Frameworks */, - AFA5602209936CC800F3E977 /* Rez */, AFA3D95909C03DA400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19298,7 +19102,6 @@ AFA5603509936D5100F3E977 /* Resources */, AFA5603709936D5100F3E977 /* Sources */, AFA5603909936D5100F3E977 /* Frameworks */, - AFA5604009936D5100F3E977 /* Rez */, AFA3D97B09C03DE000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19318,7 +19121,6 @@ AFA5604D09936E2100F3E977 /* Resources */, AFA5604F09936E2100F3E977 /* Sources */, AFA5605109936E2100F3E977 /* Frameworks */, - AFA5605809936E2100F3E977 /* Rez */, AFA3D94D09C03D8D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19338,7 +19140,6 @@ AFA5606509936F3800F3E977 /* Resources */, AFA5606709936F3800F3E977 /* Sources */, AFA5606909936F3800F3E977 /* Frameworks */, - AFA5607009936F3800F3E977 /* Rez */, AFA3D95109C03D9400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19358,7 +19159,6 @@ AFA560B10993718D00F3E977 /* Resources */, AFA560B30993718D00F3E977 /* Sources */, AFA560B50993718D00F3E977 /* Frameworks */, - AFA560BC0993718D00F3E977 /* Rez */, AFA3D9B909C03E5E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19378,7 +19178,6 @@ AFA561000993781600F3E977 /* Resources */, AFA561020993781600F3E977 /* Sources */, AFA561040993781600F3E977 /* Frameworks */, - AFA5610B0993781600F3E977 /* Rez */, AFA3D9AD09C03E4600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19399,7 +19198,6 @@ AFA5615B09937C0D00F3E977 /* Resources */, AFA5615D09937C0D00F3E977 /* Sources */, AFA5615F09937C0D00F3E977 /* Frameworks */, - AFA5616609937C0D00F3E977 /* Rez */, AFA3D95709C03DA100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19419,7 +19217,6 @@ AFA5617E09937CF100F3E977 /* Resources */, AFA5618009937CF100F3E977 /* Sources */, AFA5618209937CF100F3E977 /* Frameworks */, - AFA5618909937CF100F3E977 /* Rez */, AFA3D9B109C03E4E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19439,7 +19236,6 @@ AFA561A009937D7E00F3E977 /* Resources */, AFA561A209937D7E00F3E977 /* Sources */, AFA561A409937D7E00F3E977 /* Frameworks */, - AFA561AB09937D7E00F3E977 /* Rez */, AFA3D9B709C03E5B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19459,7 +19255,6 @@ AFA562090993849F00F3E977 /* Resources */, AFA5620B0993849F00F3E977 /* Sources */, AFA5620E0993849F00F3E977 /* Frameworks */, - AFA562150993849F00F3E977 /* Rez */, AFA3D9BB09C03E6200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19479,7 +19274,6 @@ AFA562220993852500F3E977 /* Resources */, AFA562240993852500F3E977 /* Sources */, AFA562260993852500F3E977 /* Frameworks */, - AFA5622D0993852500F3E977 /* Rez */, AFA3D9B309C03E5100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19499,7 +19293,6 @@ AFA562C2099392C600F3E977 /* Resources */, AFA562C4099392C600F3E977 /* Sources */, AFA562C6099392C600F3E977 /* Frameworks */, - AFA562CD099392C600F3E977 /* Rez */, AFA3D95B09C03DA800E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19519,7 +19312,6 @@ AFA562DD099393C900F3E977 /* Resources */, AFA562DF099393C900F3E977 /* Sources */, AFA562E1099393C900F3E977 /* Frameworks */, - AFA562E8099393C900F3E977 /* Rez */, AFA3D94F09C03D9100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19539,7 +19331,6 @@ AFA562F50993943B00F3E977 /* Resources */, AFA562F70993943B00F3E977 /* Sources */, AFA562F90993943B00F3E977 /* Frameworks */, - AFA563000993943B00F3E977 /* Rez */, AFA3D9D309C03E8F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19559,7 +19350,6 @@ AFA563160993951000F3E977 /* Resources */, AFA563180993951000F3E977 /* Sources */, AFA5631B0993951000F3E977 /* Frameworks */, - AFA563220993951000F3E977 /* Rez */, AFA3D96909C03DBF00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19579,7 +19369,6 @@ AFA56334099395ED00F3E977 /* Resources */, AFA56336099395ED00F3E977 /* Sources */, AFA56338099395ED00F3E977 /* Frameworks */, - AFA5633F099395ED00F3E977 /* Rez */, AFA3D98D09C03E0500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19599,7 +19388,6 @@ AFA56354099396C000F3E977 /* Resources */, AFA56356099396C000F3E977 /* Sources */, AFA56358099396C000F3E977 /* Frameworks */, - AFA5635F099396C000F3E977 /* Rez */, AFA3D96B09C03DC600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19619,7 +19407,6 @@ AFA5637C099397B300F3E977 /* Resources */, AFA5637E099397B300F3E977 /* Sources */, AFA56380099397B300F3E977 /* Frameworks */, - AFA56387099397B300F3E977 /* Rez */, AFA3D9D509C03E9300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19639,7 +19426,6 @@ AFA563A7099398BB00F3E977 /* Resources */, AFA563A9099398BB00F3E977 /* Sources */, AFA563AB099398BB00F3E977 /* Frameworks */, - AFA563B2099398BB00F3E977 /* Rez */, AFA3D99F09C03E2900E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19659,7 +19445,6 @@ AFA6AAF320999950006D2685 /* Resources */, AFA6AAF520999950006D2685 /* Sources */, AFA6AAF820999950006D2685 /* Frameworks */, - AFA6AB0020999950006D2685 /* Rez */, AFA6AB0120999950006D2685 /* Run Update Info Plist */, ); buildRules = ( @@ -19679,7 +19464,6 @@ AFAAE38A207D6343007A515C /* Resources */, AFAAE38C207D6343007A515C /* Sources */, AFAAE38F207D6343007A515C /* Frameworks */, - AFAAE397207D6343007A515C /* Rez */, AFAAE398207D6343007A515C /* Run Update Info Plist */, ); buildRules = ( @@ -19699,7 +19483,6 @@ AFACE8761CC83458008B24CD /* Resources */, AFACE8781CC83458008B24CD /* Sources */, AFACE87B1CC83458008B24CD /* Frameworks */, - AFACE8831CC83458008B24CD /* Rez */, AFACE8841CC83458008B24CD /* Run Update Info Plist */, ); buildRules = ( @@ -19719,7 +19502,6 @@ AFADD32E24B67100005456DC /* Resources */, AFADD33024B67100005456DC /* Sources */, AFADD33324B67100005456DC /* Frameworks */, - AFADD33B24B67100005456DC /* Rez */, AFADD33C24B67100005456DC /* Run Update Info Plist */, ); buildRules = ( @@ -19739,7 +19521,6 @@ AFAE1472279275BE00C62683 /* Resources */, AFAE1474279275BE00C62683 /* Sources */, AFAE1477279275BE00C62683 /* Frameworks */, - AFAE147F279275BE00C62683 /* Rez */, AFAE1480279275BE00C62683 /* Run Update Info Plist */, ); buildRules = ( @@ -19759,7 +19540,6 @@ AFB591AA178B812C00EA4005 /* Resources */, AFB591AC178B812C00EA4005 /* Sources */, AFB591AF178B812C00EA4005 /* Frameworks */, - AFB591B5178B812C00EA4005 /* Rez */, AFB591B6178B812C00EA4005 /* Run Update Info Plist */, ); buildRules = ( @@ -19823,7 +19603,6 @@ AFC0E8AE1CDC601A008CAFAC /* Resources */, AFC0E8B01CDC601A008CAFAC /* Sources */, AFC0E8B31CDC601A008CAFAC /* Frameworks */, - AFC0E8BB1CDC601A008CAFAC /* Rez */, AFC0E8BC1CDC601A008CAFAC /* Run Update Info Plist */, ); buildRules = ( @@ -19843,7 +19622,6 @@ AFC5CFD92044AA23004CEB5E /* Resources */, AFC5CFDB2044AA23004CEB5E /* Sources */, AFC5CFDE2044AA23004CEB5E /* Frameworks */, - AFC5CFE62044AA23004CEB5E /* Rez */, AFC5CFE72044AA23004CEB5E /* Run Update Info Plist */, ); buildRules = ( @@ -19863,7 +19641,6 @@ AFCF833E1AF5B515008BB7E1 /* Resources */, AFCF83401AF5B515008BB7E1 /* Sources */, AFCF83431AF5B515008BB7E1 /* Frameworks */, - AFCF834B1AF5B515008BB7E1 /* Rez */, AFCF834C1AF5B515008BB7E1 /* Run Update Info Plist */, ); buildRules = ( @@ -19883,7 +19660,6 @@ AFD51B1E0F063B4A00471C02 /* Resources */, AFD51B210F063B4A00471C02 /* Sources */, AFD51B240F063B4A00471C02 /* Frameworks */, - AFD51B2B0F063B4A00471C02 /* Rez */, AFD51B2C0F063B4A00471C02 /* Run Update Info Plist */, ); buildRules = ( @@ -19903,7 +19679,6 @@ AFD56DF40996A03800BA26F7 /* Resources */, AFD56DF60996A03800BA26F7 /* Sources */, AFD56DF90996A03800BA26F7 /* Frameworks */, - AFD56E000996A03800BA26F7 /* Rez */, AFA3D99909C03E2000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19923,7 +19698,6 @@ AFD56EB10996A72600BA26F7 /* Resources */, AFD56EB30996A72600BA26F7 /* Sources */, AFD56EB60996A72600BA26F7 /* Frameworks */, - AFD56EBA0996A72600BA26F7 /* Rez */, AFA3D90709C03D0B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19943,7 +19717,6 @@ AFD56EDD0996A95700BA26F7 /* Resources */, AFD56EDF0996A95700BA26F7 /* Sources */, AFD56EE20996A95700BA26F7 /* Frameworks */, - AFD56EE60996A95700BA26F7 /* Rez */, AFA3D91D09C03D3000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19963,7 +19736,6 @@ AFD56F0E0996AAFA00BA26F7 /* Resources */, AFD56F100996AAFA00BA26F7 /* Sources */, AFD56F130996AAFA00BA26F7 /* Frameworks */, - AFD56F170996AAFA00BA26F7 /* Rez */, AFA3D94909C03D8100E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -19983,7 +19755,6 @@ AFD56F260996AB8A00BA26F7 /* Resources */, AFD56F280996AB8A00BA26F7 /* Sources */, AFD56F2B0996AB8A00BA26F7 /* Frameworks */, - AFD56F2F0996AB8A00BA26F7 /* Rez */, AFA3D91F09C03D3300E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20003,7 +19774,6 @@ AFD56F520996AEEE00BA26F7 /* Resources */, AFD56F540996AEEE00BA26F7 /* Sources */, AFD56F570996AEEE00BA26F7 /* Frameworks */, - AFD56F5B0996AEEE00BA26F7 /* Rez */, AFA3D92109C03D3600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20023,7 +19793,6 @@ AFD56F6E0996B01600BA26F7 /* Resources */, AFD56F700996B01600BA26F7 /* Sources */, AFD56F730996B01600BA26F7 /* Frameworks */, - AFD56F770996B01600BA26F7 /* Rez */, AFA3D92309C03D3A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20043,7 +19812,6 @@ AFD56F8F0996B09400BA26F7 /* Resources */, AFD56F910996B09400BA26F7 /* Sources */, AFD56F940996B09400BA26F7 /* Frameworks */, - AFD56F980996B09400BA26F7 /* Rez */, AFA3D92909C03D4400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20063,7 +19831,6 @@ AFD56FA60996B10F00BA26F7 /* Resources */, AFD56FA80996B10F00BA26F7 /* Sources */, AFD56FAB0996B10F00BA26F7 /* Frameworks */, - AFD56FAF0996B10F00BA26F7 /* Rez */, AFA3D92B09C03D4700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20083,7 +19850,6 @@ AFD56FBC0996B18F00BA26F7 /* Resources */, AFD56FBE0996B18F00BA26F7 /* Sources */, AFD56FC10996B18F00BA26F7 /* Frameworks */, - AFD56FC50996B18F00BA26F7 /* Rez */, AFA3D92D09C03D4A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20103,7 +19869,6 @@ AFD56FD20996B20900BA26F7 /* Resources */, AFD56FD40996B20900BA26F7 /* Sources */, AFD56FD70996B20900BA26F7 /* Frameworks */, - AFD56FDB0996B20900BA26F7 /* Rez */, AFA3D92F09C03D4E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20123,7 +19888,6 @@ AFD56FFB0996B43800BA26F7 /* Resources */, AFD56FFD0996B43800BA26F7 /* Sources */, AFD570000996B43800BA26F7 /* Frameworks */, - AFD570040996B43800BA26F7 /* Rez */, AFA3D93709C03D5B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20143,7 +19907,6 @@ AFD570120996B4CC00BA26F7 /* Resources */, AFD570140996B4CC00BA26F7 /* Sources */, AFD570170996B4CC00BA26F7 /* Frameworks */, - AFD5701B0996B4CC00BA26F7 /* Rez */, AFA3DBA209C0424C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20163,7 +19926,6 @@ AFD570290996B56D00BA26F7 /* Resources */, AFD5702B0996B56D00BA26F7 /* Sources */, AFD5702E0996B56D00BA26F7 /* Frameworks */, - AFD570320996B56D00BA26F7 /* Rez */, AFA3D93D09C03D6C00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20183,7 +19945,6 @@ AFD570460996B61600BA26F7 /* Resources */, AFD570480996B61600BA26F7 /* Sources */, AFD5704B0996B61600BA26F7 /* Frameworks */, - AFD5704F0996B61600BA26F7 /* Rez */, AFA3D93F09C03D6F00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20203,7 +19964,6 @@ AFD5705C0996B6A300BA26F7 /* Resources */, AFD5705E0996B6A300BA26F7 /* Sources */, AFD570610996B6A300BA26F7 /* Frameworks */, - AFD570650996B6A300BA26F7 /* Rez */, AFA3D91309C03D1E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20223,7 +19983,6 @@ AFD570720996B72700BA26F7 /* Resources */, AFD570740996B72700BA26F7 /* Sources */, AFD570770996B72700BA26F7 /* Frameworks */, - AFD5707B0996B72700BA26F7 /* Rez */, AFA3D93309C03D5400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20243,7 +20002,6 @@ AFD570880996B80300BA26F7 /* Resources */, AFD5708A0996B80300BA26F7 /* Sources */, AFD5708D0996B80300BA26F7 /* Frameworks */, - AFD570910996B80300BA26F7 /* Rez */, AFA3D94709C03D7E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20263,7 +20021,6 @@ AFD5709E0996B88E00BA26F7 /* Resources */, AFD570A00996B88E00BA26F7 /* Sources */, AFD570A30996B88E00BA26F7 /* Frameworks */, - AFD570A70996B88E00BA26F7 /* Rez */, AFA3D94B09C03D8500E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20283,7 +20040,6 @@ AFD570B40996B93000BA26F7 /* Resources */, AFD570B60996B93000BA26F7 /* Sources */, AFD570B90996B93000BA26F7 /* Frameworks */, - AFD570BD0996B93000BA26F7 /* Rez */, AFA3D93B09C03D6200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20303,7 +20059,6 @@ AFD570CC0996B9F800BA26F7 /* Resources */, AFD570CE0996B9F800BA26F7 /* Sources */, AFD570D10996B9F800BA26F7 /* Frameworks */, - AFD570D50996B9F800BA26F7 /* Rez */, AFA3D90109C03D0000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20323,7 +20078,6 @@ AFD570ED0996BBBF00BA26F7 /* Resources */, AFD570EF0996BBBF00BA26F7 /* Sources */, AFD570F20996BBBF00BA26F7 /* Frameworks */, - AFD570F60996BBBF00BA26F7 /* Rez */, AFA3D91909C03D2700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20343,7 +20097,6 @@ AFD571160996BE9300BA26F7 /* Resources */, AFD571180996BE9300BA26F7 /* Sources */, AFD5711B0996BE9300BA26F7 /* Frameworks */, - AFD5711F0996BE9300BA26F7 /* Rez */, AFA3D90D09C03D1400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20363,7 +20116,6 @@ AFD5712F0996BF2E00BA26F7 /* Resources */, AFD571310996BF2E00BA26F7 /* Sources */, AFD571340996BF2E00BA26F7 /* Frameworks */, - AFD571380996BF2E00BA26F7 /* Rez */, AFA3D90309C03D0400E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20383,7 +20135,6 @@ AFD571460996C01700BA26F7 /* Resources */, AFD571480996C01700BA26F7 /* Sources */, AFD5714B0996C01700BA26F7 /* Frameworks */, - AFD5714F0996C01700BA26F7 /* Rez */, AFA3D91109C03D1B00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20403,7 +20154,6 @@ AFD5715C0996C0CE00BA26F7 /* Resources */, AFD5715E0996C0CE00BA26F7 /* Sources */, AFD571610996C0CE00BA26F7 /* Frameworks */, - AFD571650996C0CE00BA26F7 /* Rez */, AFA3D94509C03D7A00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20423,7 +20173,6 @@ AFD571B80996D9DC00BA26F7 /* Resources */, AFD571BA0996D9DC00BA26F7 /* Sources */, AFD571BD0996D9DC00BA26F7 /* Frameworks */, - AFD571C10996D9DC00BA26F7 /* Rez */, AFA3D92509C03D3D00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20443,7 +20192,6 @@ AFD572250996E4A300BA26F7 /* Resources */, AFD572270996E4A300BA26F7 /* Sources */, AFD5722A0996E4A300BA26F7 /* Frameworks */, - AFD5722E0996E4A300BA26F7 /* Rez */, AFA3D94309C03D7600E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20463,7 +20211,6 @@ AFD572700996EE8500BA26F7 /* Resources */, AFD572720996EE8500BA26F7 /* Sources */, AFD572750996EE8500BA26F7 /* Frameworks */, - AFD572790996EE8500BA26F7 /* Rez */, AFA3D93909C03D5E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20483,7 +20230,6 @@ AFD572A80996F99600BA26F7 /* Resources */, AFD572AA0996F99600BA26F7 /* Sources */, AFD572AD0996F99600BA26F7 /* Frameworks */, - AFD572B10996F99600BA26F7 /* Rez */, AFA3D90509C03D0700E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20503,7 +20249,6 @@ AFD572C50996FC0F00BA26F7 /* Resources */, AFD572C70996FC0F00BA26F7 /* Sources */, AFD572CA0996FC0F00BA26F7 /* Frameworks */, - AFD572CE0996FC0F00BA26F7 /* Rez */, AFA3D90909C03D0E00E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20523,7 +20268,6 @@ AFD572FC099701C000BA26F7 /* Resources */, AFD572FE099701C000BA26F7 /* Sources */, AFD57301099701C000BA26F7 /* Frameworks */, - AFD57305099701C000BA26F7 /* Rez */, AFA3D92709C03D4000E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20543,7 +20287,6 @@ AFD573600997411200BA26F7 /* Resources */, AFD573620997411200BA26F7 /* Sources */, AFD573650997411200BA26F7 /* Frameworks */, - AFD573690997411200BA26F7 /* Rez */, AFA3D94109C03D7200E4CFCA /* Run Update Info Plist */, ); buildRules = ( @@ -20563,7 +20306,6 @@ AFD704C528308724002A8EB0 /* Resources */, AFD704C728308724002A8EB0 /* Sources */, AFD704CA28308724002A8EB0 /* Frameworks */, - AFD704D228308724002A8EB0 /* Rez */, AFD704D328308724002A8EB0 /* Run Update Info Plist */, ); buildRules = ( @@ -20583,7 +20325,6 @@ AFD77E5E20C23F8600A3638D /* Resources */, AFD77E6020C23F8600A3638D /* Sources */, AFD77E6320C23F8600A3638D /* Frameworks */, - AFD77E6B20C23F8600A3638D /* Rez */, AFD77E6C20C23F8600A3638D /* Run Update Info Plist */, ); buildRules = ( @@ -20603,7 +20344,6 @@ AFDA6591178A52B70070D24B /* Resources */, AFDA6593178A52B70070D24B /* Sources */, AFDA6596178A52B70070D24B /* Frameworks */, - AFDA659C178A52B70070D24B /* Rez */, AFDA659D178A52B70070D24B /* Run Update Info Plist */, ); buildRules = ( @@ -20623,7 +20363,6 @@ AFE2A4590E2E904600ADB298 /* Resources */, AFE2A45B0E2E904600ADB298 /* Sources */, AFE2A45E0E2E904600ADB298 /* Frameworks */, - AFE2A4650E2E904600ADB298 /* Rez */, AFE2A4660E2E904600ADB298 /* Run Update Info Plist */, ); buildRules = ( @@ -20644,7 +20383,6 @@ AFE30BEB0E52B14700CCF4A5 /* Resources */, AFE30BED0E52B14700CCF4A5 /* Sources */, AFE30BF00E52B14700CCF4A5 /* Frameworks */, - AFE30BF70E52B14700CCF4A5 /* Rez */, AFE30BF80E52B14700CCF4A5 /* Run Update Info Plist */, ); buildRules = ( @@ -20664,7 +20402,6 @@ AFE6A1850CDD7B2E002805BF /* Resources */, AFE6A1870CDD7B2E002805BF /* Sources */, AFE6A18B0CDD7B2E002805BF /* Frameworks */, - AFE6A1920CDD7B2E002805BF /* Rez */, AFE6A1930CDD7B2E002805BF /* Run Update Info Plist */, ); buildRules = ( @@ -20684,7 +20421,6 @@ AFE6A41E0CDD7FAA002805BF /* Resources */, AFE6A4210CDD7FAA002805BF /* Sources */, AFE6A4240CDD7FAA002805BF /* Frameworks */, - AFE6A4280CDD7FAA002805BF /* Rez */, AFE6A4290CDD7FAA002805BF /* Run Update Info Plist */, ); buildRules = ( @@ -20704,7 +20440,6 @@ AFEC23D01CB6EAE100DE138F /* Resources */, AFEC23D21CB6EAE100DE138F /* Sources */, AFEC23D51CB6EAE100DE138F /* Frameworks */, - AFEC23DD1CB6EAE100DE138F /* Rez */, AFEC23DE1CB6EAE100DE138F /* Run Update Info Plist */, ); buildRules = ( @@ -20724,7 +20459,6 @@ AFEE10501D13406000AAC8F7 /* Resources */, AFEE10521D13406000AAC8F7 /* Sources */, AFEE10551D13406000AAC8F7 /* Frameworks */, - AFEE105D1D13406000AAC8F7 /* Rez */, AFEE105E1D13406000AAC8F7 /* Run Update Info Plist */, ); buildRules = ( @@ -20744,7 +20478,6 @@ AFEE106F1D15EB0800AAC8F7 /* Resources */, AFEE10711D15EB0800AAC8F7 /* Sources */, AFEE10741D15EB0800AAC8F7 /* Frameworks */, - AFEE107C1D15EB0800AAC8F7 /* Rez */, AFEE107D1D15EB0800AAC8F7 /* Run Update Info Plist */, ); buildRules = ( @@ -20764,7 +20497,6 @@ AFEE108E1D17E20B00AAC8F7 /* Resources */, AFEE10901D17E20B00AAC8F7 /* Sources */, AFEE10931D17E20B00AAC8F7 /* Frameworks */, - AFEE109B1D17E20B00AAC8F7 /* Rez */, AFEE109C1D17E20B00AAC8F7 /* Run Update Info Plist */, ); buildRules = ( @@ -20784,7 +20516,6 @@ AFF2868217860E830050A578 /* Resources */, AFF2868417860E830050A578 /* Sources */, AFF2868717860E830050A578 /* Frameworks */, - AFF2868D17860E830050A578 /* Rez */, AFF2868E17860E830050A578 /* Run Update Info Plist */, ); buildRules = ( @@ -20804,7 +20535,6 @@ AFF3C9EB17CCAC440028F240 /* Resources */, AFF3C9ED17CCAC440028F240 /* Sources */, AFF3C9F017CCAC440028F240 /* Frameworks */, - AFF3C9F617CCAC440028F240 /* Rez */, AFF3C9F717CCAC440028F240 /* Run Update Info Plist */, ); buildRules = ( @@ -20824,7 +20554,6 @@ AFF449E32275494400DB8EDB /* Resources */, AFF449E52275494400DB8EDB /* Sources */, AFF449E82275494400DB8EDB /* Frameworks */, - AFF449F02275494400DB8EDB /* Rez */, AFF449F12275494400DB8EDB /* Run Update Info Plist */, ); buildRules = ( @@ -20844,7 +20573,6 @@ AFF463390C4403E400EE6509 /* Resources */, AFF4633B0C4403E400EE6509 /* Sources */, AFF4633E0C4403E400EE6509 /* Frameworks */, - AFF463420C4403E400EE6509 /* Rez */, AFF463430C4403E400EE6509 /* Run Update Info Plist */, ); buildRules = ( @@ -20864,7 +20592,6 @@ AFF4635B0C440AEF00EE6509 /* Resources */, AFF4635D0C440AEF00EE6509 /* Sources */, AFF463600C440AEF00EE6509 /* Frameworks */, - AFF463670C440AEF00EE6509 /* Rez */, AFF463680C440AEF00EE6509 /* Run Update Info Plist */, ); buildRules = ( @@ -20884,7 +20611,6 @@ AFFAB31819158CE40020F021 /* Resources */, AFFAB31A19158CE40020F021 /* Sources */, AFFAB31D19158CE40020F021 /* Frameworks */, - AFFAB32419158CE40020F021 /* Rez */, AFFAB32519158CE40020F021 /* Run Update Info Plist */, ); buildRules = ( @@ -20904,7 +20630,6 @@ CE3D01541B76F4C100993C75 /* Resources */, CE3D01561B76F4C100993C75 /* Sources */, CE3D01591B76F4C100993C75 /* Frameworks */, - CE3D01611B76F4C100993C75 /* Rez */, CE3D01621B76F4C100993C75 /* Run Update Info Plist */, ); buildRules = ( @@ -20924,7 +20649,7 @@ isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 1430; + LastUpgradeCheck = 1500; TargetAttributes = { AF08398F09930B6B00277BE9 = { DevelopmentTeam = 4627ATJELP; @@ -23421,6 +23146,7 @@ buildActionMask = 2147483647; files = ( AF7F06152A50C18C00E35B45 /* droste.xml in Resources */, + AF7602542A9FBD7800460454 /* xscreensaver-getimage-file in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24961,1927 +24687,6 @@ }; /* End PBXResourcesBuildPhase section */ -/* Begin PBXRezBuildPhase section */ - AF08399E09930B6B00277BE9 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF083A44099311D700277BE9 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF0BF6DD29456B2E000D9473 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF0DC7B80C4C73F600D76972 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF0DCA510C4CBB0D00D76972 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF1A176E0D6D6EE3008AF328 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF1B0FB71D7AB4740011DBE4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF2107811FD23BDD00B61EA9 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF296A652A5A776D007441BF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF2A635128401496003791B4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF2D0D35241D7C870001D8B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF32D9EF0F3AD0B40080F535 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF3581D01431D47B00E09C51 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF358211143330F900E09C51 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF35E89B0E63823600691F2F /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF39382A1D0FBD6A00205406 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF39E291198A11F60064A58D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF3C71540D624BF50030CC0D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF3EC9882035154C00180A35 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF41E962201D49DB0098E253 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF43640C241D84CE00966603 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF46E9DF1CBBA2B300240FBC /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF476FC2099D154F001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF476FE7099D1686001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477058099D4385001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477175099D4786001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47718B099D4803001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4771B3099D4949001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4771E7099D4D9A001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4771FE099D4E63001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477214099D4EE8001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47722A099D4F67001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47725F099D5717001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477277099D57B9001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47728F099D5926001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47738E099D65A1001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4773A6099D6648001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4773CD099D67B9001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47740E099D69E7001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477433099D7C70001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47744E099D7D33001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47748F099D89E4001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4774A5099D8A74001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4774C0099D8B5F001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4774DA099D8BFF001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477569099D9A1A001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47758F099D9C28001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4775AB099D9CF7001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4775E4099D9F69001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4775FE099DA030001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47761F099DA26C001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477650099DA6D0001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477666099DA78E001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47767C099DA849001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47769B099DAA6F001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4776B6099DABDD001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4776CC099DAC8A001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4776E7099DADDF001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4776FD099DAE7A001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477719099DAF9F001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47772F099DB044001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47775E099DB61E001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477780099DB965001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF47779C099DBA90001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4777DD099DC183001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4778B7099DDB79001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4778D3099DDCAE001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4778F4099DDDC8001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477915099DE379001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF477936099DE4C7001F091E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF480C54098E301400FB32B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF480D7D098EEDDE00FB32B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4810F709909FBA00FB32B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4812600990CE2700FB32B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4812C20990D3D900FB32B8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF48DEFE0A0C25E000F94CF9 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4A3458102A593600A81B2A /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4FD6F50CE7A486005EE58E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF4FF4C90D52CBDE00666F98 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF5C9B081A0CCE6E00B0147A /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF5ECEBB2116B1A400069433 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF62D6282180070600C57C42 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF633C111EE0BA6F00AB33BD /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF63A8011AB4EDDB00593C75 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF642401099FF9C2000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF6425D809A18855000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF6425F809A189EC000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF64261B09A18D6C000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF64263809A18F54000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF64265B09A19229000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF64268709A194B0000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF64277D09A1D37A000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF6427B409A2DE36000F4CD4 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF688AC9257C04D200C91EAE /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF68A48D19196CF800D41CD1 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF69E201270BA54600358595 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF6C6D84226AE4FC0065A748 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF6E25C2276C3F030032E38F /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF70B77D2A81D025007C1EB8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF70B79E2A8320A6007C1EB8 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF73FF311A09877F00E485E9 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF75110D1782B5B900380EA1 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7776F209B63ABF00EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77772609B6416100EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77774D09B6446500EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77778409B6497800EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77779E09B64A5200EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7777B809B64B2600EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7777E009B64C6B00EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7777FA09B64E3100EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77782109B6504400EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77785409B6528100EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77787009B6536000EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF77788B09B6563500EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7778B109B659C800EA3033 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF78D184142DD8F3002AAF77 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF794F70099748450059A8B0 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF794F9A09974A320059A8B0 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF794FD909974FA60059A8B0 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF796D2A26E5C10700DA6562 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7ACFCF19FF0A9200BD752B /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF7F06092A50BFAB00E35B45 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF81E01025845C2A00CFC475 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF95059425670ECC00C1F257 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF96014E25758F9F007FA31B /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975739099C317000B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975781099C374A00B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9757CE099C3E6300B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975814099C41D500B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975871099C475900B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975A42099C681F00B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975A78099C6AB200B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975A92099C6BC300B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975AE3099C6EB100B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975B08099C6FE400B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975C1E099C8C1500B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975C4A099C8DCF00B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975C6A099C8F3F00B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF975D5F099CA0F000B05160 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9770150989D0F6001F8B92 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF97703C0989D1E6001F8B92 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9770790989D2F6001F8B92 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF998EE90A083DB30051049D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D467209B5109C006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D475009B5300A006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D476B09B53166006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D48E709B53322006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D490009B535DA006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D493709B53CBA006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D496009B53FC9006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D497809B5411D006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D49A309B544C2006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D4C7509B59F27006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D4CF309B5AA8E006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D4D8B09B5B2DC006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D4DBC09B5B71E006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF9D4DFA09B5BB19006E59CF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA0B12E241CE69E0071E35D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA2119C1CD59DAF00C0D2A1 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA3393B0B058505002B0E7D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55956099330B000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5597B0993317900F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA559A00993322100F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA559C30993328000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA559DD0993330600F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55A110993340300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55A2E099334A000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55A870993364300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55ADD09933CEF00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55B1A09933E0500F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55B3309933E8D00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55B8709933F7200F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55B9F09933FDA00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55BB9099340CE00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55BF20993429100F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55C1C0993431300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55C85099349A600F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55CB709934BB200F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55CDA09934CE400F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55D4A0993565300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55D700993584B00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55D8D099358C400F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55DD609935D7000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55DFF09935E4900F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55E1B09935EDC00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55E3E09935F8E00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55E5C09935FF900F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55EDF099360E300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55F1A099361B700F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55F380993622F00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55F500993629000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55F800993643600F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA55FE109936BFA00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5600709936C6D00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5602209936CC800F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5604009936D5100F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5605809936E2100F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5607009936F3800F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA560BC0993718D00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5610B0993781600F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5616609937C0D00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5618909937CF100F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA561AB09937D7E00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA562150993849F00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5622D0993852500F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA562CD099392C600F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA562E8099393C900F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA563000993943B00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA563220993951000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5633F099395ED00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA5635F099396C000F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA56387099397B300F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA563B2099398BB00F3E977 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFA6AB0020999950006D2685 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFAAE397207D6343007A515C /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFACE8831CC83458008B24CD /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFADD33B24B67100005456DC /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFAE147F279275BE00C62683 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFB591B5178B812C00EA4005 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFC0E8BB1CDC601A008CAFAC /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFC5CFE62044AA23004CEB5E /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFCF834B1AF5B515008BB7E1 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD51B2B0F063B4A00471C02 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56E000996A03800BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56EBA0996A72600BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56EE60996A95700BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56F170996AAFA00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56F2F0996AB8A00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56F5B0996AEEE00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56F770996B01600BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56F980996B09400BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56FAF0996B10F00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56FC50996B18F00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD56FDB0996B20900BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570040996B43800BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5701B0996B4CC00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570320996B56D00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5704F0996B61600BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570650996B6A300BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5707B0996B72700BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570910996B80300BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570A70996B88E00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570BD0996B93000BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570D50996B9F800BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD570F60996BBBF00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5711F0996BE9300BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD571380996BF2E00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5714F0996C01700BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD571650996C0CE00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD571C10996D9DC00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD5722E0996E4A300BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD572790996EE8500BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD572B10996F99600BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD572CE0996FC0F00BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD57305099701C000BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD573690997411200BA26F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD704D228308724002A8EB0 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFD77E6B20C23F8600A3638D /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFDA659C178A52B70070D24B /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFE2A4650E2E904600ADB298 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFE30BF70E52B14700CCF4A5 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFE6A1920CDD7B2E002805BF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFE6A4280CDD7FAA002805BF /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFEC23DD1CB6EAE100DE138F /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFEE105D1D13406000AAC8F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFEE107C1D15EB0800AAC8F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFEE109B1D17E20B00AAC8F7 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFF2868D17860E830050A578 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFF3C9F617CCAC440028F240 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFF449F02275494400DB8EDB /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFF463420C4403E400EE6509 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFF463670C440AEF00EE6509 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFFAB32419158CE40020F021 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CE3D01611B76F4C100993C75 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXRezBuildPhase section */ - /* Begin PBXShellScriptBuildPhase section */ AF0BF6DE29456B2E000D9473 /* Run Update Info Plist */ = { isa = PBXShellScriptBuildPhase; @@ -26951,7 +24756,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "codesign -v --force --deep -o runtime --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework/Versions/A/Resources/Autoupdate.app\ncodesign -v --force -o runtime --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework/Versions/A\n"; + shellScript = "codesign -v --force --deep -o runtime --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework/Versions/B/Updater.app\ncodesign -v --force -o runtime --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework/Versions/B\n"; showEnvVarsInLog = 0; }; AF1A176F0D6D6EE3008AF328 /* Run Update Info Plist */ = { @@ -38346,6 +36151,8 @@ isa = XCBuildConfiguration; buildSettings = { BUNDLE_IDENTIFIER = "org.jwz.${PROJECT_NAME:rfc1034identifier}.updater"; + CODE_SIGN_STYLE = Manual; + COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(SRCROOT)", @@ -38355,6 +36162,7 @@ "OTHER_CFLAGS[sdk=macosx*]" = "${OBJC_NO_GC_CFLAGS}"; PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)"; PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; WRAPPER_EXTENSION = app; }; name = Debug; @@ -38363,6 +36171,8 @@ isa = XCBuildConfiguration; buildSettings = { BUNDLE_IDENTIFIER = "org.jwz.${PROJECT_NAME:rfc1034identifier}.updater"; + CODE_SIGN_STYLE = Manual; + COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(SRCROOT)", @@ -38372,6 +36182,7 @@ "OTHER_CFLAGS[sdk=macosx*]" = "${OBJC_NO_GC_CFLAGS}"; PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)"; PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; WRAPPER_EXTENSION = app; }; name = Release; diff --git a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Abstractile.xcscheme b/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Abstractile.xcscheme index a19bb40f..21949a56 100644 --- a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Abstractile.xcscheme +++ b/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Abstractile.xcscheme @@ -1,6 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Deluxe.xcscheme.~2~ b/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Deluxe.xcscheme.~2~ deleted file mode 100644 index 1afd5ac1..00000000 --- a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Deluxe.xcscheme.~2~ +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Demon.xcscheme b/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Demon.xcscheme index d9f75877..4627ce0c 100644 --- a/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Demon.xcscheme +++ b/OSX/xscreensaver.xcodeproj/xcshareddata/xcschemes/Demon.xcscheme @@ -1,6 +1,6 @@ colors, 0, sizeof(st->colors)); + for (i = 0; i < countof(st->colors); i++) + st->colors[i].pixel = BlackPixelOfScreen (st->xgwa.screen); + } + if (st->d3d) { st->shades = (st->d3d==D3D_TILED) ? 5 : st->lwid/2+1; st->ncolors=4+random()%4; diff --git a/hacks/config/README b/hacks/config/README index 26ae0aaa..468a29fd 100644 --- a/hacks/config/README +++ b/hacks/config/README @@ -4,8 +4,8 @@ a screen saver and locker for the X window system by Jamie Zawinski - version 6.07 - 29-Aug-2023 + version 6.08 + 10-Oct-2023 https://www.jwz.org/xscreensaver/ diff --git a/hacks/config/gltext.xml b/hacks/config/gltext.xml index df821e4a..1176b9c4 100644 --- a/hacks/config/gltext.xml +++ b/hacks/config/gltext.xml @@ -39,6 +39,10 @@ + + <_description> diff --git a/hacks/glx/glplanet.c b/hacks/glx/glplanet.c index 454b9ebc..7f446e5e 100644 --- a/hacks/glx/glplanet.c +++ b/hacks/glx/glplanet.c @@ -835,10 +835,8 @@ draw_planet (ModeInfo * mi) if (gp->z < 0) gp->z += 1; } -# ifndef GL_LINE_SMOOTH_BROKEN glEnable(GL_LINE_SMOOTH); glEnable(GL_POINT_SMOOTH); -# endif glEnable(GL_DEPTH_TEST); glEnable(GL_CULL_FACE); glCullFace(GL_BACK); @@ -1049,9 +1047,7 @@ draw_planet (ModeInfo * mi) glScalef (1.02, 1.02, 1.02); glDisable (GL_TEXTURE_2D); glDisable (GL_LIGHTING); -# ifndef GL_LINE_SMOOTH_BROKEN glDisable (GL_LINE_SMOOTH); -# endif glColor3f (0.1, 0.3, 0.1); glCallList (gp->latlonglist); mi->polygon_count += 24*24; @@ -1067,9 +1063,7 @@ draw_planet (ModeInfo * mi) glScalef (1.02, 1.02, 1.02); glDisable (GL_TEXTURE_2D); glDisable (GL_LIGHTING); -# ifndef GL_LINE_SMOOTH_BROKEN glDisable (GL_LINE_SMOOTH); -# endif glColor3f (0.1, 0.3, 0.1); glCallList (gp->tzlist); mi->polygon_count += gp->tzpoints; diff --git a/hacks/glx/handsy.c b/hacks/glx/handsy.c index e943b65e..f03c7084 100644 --- a/hacks/glx/handsy.c +++ b/hacks/glx/handsy.c @@ -1,4 +1,4 @@ -/* handsy, Copyright (c) 2018 Jamie Zawinski +/* handsy, Copyright © 2018-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -460,9 +460,7 @@ draw_ground (ModeInfo *mi) GLfloat fog_color[4] = { 0, 0, 0, 1 }; glLineWidth (4); -# ifndef GL_LINE_SMOOTH_BROKEN glEnable (GL_LINE_SMOOTH); -# endif glHint (GL_LINE_SMOOTH_HINT, GL_NICEST); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_BLEND); @@ -502,9 +500,7 @@ draw_ground (ModeInfo *mi) if (!wire) { -# ifndef GL_LINE_SMOOTH_BROKEN glDisable (GL_LINE_SMOOTH); -# endif glDisable (GL_BLEND); glDisable (GL_FOG); } diff --git a/hacks/glx/sphereeversion-analytic.c b/hacks/glx/sphereeversion-analytic.c index 42eb6324..267ab30a 100644 --- a/hacks/glx/sphereeversion-analytic.c +++ b/hacks/glx/sphereeversion-analytic.c @@ -1374,9 +1374,7 @@ static int bednorz_sphere_eversion_ff(ModeInfo *mi, float phi_min, { glColor4f(1.0f,1.0f,1.0f,1.0f); glLineWidth(2.0f); -# ifndef GL_LINE_SMOOTH_BROKEN glEnable(GL_LINE_SMOOTH); -# endif glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); glDisable(GL_LIGHTING); glDisable(GL_LIGHT0); @@ -1426,9 +1424,7 @@ static int bednorz_sphere_eversion_ff(ModeInfo *mi, float phi_min, } glLineWidth(1.0f); glPolygonOffset(0.0f,0.0f); -# ifndef GL_LINE_SMOOTH_BROKEN glDisable(GL_LINE_SMOOTH); -# endif glBlendFunc(GL_SRC_ALPHA,GL_ONE); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); diff --git a/hacks/glx/vigilance.c b/hacks/glx/vigilance.c index e809f424..eb882fe3 100644 --- a/hacks/glx/vigilance.c +++ b/hacks/glx/vigilance.c @@ -1,4 +1,4 @@ -/* vigilance, Copyright (c) 2017-2018 Jamie Zawinski +/* vigilance, Copyright © 2017-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -986,9 +986,7 @@ draw_ground (ModeInfo *mi, GLfloat color[4]) GLfloat fog_color[4] = { 0, 0, 0, 1 }; glLineWidth (2); -# ifndef GL_LINE_SMOOTH_BROKEN glEnable (GL_LINE_SMOOTH); -# endif glHint (GL_LINE_SMOOTH_HINT, GL_NICEST); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_BLEND); @@ -1031,10 +1029,8 @@ draw_ground (ModeInfo *mi, GLfloat color[4]) glRotatef (90, 1, 0, 0); } -# ifndef GL_LINE_SMOOTH_BROKEN if (!wire) glDisable (GL_LINE_SMOOTH); -# endif glPopMatrix(); diff --git a/hacks/glx/winduprobot.c b/hacks/glx/winduprobot.c index 36121fc2..5a17c724 100644 --- a/hacks/glx/winduprobot.c +++ b/hacks/glx/winduprobot.c @@ -1,4 +1,4 @@ -/* winduprobot, Copyright (c) 2014-2018 Jamie Zawinski +/* winduprobot, Copyright © 2014-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -1675,9 +1675,7 @@ draw_ground (ModeInfo *mi, GLfloat color[4]) GLfloat fog_color[4] = { 0, 0, 0, 1 }; glLineWidth (4); -# ifndef GL_LINE_SMOOTH_BROKEN glEnable (GL_LINE_SMOOTH); -# endif glHint (GL_LINE_SMOOTH_HINT, GL_NICEST); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_BLEND); @@ -1717,9 +1715,7 @@ draw_ground (ModeInfo *mi, GLfloat color[4]) if (!wire) { -# ifndef GL_LINE_SMOOTH_BROKEN glDisable (GL_LINE_SMOOTH); -# endif glDisable (GL_BLEND); glDisable (GL_FOG); } diff --git a/hacks/glx/xlock-gl-utils.c b/hacks/glx/xlock-gl-utils.c index e4505ab1..ebddf8f9 100644 --- a/hacks/glx/xlock-gl-utils.c +++ b/hacks/glx/xlock-gl-utils.c @@ -1,5 +1,5 @@ /* xlock-gl.c --- xscreensaver compatibility layer for xlockmore GL modules. - * xscreensaver, Copyright (c) 1997-2021 Jamie Zawinski + * xscreensaver, Copyright © 1997-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -49,6 +49,20 @@ BadValue_ehandler (Display *dpy, XErrorEvent *error) #endif /* !HAVE_EGL */ +#undef glEnable +void (* glEnable_fn) (GLuint) = glEnable; + +#if defined(__linux__) && defined(__arm__) /* Raspberry Pi-adjacent */ +# define PI_LIKE +static void +glEnable_bad_line_smooth (GLuint cap) +{ + if (cap != GL_LINE_SMOOTH) + glEnable (cap); +} +#endif + + GLXContext * init_GL(ModeInfo * mi) { @@ -260,6 +274,18 @@ init_GL(ModeInfo * mi) glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + /* Sep 2022, Sep 2023: The Raspberry Pi 4b Broadcom driver doesn't do + GL_LINE_SMOOTH properly: lines show up as barely-visible static noise. + If we're on ARM, check the GL vendor and maybe disable GL_LINE_SMOOTH. + */ +# ifdef PI_LIKE + { + const char *s = (const char *) glGetString (GL_VENDOR); + if (s && !strcmp (s, "Broadcom")) + glEnable_fn = glEnable_bad_line_smooth; + } +# endif + /* GLXContext is already a pointer type. Why this function returns a pointer to a pointer, I have no idea... */ diff --git a/hacks/screenhackI.h b/hacks/screenhackI.h index 0517651c..11a9d7d4 100644 --- a/hacks/screenhackI.h +++ b/hacks/screenhackI.h @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright © 1992-2022 Jamie Zawinski +/* xscreensaver, Copyright © 1992-2023 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -121,14 +121,10 @@ # include # endif - /* Sep 2022: The current Raspberry Pi 4b drivers don't do GL_LINE_SMOOTH - properly: lines show up as barely-visible static noise. So disable - it globally by just aliasing it to something mostly harmless. */ -# if defined(__linux__) && defined(__aarch64__) -# undef GL_LINE_SMOOTH -# define GL_LINE_SMOOTH GL_NORMALIZE -# define GL_LINE_SMOOTH_BROKEN /* To protect glDiable(GL_LINE_SMOOTH) */ -# endif + /* Sep 2022, Sep 2023: The Raspberry Pi 4b Broadcom driver doesn't do + GL_LINE_SMOOTH properly, so we must disable it. See init_GL(). */ + extern void (* glEnable_fn) (GLuint); +# define glEnable (* glEnable_fn) # endif /* real X11 */ diff --git a/hacks/webcollage b/hacks/webcollage index 1e0474a8..274f535e 100755 --- a/hacks/webcollage +++ b/hacks/webcollage @@ -47,7 +47,7 @@ use LWP::UserAgent; my $progname = $0; $progname =~ s@.*/@@g; -my ($version) = ('$Revision: 1.191 $' =~ m/\s(\d[.\d]+)\s/s); +my ($version) = ('$Revision: 1.192 $' =~ m/\s(\d[.\d]+)\s/s); my $copyright = "WebCollage $version, Copyright (c) 1999-2022" . " Jamie Zawinski \n" . " https://www.jwz.org/webcollage/\n"; @@ -106,8 +106,8 @@ my @search_methods = ( # So let's try Bing instead. No rate limiting yet! # 13, "bingphotos", \&pick_from_bing_image_photos, - 11, "bingimgs", \&pick_from_bing_images, - 10, "bingnums", \&pick_from_bing_image_numbers, + 10, "bingimgs", \&pick_from_bing_images, + 9, "bingnums", \&pick_from_bing_image_numbers, 20, "flickr_recent", \&pick_from_flickr_recent, 15, "flickr_random", \&pick_from_flickr_random, @@ -128,13 +128,9 @@ my @search_methods = ( # 0, "twitpic", \&pick_from_twitpic_images, # 0, "twitter", \&pick_from_twitter_images, - # This is a cute way to search for a certain webcams. - # Not included in default methods, since these images - # aren't terribly interesting by themselves. - # See also "SurveillanceSaver". - # Stopped working some time in before 2022 - # - # 0, "securitycam", \&pick_from_security_camera, + # Images from random unsecured surveillance cameras, + # via insecam.org. + 2, "securitycam", \&pick_from_security_camera, # Nonfunctional as of June 2011. # 0, "altavista", \&pick_from_alta_vista_random_link, @@ -1306,53 +1302,139 @@ sub pick_image_from_pages($$$$@) { ############################################################################ # -# Pick images from Aptix security cameras -# Cribbed liberally from google image search code. -# By Jason Sullivan +# Pick security camera images from the insecam website. +# Grab a random page from the "byrating" and the "bynew" list of pages. +# Push all the image urls into the cache array (after converting to single +# image if necessary), then return image URLs until the cache is empty. +# By Jason Sullivan # ############################################################################ -# Stopped working some time in before 2022 -#my $aptix_images_url = ("http://www.google.com/search" . -# "?q=inurl:%22jpg/image.jpg%3Fr%3D%22"); -# -## securitycam -#sub pick_from_security_camera($) { -# my ($timeout) = @_; -# -# my $page = (int(rand(9)) + 1); -# my $num = 20; # 20 images per page -# my $search_url = $aptix_images_url; -# -# if ($page > 1) { -# $search_url .= "&start=" . $page*$num; # page number -# $search_url .= "&num=" . $num; #images per page -# } -# -# my ($search_hit_count, @subpages) = -# pick_from_search_engine ($timeout, $search_url, ''); -# -# my @candidates = (); -# my %referers; -# foreach my $u (@subpages) { -# next if ($u =~ m@[/.]google\.com\b@i); # skip google builtins (most links) -# next unless ($u =~ m@jpg/image.jpg\?r=@i); # All pics contain this -# -# LOG ($verbose_filter, " candidate: $u"); -# push @candidates, $u; -# $referers{$u} = $u; -# } -# -# @candidates = depoison (@candidates); -# return () if ($#candidates < 0); -# my $i = int(rand($#candidates+1)); -# my $img = $candidates[$i]; -# my $ref = $referers{$img}; -# -# LOG ($verbose_load, "picked image " . ($i+1) . ": $img (on $ref)"); -# return ($ref, $img); -#} +my @insecam_urls = ("http://insecam.org/en/byrating/", "http://insecam.org/en/bynew/"); +my @insecam_cache = (); +my @insecam_match_regex = map { qr{$_} } ( + '(^.*\/webcapture\.jpg).*', + '(^.*cgi-bin\/viewer\/video\.jpg).*', + '(^.*cgi-bin)\/faststream\.jpg.*', + '(^.*\/GetOneShot).*', + '(^.*\/cgi-bin\/camera).*', + '(^.*\/cam_1)\.cgi.*', + '(^.*)\/mjpg\/video\.mjpg', + '(^.*\/jpg\/image\.jpg).*', + '(^.*\/jpgmulreq\/1\/image\.jpg.*)', + '(^.*\/onvif\/snapshot\/.*)', + '(^.*\/snap.jpg).*', + '(^.*\/SnapshotJPEG\?Resolution=\d+x\d+)\&.*', + '(^.*\/asp)\/video\.cgi.*', + '(^.*\/cgi-bin\/snapshot\.cgi\?chn=\d+),*', + '(^.*\/img)\/video\.mjpeg.*', + '(^.*)\/videostream\.cgi.*', + '(^.*\/oneshotimage1).*', + '(^.*)\/mjpeg\.cgi.*', + '(^.*\/__live\.jpg.*)', + '(^.*\/out\.jpg).*', + '(^.*\/cgi-bin\/CGIProxy\.fcgi\?cmd=snapPicture.*)', + '(^.*\/tmpfs\/auto\.jpg.*)', + '(^.*\/cgi-bin\/snapshot\.cgi.*)', + '(^.*)\/GetData.cgi\?.*', + '(^.*\/IMAGE\.JPG.*)', + '(^.*\/nph-jpeg\.cgi.*)', + '(^.*\/axis-cgi)/mjpg/video\.cgi.*', + '(^.*\/image\/Index.*)', + '(^.*)\/image\?speed.*', + '(^.*\/shot\.jpg\?rnd=.*)', + '(^.*)\/video\/mjpg\.cgi.*', + '(^.*\/\?action=)stream.*', + ); +my @insecam_match_replace = ( + "?command=snap&channel=1", + "", + "/image.jpg", + "", + "", + ".jpg", + "/jpg/image.jpg", + "", + "", + "", + "", + "", + "/image.cgi", + "/image.cgi", + "/snapshot.cgi", + "/snapshot.cgi", + "", + "image/jpeg.cgi", + "", + "", + "", + "", + "", + "/Webcam.jpg", + "", + "", + "/jpg/image.cgi", + "", + "/oneshotimage.jpg", + "", + "/image/jpeg.cgi", + "SKIP", + ); + +# securitycam +sub pick_from_security_camera($) { + my ($timeout) = @_; + if(scalar(@insecam_cache) == 0) { + foreach my $oneURL (@insecam_urls) { + my $page = (int(rand(1000)) + 1); + my $cam_page_url = $oneURL . "?page=$page"; + + my ( $base, $body ) = get_document ($cam_page_url, undef, $timeout); + if (!$base || !$body) { + $body = undef; + return; + } + + # Can't use pick_image_from_body because it wants actual images and we + # kinda have to massage the links here depending on the camera referenced. + # Most of this is just trimming off the ends. + foreach my $s (split (/\n/, $body)) { + if($s =~ /img\s+id=".*"\s+class=".*"\s+src="(.*)"/i) { + my($full) = $1; + my($match) = 0; + $full =~ s/\?COUNTER//; + $full =~ s/\?r=COUNTER//; + $full =~ s/(\&)?\;COUNTER//; + $full =~ s/(\&)?\;r(and)?=COUNTER//; + if($full =~ /COUNTER/) { + LOG($verbose_warnings, "Webcam source line unrecognized! $full"); + } + LOG ($verbose_filter, "FOUND URL $full"); + for(my $i = 0; $i < scalar(@insecam_match_regex); $i++) { + if($full =~ m{$insecam_match_regex[$i]}) { + if($insecam_match_replace[$i] ne "SKIP") { + push(@insecam_cache,$1 . $insecam_match_replace[$i]); + } + $match = 1; + last; + } + } + if($match == 0) { + LOG($verbose_warnings, "Webcam conversion unrecognized! $full"); + } + } + } + } + } + + if (scalar(@insecam_cache) != 0) { + my $img = shift(@insecam_cache); + LOG ($verbose_load, "picked image $img"); + return ($img, $img); + } + else { return (); } +} ############################################################################ # diff --git a/po/POTFILES.in b/po/POTFILES.in index 7dda4d29..bc1cd834 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,4 +1,4 @@ -# Auto-generated: Tue Aug 29 18:21:20 PDT 2023 +# Auto-generated: Tue Oct 10 17:37:06 PDT 2023 driver/demo-Gtk-conf.c driver/demo-Gtk.c driver/demo.ui diff --git a/utils/version.h b/utils/version.h index 4df6c22e..c7f32c58 100644 --- a/utils/version.h +++ b/utils/version.h @@ -1,4 +1,4 @@ static const char screensaver_id[] = - "@(#)xscreensaver 6.07 (29-Aug-2023), by Jamie Zawinski (jwz@jwz.org)"; -#define XSCREENSAVER_VERSION "6.07" -#define XSCREENSAVER_RELEASED 1693335600 + "@(#)xscreensaver 6.08 (10-Oct-2023), by Jamie Zawinski (jwz@jwz.org)"; +#define XSCREENSAVER_VERSION "6.08" +#define XSCREENSAVER_RELEASED 1696964400 diff --git a/xscreensaver.spec b/xscreensaver.spec index fe179787..65d9f227 100644 --- a/xscreensaver.spec +++ b/xscreensaver.spec @@ -1,5 +1,5 @@ %define name xscreensaver -%define version 6.07 +%define version 6.08 Summary: X screen saver and locker Name: %{name}