diff --git a/OS X Patcher.sh b/OS X Patcher.sh index 492d6dd..1f32538 100755 --- a/OS X Patcher.sh +++ b/OS X Patcher.sh @@ -313,13 +313,16 @@ Patch_Installer() echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched platform support check."${erase_style} echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching kernel flags."${erase_style} + if [[ $installer_version_short == "10.11" ]]; then + cp "$resources_path"/patch/com.apple.Boot.plist "$installer_volume_path"/Library/Preferences/SystemConfiguration + fi + sed -i '' 's||kext-dev-mode=1 mbasd=1|' "$installer_volume_path"/Library/Preferences/SystemConfiguration/com.apple.Boot.plist echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched kernel flags."${erase_style} if [[ $installer_version_short == "10.11" ]]; then echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching kernel cache."${erase_style} - rm "$installer_volume_path"/System/Library/PrelinkedKernels/prelinkedkernel - cp "$resources_path"/PrelinkedKernel/10.11/prelinkedkernel "$installer_volume_path"/System/Library/PrelinkedKernels + cp "$resources_path"/PrelinkedKernel/10.11/patchedkernel "$installer_volume_path"/System/Library/PrelinkedKernels echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched kernel cache."${erase_style} fi diff --git a/README.md b/README.md index 7f23aad..0ede191 100755 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ I'd like to the thank the following people, and many others, for their research, # Supported Macs ## iMacs -- iMac4,1 -- iMac4,2 +- iMac4,1 (with C2D CPU) +- iMac4,2 (with C2D CPU) - iMac5,1 - iMac5,2 ## MacBooks @@ -30,7 +30,7 @@ I'd like to the thank the following people, and many others, for their research, - MacBookPro2,1 - MacBookPro2,2 ## Mac minis -- Macmini1,1 +- Macmini1,1 (with C2D CPU) - Macmini2,1 ## Mac Pros - MacPro1,1 @@ -47,4 +47,4 @@ sudo ./OS\ X\ Patcher.sh —> runs the script with root permissions You might notice two little applications have been installed along with OS X Patcher's other patches. They help solve some issues and should be opened and configured after patching. NoSleep is open source and can be found [here](https://github.com/integralpro/nosleep). Brightness Slider is made by ACT Productions and can be found on the [Mac App Store](http://itunes.apple.com/us/app/brightness-control/id456624497?ls=1&mt=12). # Graphics acceleration -Your Mac won't support graphics acceleration with this patcher. This means brightness control and sleep won't work (see above) and applications that rely on your graphics card will perform slower or will simply not work. parrotgeek1 will soon release a patcher with support for graphics acceleration on certain Macs. \ No newline at end of file +Your Mac won't support graphics acceleration with this patcher. This means brightness control and sleep won't work (on non-ATI cards) (see above) and applications that rely on your graphics card will perform slower or will simply not work. parrotgeek1 will soon release a patcher with support for graphics acceleration on certain Macs. \ No newline at end of file diff --git a/resources/PrelinkedKernel/10.11/prelinkedkernel b/resources/PrelinkedKernel/10.11/patchedkernel similarity index 100% rename from resources/PrelinkedKernel/10.11/prelinkedkernel rename to resources/PrelinkedKernel/10.11/patchedkernel diff --git a/resources/patch.sh b/resources/patch.sh index 9f91605..495083e 100755 --- a/resources/patch.sh +++ b/resources/patch.sh @@ -301,7 +301,6 @@ Patch_Volume() cp -R "$resources_path"/GeForceGA.plugin "$volume_path"/System/Library/Extensions/ cp -R "$resources_path"/GeForceGLDriver.bundle "$volume_path"/System/Library/Extensions/ cp -R "$resources_path"/GeForceVADriver.bundle "$volume_path"/System/Library/Extensions/ - cp -R "$resources_path"/NoSleep.kext "$volume_path"/System/Library/Extensions/ cp -R "$resources_path"/NVDAGF100Hal.kext "$volume_path"/System/Library/Extensions/ cp -R "$resources_path"/NVDAGK100Hal.kext "$volume_path"/System/Library/Extensions/ cp -R "$resources_path"/NVDANV40HalG7xxx.kext "$volume_path"/System/Library/Extensions/ @@ -311,8 +310,16 @@ Patch_Volume() cp -R "$resources_path"/NVSMU.kext "$volume_path"/System/Library/Extensions/ Output_Off cp -R "$resources_path"/Brightness\ Slider.app "$volume_path"/Applications/Utilities - Output_Off cp -R "$resources_path"/NoSleep.app "$volume_path"/Applications/Utilities - Output_Off cp -R "$resources_path"/NoSleep.prefPane "$volume_path"/System/Library/PreferencePanes + + if [[ $volume_version_short == "10.8" ]]; then + cp -R "$resources_path"/1.3.3/NoSleep.kext "$volume_path"/System/Library/Extensions/ + Output_Off cp -R "$resources_path"/1.3.3/NoSleep.app "$volume_path"/Applications/Utilities + Output_Off cp -R "$resources_path"/1.3.3/NoSleep.prefPane "$volume_path"/System/Library/PreferencePanes + else + cp -R "$resources_path"/NoSleep.kext "$volume_path"/System/Library/Extensions/ + Output_Off cp -R "$resources_path"/NoSleep.app "$volume_path"/Applications/Utilities + Output_Off cp -R "$resources_path"/NoSleep.prefPane "$volume_path"/System/Library/PreferencePanes + fi echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched graphics drivers."${erase_style} echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching audio drivers."${erase_style} diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Headers b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/NoSleep b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/NoSleep new file mode 120000 index 0000000..4e100cb --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/NoSleep @@ -0,0 +1 @@ +Versions/Current/NoSleep \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Resources b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h new file mode 100644 index 0000000..7b6b291 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h @@ -0,0 +1,41 @@ +// +// GlobalConstants.h +// nosleep +// +// Created by Pavel Prokofiev on 4/8/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#define _STR(x) #x +#define STR(x) _STR(x) + +// Extension part +#define NoSleepExtension com_protech_nosleepextension +#define NoSleepClientClass com_protech_nosleepclientclass +#define kNoSleepCommandDisabled iokit_vendor_specific_msg(0) +#define kNoSleepCommandEnabled iokit_vendor_specific_msg(1) +#define kNoSleepCommandLockScreenRequest iokit_vendor_specific_msg(2) +// AppleNVRAM Variable name +#define IORegistrySleepSuppressionMode "IORegistryCurrentSleepMode" + +// Interface +#define kNoSleepDriverClassName STR(NoSleepExtension) + +// GUI +#define SHOW_UI_ALERT_KEXT_NOT_LOADED() NSRunAlertPanel(@"Oops!", @"NoSleep Kernel Extension is not loaded.", @"OK", nil, nil) + +#define NOSLEEP_ID "com.protech.NoSleep" + +#define NOSLEEP_HELPER_PATH "/Applications/Utilities/NoSleep.app" +#define NOSLEEP_PREFPANE_PATH "/Library/PreferencePanes/NoSleep.prefPane" + +#define kNoSleepModeCurrent 0 +#define kNoSleepModeAC 1 +#define kNoSleepModeBattery 2 + +//Settings +#define NOSLEEP_SETTINGS_UPDATE_EVENTNAME "UpdateSettings" + +#define NOSLEEP_SETTINGS_isBWIconEnabledID "IsBWIconEnabled" +#define NOSLEEP_SETTINGS_toLockScreenID "LockScreen" +#define NOSLEEP_SETTINGS_useDoubleClick "UseDoubleClick" diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h new file mode 100644 index 0000000..71b6c79 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h @@ -0,0 +1,31 @@ +// +// NoSleepInterface.h +// nosleep +// +// Created by Pavel Prokofiev on 4/3/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#include + +//io_connect_t m_connect; +typedef io_service_t NoSleepInterfaceService; +typedef io_connect_t NoSleepInterfaceConnect; +typedef io_object_t NoSleepInterestNotification; + +#ifdef __cplusplus +extern "C" { +#endif + extern bool NoSleepVerbose; + + NoSleepInterestNotification NoSleep_ReceiveStateChanged(NoSleepInterfaceConnect m_connect, IOServiceInterestCallback callback, void *refCon); + void NoSleep_ReleaseStateChanged(NoSleepInterestNotification notifyObj); + + bool NoSleep_InterfaceCreate(NoSleepInterfaceService *service, NoSleepInterfaceConnect *connect); + bool NoSleep_InterfaceDestroy(NoSleepInterfaceConnect connect); + bool NoSleep_GetSleepSuppressionMode(NoSleepInterfaceConnect connect, int mode); + bool NoSleep_SetSleepSuppressionMode(NoSleepInterfaceConnect connect, bool state, int mode); + +#ifdef __cplusplus +} +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h new file mode 100644 index 0000000..87eff36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h @@ -0,0 +1,27 @@ +// +// NoSleepInterfaceWrapper.h +// nosleep +// +// Created by Pavel Prokofiev on 4/7/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import + +#import +#import + +@interface NoSleepInterfaceWrapper : NSObject { +@private + NoSleepInterfaceConnect _noSleepInterface; + NoSleepInterestNotification _noSleepNotification; + + id notificationDelegate; +} + +@property (retain) id notificationDelegate; + +-(BOOL) stateForMode:(int)mode; +-(void) setState:(BOOL)state forMode:(int)mode; + +@end diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h new file mode 100644 index 0000000..6cdbf07 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h @@ -0,0 +1,16 @@ +// +// NoSleepNotificationDelegate.h +// nosleep +// +// Created by Pavel Prokofiev on 4/8/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import + +@protocol NoSleepNotificationDelegate +@optional + +-(void) notificationReceived:(uint32_t)messageType :(void *)messageArgument; + +@end diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h new file mode 100644 index 0000000..88e567c --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h @@ -0,0 +1,23 @@ +// +// Utilities.h +// NoSleepFramework +// +// Created by Pavel Prokofiev on 2/24/12. +// Copyright 2012 __MyCompanyName__. All rights reserved. +// + +#ifndef NoSleepFramework_Utilities_h +#define NoSleepFramework_Utilities_h + +typedef enum { + kLICheck = 0, + kLIRegister, + kLIUnregister, +} LoginItemAction; + +BOOL registerLoginItem(LoginItemAction action); + +BOOL GetLockScreen(); +void SetLockScreen(BOOL value); + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep new file mode 100755 index 0000000..3f0f09b Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..8f19e71 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,42 @@ + + + + + BuildMachineOSBuild + 12D78 + CFBundleDevelopmentRegion + English + CFBundleExecutable + NoSleep + CFBundleIdentifier + com.protech.NoSleepFramework + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + NoSleep + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.3.3 + CFBundleSignature + ???? + CFBundleVersion + 1.3.3 + DTCompiler + + DTPlatformBuild + 4H512 + DTPlatformVersion + GM + DTSDKBuild + 12D75 + DTSDKName + macosx10.8 + DTXcode + 0461 + DTXcodeBuild + 4H512 + NSHumanReadableCopyright + Copyright © 2012-2013 Pavel Prokofiev. All rights reserved. + + diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/Current b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/NoSleep.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Headers b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Resources b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Sparkle b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Sparkle new file mode 120000 index 0000000..b2c5273 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Sparkle @@ -0,0 +1 @@ +Versions/Current/Sparkle \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h new file mode 100644 index 0000000..171148a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h @@ -0,0 +1,33 @@ +// +// SUAppcast.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCAST_H +#define SUAPPCAST_H + +@class SUAppcastItem; +@interface SUAppcast : NSObject { + NSArray *items; + NSString *userAgentString; + id delegate; + NSMutableData *incrementalData; +} + +- (void)fetchAppcastFromURL:(NSURL *)url; +- (void)setDelegate:delegate; +- (void)setUserAgentString:(NSString *)userAgentString; + +- (NSArray *)items; + +@end + +@interface NSObject (SUAppcastDelegate) +- (void)appcastDidFinishLoading:(SUAppcast *)appcast; +- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h new file mode 100644 index 0000000..7f1ca65 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h @@ -0,0 +1,47 @@ +// +// SUAppcastItem.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCASTITEM_H +#define SUAPPCASTITEM_H + +@interface SUAppcastItem : NSObject { + NSString *title; + NSDate *date; + NSString *itemDescription; + + NSURL *releaseNotesURL; + + NSString *DSASignature; + NSString *minimumSystemVersion; + + NSURL *fileURL; + NSString *versionString; + NSString *displayVersionString; + + NSDictionary *propertiesDictionary; +} + +// Initializes with data from a dictionary provided by the RSS class. +- initWithDictionary:(NSDictionary *)dict; + +- (NSString *)title; +- (NSString *)versionString; +- (NSString *)displayVersionString; +- (NSDate *)date; +- (NSString *)itemDescription; +- (NSURL *)releaseNotesURL; +- (NSURL *)fileURL; +- (NSString *)DSASignature; +- (NSString *)minimumSystemVersion; + +// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. +- (NSDictionary *)propertiesDictionary; + +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h new file mode 100644 index 0000000..e78c4d3 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h @@ -0,0 +1,118 @@ +// +// 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 + +@class SUUpdateDriver, SUAppcastItem, SUHost, SUAppcast; +@interface SUUpdater : NSObject { + NSTimer *checkTimer; + SUUpdateDriver *driver; + + SUHost *host; + IBOutlet id delegate; +} + ++ (SUUpdater *)sharedUpdater; ++ (SUUpdater *)updaterForBundle:(NSBundle *)bundle; +- (NSBundle *)hostBundle; + +- (void)setDelegate:(id)delegate; +- delegate; + +- (void)setAutomaticallyChecksForUpdates:(BOOL)automaticallyChecks; +- (BOOL)automaticallyChecksForUpdates; + +- (void)setUpdateCheckInterval:(NSTimeInterval)interval; +- (NSTimeInterval)updateCheckInterval; + +- (void)setFeedURL:(NSURL *)feedURL; +- (NSURL *)feedURL; + +- (void)setSendsSystemProfile:(BOOL)sendsSystemProfile; +- (BOOL)sendsSystemProfile; + +- (void)setAutomaticallyDownloadsUpdates:(BOOL)automaticallyDownloadsUpdates; +- (BOOL)automaticallyDownloadsUpdates; + +// This IBAction is meant for a main menu item. Hook up any menu item to this action, +// and Sparkle will check for updates and report back its findings verbosely. +- (IBAction)checkForUpdates:sender; + +// This kicks off an update meant to be programmatically initiated. That is, it will display no UI unless it actually finds an update, +// in which case it proceeds as usual. If the fully automated updating is turned on, however, this will invoke that behavior, and if an +// update is found, it will be downloaded and prepped for installation. +- (void)checkForUpdatesInBackground; + +// Date of last update check. Returns null if no check has been performed. +- (NSDate*)lastUpdateCheckDate; + +// This begins a "probing" check for updates which will not actually offer to update to that version. The delegate methods, though, +// (up to updater:didFindValidUpdate: and updaterDidNotFindUpdate:), are called, so you can use that information in your UI. +- (void)checkForUpdateInformation; + +// Call this to appropriately schedule or cancel the update checking timer according to the preferences for time interval and automatic checks. This call does not change the date of the next check, but only the internal NSTimer. +- (void)resetUpdateCycle; + +- (BOOL)updateInProgress; +@end + +@interface NSObject (SUUpdaterDelegateInformalProtocol) +// This method allows you to add extra parameters to the appcast URL, potentially based on whether or not Sparkle will also be sending along the system profile. This method should return an array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user. +- (NSArray *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; + +// Use this to override the default behavior for Sparkle prompting the user about automatic update checks. +- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)bundle; + +// Implement this if you want to do some special handling with the appcast once it finishes loading. +- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; + +// If you're using special logic or extensions in your appcast, implement this to use your own logic for finding +// a valid update, if any, in the given appcast. +- (SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)bundle; + +// Sent when a valid update is found by the update driver. +- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update; + +// Sent when a valid update is not found. +- (void)updaterDidNotFindUpdate:(SUUpdater *)update; + +// Sent immediately before installing the specified update. +- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)update; + +// Return YES to delay the relaunch until you do some processing; invoke the given NSInvocation to continue. +- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)update untilInvoking:(NSInvocation *)invocation; + +// Called immediately before relaunching. +- (void)updaterWillRelaunchApplication:(SUUpdater *)updater; + +// This method allows you to provide a custom version comparator. +// If you don't implement this method or return nil, the standard version comparator will be used. +- (id )versionComparatorForUpdater:(SUUpdater *)updater; + +// Returns the path which is used to relaunch the client after the update is installed. By default, the path of the host bundle. +- (NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; + +@end + +// Define some minimum intervals to avoid DOS-like checking attacks. These are in seconds. +#ifdef DEBUG +#define SU_MIN_CHECK_INTERVAL 60 +#else +#define SU_MIN_CHECK_INTERVAL 60*60 +#endif + +#ifdef DEBUG +#define SU_DEFAULT_CHECK_INTERVAL 60 +#else +#define SU_DEFAULT_CHECK_INTERVAL 60*60*24 +#endif + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h new file mode 100644 index 0000000..3d11ae8 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h @@ -0,0 +1,27 @@ +// +// SUVersionComparisonProtocol.h +// Sparkle +// +// Created by Andy Matuschak on 12/21/07. +// Copyright 2007 Andy Matuschak. All rights reserved. +// + +#ifndef SUVERSIONCOMPARISONPROTOCOL_H +#define SUVERSIONCOMPARISONPROTOCOL_H + +/*! + @protocol + @abstract Implement this protocol to provide version comparison facilities for Sparkle. +*/ +@protocol SUVersionComparison + +/*! + @method + @abstract An abstract method to compare two version strings. + @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. +*/ +- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; + +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h new file mode 100644 index 0000000..08dd577 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h @@ -0,0 +1,21 @@ +// +// 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 + +#import +#import +#import + +#endif diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..c7f277d --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + Sparkle + CFBundleIdentifier + org.andymatuschak.Sparkle + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Sparkle + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.5 Beta 6 + CFBundleSignature + ???? + CFBundleVersion + 313 + + diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt new file mode 100644 index 0000000..20466c4 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt @@ -0,0 +1,7 @@ +Copyright (c) 2006 Andy Matuschak + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist new file mode 100644 index 0000000..92ef947 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist @@ -0,0 +1,174 @@ + + + + + ADP2,1 + Developer Transition Kit + MacBook1,1 + MacBook (Core Duo) + MacBook2,1 + MacBook (Core 2 Duo) + MacBook4,1 + MacBook (Core 2 Duo Feb 2008) + MacBookAir1,1 + MacBook Air (January 2008) + 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) + MacPro1,1 + Mac Pro (four-core) + MacPro2,1 + Mac Pro (eight-core) + MacPro3,1 + Mac Pro (January 2008 4- or 8- core "Harpertown") + Macmini1,1 + Mac Mini (Core Solo/Duo) + PowerBook1,1 + PowerBook G3 + PowerBook2,1 + iBook G3 + PowerBook2,2 + iBook G3 (FireWire) + PowerBook2,3 + iBook G3 + PowerBook2,4 + iBook G3 + PowerBook3,1 + PowerBook G3 (FireWire) + PowerBook3,2 + PowerBook G4 + PowerBook3,3 + PowerBook G4 (Gigabit Ethernet) + PowerBook3,4 + PowerBook G4 (DVI) + PowerBook3,5 + PowerBook G4 (1GHz / 867MHz) + PowerBook4,1 + iBook G3 (Dual USB, Late 2001) + PowerBook4,2 + iBook G3 (16MB VRAM) + PowerBook4,3 + iBook G3 Opaque 16MB VRAM, 32MB VRAM, Early 2003) + PowerBook5,1 + PowerBook G4 (17 inch) + PowerBook5,2 + PowerBook G4 (15 inch FW 800) + PowerBook5,3 + PowerBook G4 (17-inch 1.33GHz) + PowerBook5,4 + PowerBook G4 (15 inch 1.5/1.33GHz) + PowerBook5,5 + PowerBook G4 (17-inch 1.5GHz) + PowerBook5,6 + PowerBook G4 (15 inch 1.67GHz/1.5GHz) + PowerBook5,7 + PowerBook G4 (17-inch 1.67GHz) + PowerBook5,8 + PowerBook G4 (Double layer SD, 15 inch) + PowerBook5,9 + PowerBook G4 (Double layer SD, 17 inch) + PowerBook6,1 + PowerBook G4 (12 inch) + PowerBook6,2 + PowerBook G4 (12 inch, DVI) + PowerBook6,3 + iBook G4 + PowerBook6,4 + PowerBook G4 (12 inch 1.33GHz) + PowerBook6,5 + iBook G4 (Early-Late 2004) + PowerBook6,7 + iBook G4 (Mid 2005) + PowerBook6,8 + PowerBook G4 (12 inch 1.5GHz) + PowerMac1,1 + Power Macintosh G3 (Blue & White) + PowerMac1,2 + Power Macintosh G4 (PCI Graphics) + PowerMac10,1 + Mac Mini G4 + PowerMac10,2 + Mac Mini (Late 2005) + PowerMac11,2 + Power Macintosh G5 (Late 2005) + PowerMac12,1 + iMac G5 (iSight) + PowerMac2,1 + iMac G3 (Slot-loading CD-ROM) + PowerMac2,2 + iMac G3 (Summer 2000) + PowerMac3,1 + Power Macintosh G4 (AGP Graphics) + PowerMac3,2 + Power Macintosh G4 (AGP Graphics) + PowerMac3,3 + Power Macintosh G4 (Gigabit Ethernet) + PowerMac3,4 + Power Macintosh G4 (Digital Audio) + PowerMac3,5 + Power Macintosh G4 (Quick Silver) + PowerMac3,6 + Power Macintosh G4 (Mirrored Drive Door) + PowerMac4,1 + iMac G3 (Early/Summer 2001) + PowerMac4,2 + iMac G4 (Flat Panel) + PowerMac4,4 + eMac + PowerMac4,5 + iMac G4 (17-inch Flat Panel) + PowerMac5,1 + Power Macintosh G4 Cube + PowerMac6,1 + iMac G4 (USB 2.0) + PowerMac6,3 + iMac G4 (20-inch Flat Panel) + PowerMac6,4 + eMac (USB 2.0, 2005) + PowerMac7,2 + Power Macintosh G5 + PowerMac7,3 + Power Macintosh G5 + PowerMac8,1 + iMac G5 + PowerMac8,2 + iMac G5 (Ambient Light Sensor) + PowerMac9,1 + Power Macintosh G5 (Late 2005) + RackMac1,1 + Xserve G4 + RackMac1,2 + Xserve G4 (slot-loading, cluster node) + RackMac3,1 + Xserve G5 + Xserve1,1 + Xserve (Intel Xeon) + Xserve2,1 + Xserve (January 2008 quad-core) + iMac1,1 + iMac G3 (Rev A-D) + iMac4,1 + iMac (Core Duo) + iMac4,2 + iMac for Education (17-inch, Core Duo) + iMac5,1 + iMac (Core 2 Duo, 17 or 20 inch, SuperDrive) + iMac5,2 + iMac (Core 2 Duo, 17 inch, Combo Drive) + iMac6,1 + iMac (Core 2 Duo, 24 inch, SuperDrive) + iMac8,1 + iMac (April 2008) + + diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib new file mode 100644 index 0000000..4f1d598 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..6b92630 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..b4353d2 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..b403a3e Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings new file mode 100644 index 0000000..b31f928 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..7630390 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..e7e7497 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..e8dc5b8 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings new file mode 100644 index 0000000..16e0787 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..6b2f938 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..c9b1e7d Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..8c54c21 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings new file mode 100644 index 0000000..f83ea23 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..4cd529a Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..65dfc95 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..4b7cc90 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings new file mode 100644 index 0000000..ea175ae Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..15ba8f4 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..2984064 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..55cc2c2 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings new file mode 100644 index 0000000..5c410d0 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..aa38f86 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..c82d358 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..ac298ce Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings new file mode 100644 index 0000000..67cf535 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch new file mode 100755 index 0000000..61fd796 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..1d4655c Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..103b1cf Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..c09d9e7 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings new file mode 100644 index 0000000..f3ff9d8 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..53cb91a Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..7e6d490 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..64babac Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings new file mode 100644 index 0000000..b676a4f Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle new file mode 100755 index 0000000..ffc326c Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/Current b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Frameworks/Sparkle.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Info.plist b/resources/patch/1.3.3/NoSleep.app/Contents/Info.plist new file mode 100644 index 0000000..9e940d8 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Info.plist @@ -0,0 +1,58 @@ + + + + + BuildMachineOSBuild + 12D78 + CFBundleDevelopmentRegion + en + CFBundleExecutable + NoSleep + CFBundleIconFile + Logo.icns + CFBundleIdentifier + com.protech.NoSleep + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + NoSleep + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.3.3 + CFBundleSignature + ???? + CFBundleVersion + 1.3.3 + DTCompiler + + DTPlatformBuild + 4H512 + DTPlatformVersion + GM + DTSDKBuild + 12D75 + DTSDKName + macosx10.8 + DTXcode + 0461 + DTXcodeBuild + 4H512 + LSApplicationCategoryType + public.app-category.utilities + LSBackgroundOnly + + LSMinimumSystemVersion + 10.5 + LSUIElement + + NSHumanReadableCopyright + Copyright © 2012-2013 Pavel Prokofiev. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + SUFeedURL + https://macosx-nosleep-extension.googlecode.com/git/Utilities/update.xml + + diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleep b/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleep new file mode 100755 index 0000000..70b3048 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleep differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleepDaemon b/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleepDaemon new file mode 100755 index 0000000..abb17d8 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/MacOS/NoSleepDaemon differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/PkgInfo b/resources/patch/1.3.3/NoSleep.app/Contents/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Resources/Logo.icns b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/Logo.icns new file mode 100644 index 0000000..0599507 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/Logo.icns differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Resources/MainMenu.nib b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/MainMenu.nib new file mode 100644 index 0000000..7facca7 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/MainMenu.nib differ diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzActive.pdf b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzActive.pdf new file mode 100644 index 0000000..99e108c --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzActive.pdf @@ -0,0 +1,688 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + ZzActive + + + + + Adobe Illustrator CS5 + 2012-08-15T23:34:15+07:00 + 2012-08-15T23:34:15+07:00 + 2012-08-15T23:34:15+07:00 + + + + 256 + 188 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAvAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXwB/zlH/5PbzN/0Y/90+3xV5VirsVdirsVdirsVdirsVdirsVd irsVTXyn/wApTo3/ADHW3/J5cVfp/irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVfAH /OUf/k9vM3/Rj/3T7fFXlWKuxV2KuxV2KuxV2KuxV2KuxV2KuxVNfKf/AClOjf8AMdbf8nlxV+n+ KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV8Af85R/+T28zf9GP/dPt8VeVYq7FXYq7 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 + + + + + + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + xmp.did:099C10DE092068118C14B0E1139C2691 + uuid:3466b613-53a9-3d4e-87b4-ad434c9ab27b + proof:pdf + + xmp.iid:089C10DE092068118C14B0E1139C2691 + xmp.did:089C10DE092068118C14B0E1139C2691 + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + proof:pdf + + + + + saved + xmp.iid:F77F1174072068118C14B0E1139C2691 + 2012-08-15T22:59:07+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:F87F1174072068118C14B0E1139C2691 + 2012-08-15T22:59:47+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:F97F1174072068118C14B0E1139C2691 + 2012-08-15T23:03:31+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FA7F1174072068118C14B0E1139C2691 + 2012-08-15T23:11:54+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FB7F1174072068118C14B0E1139C2691 + 2012-08-15T23:12:13+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FC7F1174072068118C14B0E1139C2691 + 2012-08-15T23:13:10+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FD7F1174072068118C14B0E1139C2691 + 2012-08-15T23:13:25+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FE7F1174072068118C14B0E1139C2691 + 2012-08-15T23:14:27+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FF7F1174072068118C14B0E1139C2691 + 2012-08-15T23:14:47+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:00801174072068118C14B0E1139C2691 + 2012-08-15T23:16:03+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:009C10DE092068118C14B0E1139C2691 + 2012-08-15T23:16:24+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:019C10DE092068118C14B0E1139C2691 + 2012-08-15T23:22:39+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:029C10DE092068118C14B0E1139C2691 + 2012-08-15T23:22:53+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:039C10DE092068118C14B0E1139C2691 + 2012-08-15T23:29:04+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:049C10DE092068118C14B0E1139C2691 + 2012-08-15T23:29:42+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:059C10DE092068118C14B0E1139C2691 + 2012-08-15T23:30:14+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:069C10DE092068118C14B0E1139C2691 + 2012-08-15T23:31:34+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:079C10DE092068118C14B0E1139C2691 + 2012-08-15T23:32:14+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:089C10DE092068118C14B0E1139C2691 + 2012-08-15T23:33:39+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:099C10DE092068118C14B0E1139C2691 + 2012-08-15T23:34:13+07:00 + Adobe Illustrator CS5 + / + + + + + + Basic RGB + + + 1 + False + False + + 16.000000 + 16.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + + + + Adobe PDF library 9.90 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 7 0 obj <>/Properties<>>>/TrimBox[0.0 0.0 16.0 16.0]/Type/Page>> endobj 8 0 obj <>stream +HܓN0 ~ +\;JA;U  iUqj*}ȱ980w#cG'\Pږ`z"ϰ˔|0#I1TTH"Iu*1=&&Z B4ڑ'kVU'x.#Z+> endobj 10 0 obj [/View/Design] endobj 11 0 obj <>>> endobj 9 0 obj <> endobj 6 0 obj [5 0 R] endobj 12 0 obj <> endobj xref 0 13 0000000000 65535 f +0000000016 00000 n +0000000144 00000 n +0000046405 00000 n +0000000000 00000 f +0000047034 00000 n +0000047332 00000 n +0000046456 00000 n +0000046698 00000 n +0000047220 00000 n +0000047104 00000 n +0000047135 00000 n +0000047355 00000 n +trailer <<202C867B101141E8AC096B7EE80DE583>]>> startxref 47527 %%EOF \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzInactive.pdf b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzInactive.pdf new file mode 100644 index 0000000..effe999 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.app/Contents/Resources/ZzInactive.pdf @@ -0,0 +1,771 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + ZzInactive + + + + + Adobe Illustrator CS5 + 2012-08-15T23:33:40+07:00 + 2012-08-15T23:33:40+07:00 + 2012-08-15T23:33:40+07:00 + + + + 256 + 188 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAvAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXmXnH/AJSS8/55/wDJpcVSbFXYq7FXYq7FXYq7FXYq7FXYq7FX YqrWX+9kH/GRP+JDFXsGKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV5l5x/wCUkvP+ ef8AyaXFUmxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kq1l/vZB/xkT/iQxV7BirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVdirsVeZecf8AlJLz/nn/AMmlxVJsVdirsVdirsVdirsVdirsVdirsVdi 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 /tEftn2HbxxVnGKuxV5Fqn/HTu/+M0n/ABM4qhsVdirsVdirsVdirsVdirsVdirsVdirsVezYq7F XYq7FXYqwnzj5m5l9Msn+AfDdSr3P8gPh/N92KsPxV2KuxV2KuxV2KuxV2Ksh8qeWm1GYXVytLGI 9D/uxh+yPbxxV6KAFAVRQDYAdAMVdirsVeRap/x07v8A4zSf8TOKobFXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXs2KuxV2KuxVi/m/wAzfU0aws2/0px+9kH+61PYf5R/DFWA4q7FXYq7FXYq7FXYq7FU 38uaBNq11vVLSMgzyf8AGq+5xV6ZBBDBCkMKBIowFRB0AGKr8VdirsVYjdeQPXuZp/r/AB9V2fj6 VacjWleeKqX/ACrn/tYf8kf+b8Vd/wAq5/7WH/JH/m/FXf8AKuf+1h/yR/5vxV3/ACrn/tYf8kf+ b8Vd/wAq5/7WH/JH/m/FXf8AKuf+1h/yR/5vxV3/ACrn/tYf8kf+b8Vd/wAq5/7WH/JH/m/FXf8A Kuf+1h/yR/5vxV3/ACrn/tYf8kf+b8Vd/wAq5/7WH/JH/m/FXf8AKuf+1h/yR/5vxV3/ACrn/tYf 8kf+b8VZnirsVdiqR+aPMSaXb+lCQ19KP3a9eA/nP8MVebSO8js7sWdyWZjuST1JxVrFXYq7FXYq 7FXYq7FUfo2j3OqXi28Iog3llpsi+Pz8MVen2FhbWFqlrbrxjQfST3Y+5xVEYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUt17XINJszK1Gneogi7s3ifYd8VeYXd1Pd3ElxcOXlk NWY/59sVUsVdirsVdirsVdirsVRFhYXN/dJa268pHP0Ad2PsMVeoaNo9tpdmtvCKsd5ZT1dvH+mK o7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqhNU1O202ze6uDRV2VR1Zj0UYq 8v1TU7nUrx7m4PxNsiD7KqOijFUJirsVdirsVdirsVdiq+CCaeZIYULyyEKiDqScVemeXNAh0m13 o93IKzyf8ar7DFU3xVj3m/W77S47VrQqDKXD8l5fZAp+vFWNf4517+eP/gBirv8AHOvfzx/8AMVd /jnXv54/+AGKu/xzr388f/ADFWb6DeT3ukW11OQZZQSxAoNmI6fRiqPxV2KuxV2KuxV2KuxV2Kux V2KuxV2KuxVSurqC1t3uJ3CRRirscVeY6/rk+rXhlaqQJtBF/KPE+574qlmKuxV2KuxV2KuxV2Ku ALEKoqTsAOpOKvRfKnlpdOhF1cqDfSjp/vtT+yPfxxVkOKuxVh/5if3Nj/rSfqXFWE4q7FXYq7FX qHlP/lHrP/Vb/ibYqm2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KvNvNHmN9UuPShJWxiP7sdOZ/nP 8MVSLFXYq7FXYq7FXYq7FXYqyfylHodqwv7+6jFwD+4hJ+x/lH38PDFWWf4m0H/ltj+8/wBMVd/i bQf+W2P7z/TFXf4m0H/ltj+8/wBMVYx541TT76K0FpOsxRnLhe1QKYqxPFXYq7FXYq9Q8p/8o9Z/ 6rf8TbFU2xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV4zirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVeoeU/+Ues/wDVb/ibYqm2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KvGcVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdirsVdir1Dyn/yj1n/AKrf8TbFU2xV2KuxV2KuxV2KuxV2KuxV 2KuxV2KuxV4zirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVeoeU/wDlHrP/AFW/4m2K ptirsVdirsVdirsVdirsVdirsVdirsVdirxnFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq9Q8p/wDKPWf+q3/E2xVNsVdirsVdirsVdirsVdirsVdirsVdirsVeZf86b/2sf8Akhirv+dN /wC1j/yQxV3/ADpv/ax/5IYq7/nTf+1j/wAkMVd/zpv/AGsf+SGKu/503/tY/wDJDFXf86b/ANrH /khirv8AnTf+1j/yQxV3/Om/9rH/AJIYq7/nTf8AtY/8kMVd/wA6b/2sf+SGKu/503/tY/8AJDFX f86b/wBrH/khirv+dN/7WP8AyQxV3/Om/wDax/5IYq7/AJ03/tY/8kMVd/zpv/ax/wCSGKu/503/ ALWP/JDFWeeXvqn6GtvqnqfVuJ9P1ePOnI/a47dcVTHFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX/ 2Q== + + + + + + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + xmp.did:089C10DE092068118C14B0E1139C2691 + uuid:f45258fd-b136-654b-baba-6e6a23e27767 + proof:pdf + + xmp.iid:079C10DE092068118C14B0E1139C2691 + xmp.did:079C10DE092068118C14B0E1139C2691 + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + proof:pdf + + + + + saved + xmp.iid:F77F1174072068118C14B0E1139C2691 + 2012-08-15T22:59:07+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:F87F1174072068118C14B0E1139C2691 + 2012-08-15T22:59:47+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:F97F1174072068118C14B0E1139C2691 + 2012-08-15T23:03:31+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FA7F1174072068118C14B0E1139C2691 + 2012-08-15T23:11:54+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FB7F1174072068118C14B0E1139C2691 + 2012-08-15T23:12:13+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FC7F1174072068118C14B0E1139C2691 + 2012-08-15T23:13:10+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FD7F1174072068118C14B0E1139C2691 + 2012-08-15T23:13:25+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FE7F1174072068118C14B0E1139C2691 + 2012-08-15T23:14:27+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:FF7F1174072068118C14B0E1139C2691 + 2012-08-15T23:14:47+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:00801174072068118C14B0E1139C2691 + 2012-08-15T23:16:03+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:009C10DE092068118C14B0E1139C2691 + 2012-08-15T23:16:24+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:019C10DE092068118C14B0E1139C2691 + 2012-08-15T23:22:39+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:029C10DE092068118C14B0E1139C2691 + 2012-08-15T23:22:53+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:039C10DE092068118C14B0E1139C2691 + 2012-08-15T23:29:04+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:049C10DE092068118C14B0E1139C2691 + 2012-08-15T23:29:42+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:059C10DE092068118C14B0E1139C2691 + 2012-08-15T23:30:14+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:069C10DE092068118C14B0E1139C2691 + 2012-08-15T23:31:34+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:079C10DE092068118C14B0E1139C2691 + 2012-08-15T23:32:14+07:00 + Adobe Illustrator CS5 + / + + + saved + xmp.iid:089C10DE092068118C14B0E1139C2691 + 2012-08-15T23:33:39+07:00 + Adobe Illustrator CS5 + / + + + + + + Basic RGB + + + 1 + True + False + + 16.000000 + 16.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + + + + Adobe PDF library 9.90 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 7 0 obj <>/Properties<>/XObject<>>>/TrimBox[0.0 0.0 16.0 16.0]/Type/Page>> endobj 8 0 obj <>stream +HwVu6PprqV*2P04!] .J +W +(s(sB\}&r endstream endobj 9 0 obj <> endobj 11 0 obj <>>>/Subtype/Form>>stream +0 0 0 rg +/GS0 gs +q 1 0 0 1 8.877 3.125 cm +0 0 m +-8.734 0 l +-8.734 2.077 l +-4.376 7.101 l +-6.59 7.101 l +-6.59 5.976 l +-8.62 5.976 l +-8.62 9.094 l +-0.033 9.094 l +-0.033 7.25 l +-4.612 1.995 l +-2.06 1.995 l +-2.06 3.236 l +0 3.236 l +h +f +Q +0 0 0 RG +0.25 w 4 M 0 j 0 J []0 d +q 1 0 0 1 8.877 3.125 cm +0 0 m +-8.734 0 l +-8.734 2.077 l +-4.376 7.101 l +-6.59 7.101 l +-6.59 5.976 l +-8.62 5.976 l +-8.62 9.094 l +-0.033 9.094 l +-0.033 7.25 l +-4.612 1.995 l +-2.06 1.995 l +-2.06 3.236 l +0 3.236 l +0 0 l +h +S +Q + endstream endobj 12 0 obj <>>>/Subtype/Form>>stream +0 0 0 rg +/GS0 gs +q 1 0 0 1 15.6807 8 cm +0 0 m +-6.618 0 l +-6.618 1.464 l +-3.314 5.003 l +-4.994 5.003 l +-4.994 4.209 l +-6.531 4.209 l +-6.531 6.406 l +-0.024 6.406 l +-0.024 5.107 l +-3.495 1.405 l +-1.562 1.405 l +-1.562 2.28 l +0 2.28 l +h +f +Q +0 0 0 RG +0.25 w 4 M 0 j 0 J []0 d +q 1 0 0 1 15.6807 8 cm +0 0 m +-6.618 0 l +-6.618 1.464 l +-3.314 5.003 l +-4.994 5.003 l +-4.994 4.209 l +-6.531 4.209 l +-6.531 6.406 l +-0.024 6.406 l +-0.024 5.107 l +-3.495 1.405 l +-1.562 1.405 l +-1.562 2.28 l +0 2.28 l +0 0 l +h +S +Q + endstream endobj 15 0 obj <> endobj 14 0 obj <> endobj 13 0 obj <> endobj 5 0 obj <> endobj 16 0 obj [/View/Design] endobj 17 0 obj <>>> endobj 10 0 obj <> endobj 6 0 obj [5 0 R] endobj 18 0 obj <> endobj xref 0 19 0000000000 65535 f +0000000016 00000 n +0000000144 00000 n +0000043903 00000 n +0000000000 00000 f +0000046034 00000 n +0000046343 00000 n +0000043954 00000 n +0000044243 00000 n +0000044380 00000 n +0000046220 00000 n +0000044444 00000 n +0000045117 00000 n +0000045971 00000 n +0000045858 00000 n +0000045795 00000 n +0000046104 00000 n +0000046135 00000 n +0000046366 00000 n +trailer <<53B61EECFA084F388F52BE58E3C20D5D>]>> startxref 46540 %%EOF \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.kext/Contents/Info.plist b/resources/patch/1.3.3/NoSleep.kext/Contents/Info.plist new file mode 100644 index 0000000..e1785de --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.kext/Contents/Info.plist @@ -0,0 +1,69 @@ + + + + + BuildMachineOSBuild + 12D78 + CFBundleDevelopmentRegion + English + CFBundleExecutable + NoSleep + CFBundleIdentifier + com.protech.NoSleep + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + NoSleep + CFBundlePackageType + KEXT + CFBundleShortVersionString + 1.3.3 + CFBundleSignature + ???? + CFBundleVersion + 1.3.3 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 4H512 + DTPlatformVersion + GM + DTSDKBuild + 12D75 + DTSDKName + macosx10.8 + DTXcode + 0461 + DTXcodeBuild + 4H512 + IOKitPersonalities + + FirstPersonality + + CFBundleIdentifier + com.protech.NoSleep + IOClass + com_protech_nosleepextension + IOMatchCategory + com_protech_nosleepextension + IOProviderClass + IOResources + IOResourceMatch + IOKit + IOUserClientClass + com_protech_nosleepclientclass + + + NSHumanReadableCopyright + Copyright © 2012-2013 Pavel Prokofiev. All rights reserved. + OSBundleLibraries + + com.apple.kpi.iokit + 9.0.0 + com.apple.kpi.libkern + 9.0.0 + com.apple.kpi.mach + 9.0.0 + + + diff --git a/resources/patch/1.3.3/NoSleep.kext/Contents/MacOS/NoSleep b/resources/patch/1.3.3/NoSleep.kext/Contents/MacOS/NoSleep new file mode 100644 index 0000000..0e53d0b Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.kext/Contents/MacOS/NoSleep differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Headers b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/NoSleep b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/NoSleep new file mode 120000 index 0000000..4e100cb --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/NoSleep @@ -0,0 +1 @@ +Versions/Current/NoSleep \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Resources b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h new file mode 100644 index 0000000..7b6b291 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/GlobalConstants.h @@ -0,0 +1,41 @@ +// +// GlobalConstants.h +// nosleep +// +// Created by Pavel Prokofiev on 4/8/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#define _STR(x) #x +#define STR(x) _STR(x) + +// Extension part +#define NoSleepExtension com_protech_nosleepextension +#define NoSleepClientClass com_protech_nosleepclientclass +#define kNoSleepCommandDisabled iokit_vendor_specific_msg(0) +#define kNoSleepCommandEnabled iokit_vendor_specific_msg(1) +#define kNoSleepCommandLockScreenRequest iokit_vendor_specific_msg(2) +// AppleNVRAM Variable name +#define IORegistrySleepSuppressionMode "IORegistryCurrentSleepMode" + +// Interface +#define kNoSleepDriverClassName STR(NoSleepExtension) + +// GUI +#define SHOW_UI_ALERT_KEXT_NOT_LOADED() NSRunAlertPanel(@"Oops!", @"NoSleep Kernel Extension is not loaded.", @"OK", nil, nil) + +#define NOSLEEP_ID "com.protech.NoSleep" + +#define NOSLEEP_HELPER_PATH "/Applications/Utilities/NoSleep.app" +#define NOSLEEP_PREFPANE_PATH "/Library/PreferencePanes/NoSleep.prefPane" + +#define kNoSleepModeCurrent 0 +#define kNoSleepModeAC 1 +#define kNoSleepModeBattery 2 + +//Settings +#define NOSLEEP_SETTINGS_UPDATE_EVENTNAME "UpdateSettings" + +#define NOSLEEP_SETTINGS_isBWIconEnabledID "IsBWIconEnabled" +#define NOSLEEP_SETTINGS_toLockScreenID "LockScreen" +#define NOSLEEP_SETTINGS_useDoubleClick "UseDoubleClick" diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h new file mode 100644 index 0000000..71b6c79 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterface.h @@ -0,0 +1,31 @@ +// +// NoSleepInterface.h +// nosleep +// +// Created by Pavel Prokofiev on 4/3/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#include + +//io_connect_t m_connect; +typedef io_service_t NoSleepInterfaceService; +typedef io_connect_t NoSleepInterfaceConnect; +typedef io_object_t NoSleepInterestNotification; + +#ifdef __cplusplus +extern "C" { +#endif + extern bool NoSleepVerbose; + + NoSleepInterestNotification NoSleep_ReceiveStateChanged(NoSleepInterfaceConnect m_connect, IOServiceInterestCallback callback, void *refCon); + void NoSleep_ReleaseStateChanged(NoSleepInterestNotification notifyObj); + + bool NoSleep_InterfaceCreate(NoSleepInterfaceService *service, NoSleepInterfaceConnect *connect); + bool NoSleep_InterfaceDestroy(NoSleepInterfaceConnect connect); + bool NoSleep_GetSleepSuppressionMode(NoSleepInterfaceConnect connect, int mode); + bool NoSleep_SetSleepSuppressionMode(NoSleepInterfaceConnect connect, bool state, int mode); + +#ifdef __cplusplus +} +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h new file mode 100644 index 0000000..87eff36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepInterfaceWrapper.h @@ -0,0 +1,27 @@ +// +// NoSleepInterfaceWrapper.h +// nosleep +// +// Created by Pavel Prokofiev on 4/7/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import + +#import +#import + +@interface NoSleepInterfaceWrapper : NSObject { +@private + NoSleepInterfaceConnect _noSleepInterface; + NoSleepInterestNotification _noSleepNotification; + + id notificationDelegate; +} + +@property (retain) id notificationDelegate; + +-(BOOL) stateForMode:(int)mode; +-(void) setState:(BOOL)state forMode:(int)mode; + +@end diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h new file mode 100644 index 0000000..6cdbf07 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/NoSleepNotificationDelegate.h @@ -0,0 +1,16 @@ +// +// NoSleepNotificationDelegate.h +// nosleep +// +// Created by Pavel Prokofiev on 4/8/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import + +@protocol NoSleepNotificationDelegate +@optional + +-(void) notificationReceived:(uint32_t)messageType :(void *)messageArgument; + +@end diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h new file mode 100644 index 0000000..88e567c --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Headers/Utilities.h @@ -0,0 +1,23 @@ +// +// Utilities.h +// NoSleepFramework +// +// Created by Pavel Prokofiev on 2/24/12. +// Copyright 2012 __MyCompanyName__. All rights reserved. +// + +#ifndef NoSleepFramework_Utilities_h +#define NoSleepFramework_Utilities_h + +typedef enum { + kLICheck = 0, + kLIRegister, + kLIUnregister, +} LoginItemAction; + +BOOL registerLoginItem(LoginItemAction action); + +BOOL GetLockScreen(); +void SetLockScreen(BOOL value); + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep new file mode 100755 index 0000000..3f0f09b Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/NoSleep differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..8f19e71 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,42 @@ + + + + + BuildMachineOSBuild + 12D78 + CFBundleDevelopmentRegion + English + CFBundleExecutable + NoSleep + CFBundleIdentifier + com.protech.NoSleepFramework + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + NoSleep + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.3.3 + CFBundleSignature + ???? + CFBundleVersion + 1.3.3 + DTCompiler + + DTPlatformBuild + 4H512 + DTPlatformVersion + GM + DTSDKBuild + 12D75 + DTSDKName + macosx10.8 + DTXcode + 0461 + DTXcodeBuild + 4H512 + NSHumanReadableCopyright + Copyright © 2012-2013 Pavel Prokofiev. All rights reserved. + + diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/Current b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/NoSleep.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Headers b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Resources b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Sparkle b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Sparkle new file mode 120000 index 0000000..b2c5273 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Sparkle @@ -0,0 +1 @@ +Versions/Current/Sparkle \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h new file mode 100644 index 0000000..171148a --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h @@ -0,0 +1,33 @@ +// +// SUAppcast.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCAST_H +#define SUAPPCAST_H + +@class SUAppcastItem; +@interface SUAppcast : NSObject { + NSArray *items; + NSString *userAgentString; + id delegate; + NSMutableData *incrementalData; +} + +- (void)fetchAppcastFromURL:(NSURL *)url; +- (void)setDelegate:delegate; +- (void)setUserAgentString:(NSString *)userAgentString; + +- (NSArray *)items; + +@end + +@interface NSObject (SUAppcastDelegate) +- (void)appcastDidFinishLoading:(SUAppcast *)appcast; +- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h new file mode 100644 index 0000000..7f1ca65 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h @@ -0,0 +1,47 @@ +// +// SUAppcastItem.h +// Sparkle +// +// Created by Andy Matuschak on 3/12/06. +// Copyright 2006 Andy Matuschak. All rights reserved. +// + +#ifndef SUAPPCASTITEM_H +#define SUAPPCASTITEM_H + +@interface SUAppcastItem : NSObject { + NSString *title; + NSDate *date; + NSString *itemDescription; + + NSURL *releaseNotesURL; + + NSString *DSASignature; + NSString *minimumSystemVersion; + + NSURL *fileURL; + NSString *versionString; + NSString *displayVersionString; + + NSDictionary *propertiesDictionary; +} + +// Initializes with data from a dictionary provided by the RSS class. +- initWithDictionary:(NSDictionary *)dict; + +- (NSString *)title; +- (NSString *)versionString; +- (NSString *)displayVersionString; +- (NSDate *)date; +- (NSString *)itemDescription; +- (NSURL *)releaseNotesURL; +- (NSURL *)fileURL; +- (NSString *)DSASignature; +- (NSString *)minimumSystemVersion; + +// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. +- (NSDictionary *)propertiesDictionary; + +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h new file mode 100644 index 0000000..e78c4d3 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h @@ -0,0 +1,118 @@ +// +// 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 + +@class SUUpdateDriver, SUAppcastItem, SUHost, SUAppcast; +@interface SUUpdater : NSObject { + NSTimer *checkTimer; + SUUpdateDriver *driver; + + SUHost *host; + IBOutlet id delegate; +} + ++ (SUUpdater *)sharedUpdater; ++ (SUUpdater *)updaterForBundle:(NSBundle *)bundle; +- (NSBundle *)hostBundle; + +- (void)setDelegate:(id)delegate; +- delegate; + +- (void)setAutomaticallyChecksForUpdates:(BOOL)automaticallyChecks; +- (BOOL)automaticallyChecksForUpdates; + +- (void)setUpdateCheckInterval:(NSTimeInterval)interval; +- (NSTimeInterval)updateCheckInterval; + +- (void)setFeedURL:(NSURL *)feedURL; +- (NSURL *)feedURL; + +- (void)setSendsSystemProfile:(BOOL)sendsSystemProfile; +- (BOOL)sendsSystemProfile; + +- (void)setAutomaticallyDownloadsUpdates:(BOOL)automaticallyDownloadsUpdates; +- (BOOL)automaticallyDownloadsUpdates; + +// This IBAction is meant for a main menu item. Hook up any menu item to this action, +// and Sparkle will check for updates and report back its findings verbosely. +- (IBAction)checkForUpdates:sender; + +// This kicks off an update meant to be programmatically initiated. That is, it will display no UI unless it actually finds an update, +// in which case it proceeds as usual. If the fully automated updating is turned on, however, this will invoke that behavior, and if an +// update is found, it will be downloaded and prepped for installation. +- (void)checkForUpdatesInBackground; + +// Date of last update check. Returns null if no check has been performed. +- (NSDate*)lastUpdateCheckDate; + +// This begins a "probing" check for updates which will not actually offer to update to that version. The delegate methods, though, +// (up to updater:didFindValidUpdate: and updaterDidNotFindUpdate:), are called, so you can use that information in your UI. +- (void)checkForUpdateInformation; + +// Call this to appropriately schedule or cancel the update checking timer according to the preferences for time interval and automatic checks. This call does not change the date of the next check, but only the internal NSTimer. +- (void)resetUpdateCycle; + +- (BOOL)updateInProgress; +@end + +@interface NSObject (SUUpdaterDelegateInformalProtocol) +// This method allows you to add extra parameters to the appcast URL, potentially based on whether or not Sparkle will also be sending along the system profile. This method should return an array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user. +- (NSArray *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; + +// Use this to override the default behavior for Sparkle prompting the user about automatic update checks. +- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)bundle; + +// Implement this if you want to do some special handling with the appcast once it finishes loading. +- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; + +// If you're using special logic or extensions in your appcast, implement this to use your own logic for finding +// a valid update, if any, in the given appcast. +- (SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)bundle; + +// Sent when a valid update is found by the update driver. +- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update; + +// Sent when a valid update is not found. +- (void)updaterDidNotFindUpdate:(SUUpdater *)update; + +// Sent immediately before installing the specified update. +- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)update; + +// Return YES to delay the relaunch until you do some processing; invoke the given NSInvocation to continue. +- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)update untilInvoking:(NSInvocation *)invocation; + +// Called immediately before relaunching. +- (void)updaterWillRelaunchApplication:(SUUpdater *)updater; + +// This method allows you to provide a custom version comparator. +// If you don't implement this method or return nil, the standard version comparator will be used. +- (id )versionComparatorForUpdater:(SUUpdater *)updater; + +// Returns the path which is used to relaunch the client after the update is installed. By default, the path of the host bundle. +- (NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; + +@end + +// Define some minimum intervals to avoid DOS-like checking attacks. These are in seconds. +#ifdef DEBUG +#define SU_MIN_CHECK_INTERVAL 60 +#else +#define SU_MIN_CHECK_INTERVAL 60*60 +#endif + +#ifdef DEBUG +#define SU_DEFAULT_CHECK_INTERVAL 60 +#else +#define SU_DEFAULT_CHECK_INTERVAL 60*60*24 +#endif + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h new file mode 100644 index 0000000..3d11ae8 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h @@ -0,0 +1,27 @@ +// +// SUVersionComparisonProtocol.h +// Sparkle +// +// Created by Andy Matuschak on 12/21/07. +// Copyright 2007 Andy Matuschak. All rights reserved. +// + +#ifndef SUVERSIONCOMPARISONPROTOCOL_H +#define SUVERSIONCOMPARISONPROTOCOL_H + +/*! + @protocol + @abstract Implement this protocol to provide version comparison facilities for Sparkle. +*/ +@protocol SUVersionComparison + +/*! + @method + @abstract An abstract method to compare two version strings. + @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. +*/ +- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; + +@end + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h new file mode 100644 index 0000000..08dd577 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h @@ -0,0 +1,21 @@ +// +// 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 + +#import +#import +#import + +#endif diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..c7f277d --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + Sparkle + CFBundleIdentifier + org.andymatuschak.Sparkle + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Sparkle + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.5 Beta 6 + CFBundleSignature + ???? + CFBundleVersion + 313 + + diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt new file mode 100644 index 0000000..20466c4 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt @@ -0,0 +1,7 @@ +Copyright (c) 2006 Andy Matuschak + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist new file mode 100644 index 0000000..92ef947 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist @@ -0,0 +1,174 @@ + + + + + ADP2,1 + Developer Transition Kit + MacBook1,1 + MacBook (Core Duo) + MacBook2,1 + MacBook (Core 2 Duo) + MacBook4,1 + MacBook (Core 2 Duo Feb 2008) + MacBookAir1,1 + MacBook Air (January 2008) + 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) + MacPro1,1 + Mac Pro (four-core) + MacPro2,1 + Mac Pro (eight-core) + MacPro3,1 + Mac Pro (January 2008 4- or 8- core "Harpertown") + Macmini1,1 + Mac Mini (Core Solo/Duo) + PowerBook1,1 + PowerBook G3 + PowerBook2,1 + iBook G3 + PowerBook2,2 + iBook G3 (FireWire) + PowerBook2,3 + iBook G3 + PowerBook2,4 + iBook G3 + PowerBook3,1 + PowerBook G3 (FireWire) + PowerBook3,2 + PowerBook G4 + PowerBook3,3 + PowerBook G4 (Gigabit Ethernet) + PowerBook3,4 + PowerBook G4 (DVI) + PowerBook3,5 + PowerBook G4 (1GHz / 867MHz) + PowerBook4,1 + iBook G3 (Dual USB, Late 2001) + PowerBook4,2 + iBook G3 (16MB VRAM) + PowerBook4,3 + iBook G3 Opaque 16MB VRAM, 32MB VRAM, Early 2003) + PowerBook5,1 + PowerBook G4 (17 inch) + PowerBook5,2 + PowerBook G4 (15 inch FW 800) + PowerBook5,3 + PowerBook G4 (17-inch 1.33GHz) + PowerBook5,4 + PowerBook G4 (15 inch 1.5/1.33GHz) + PowerBook5,5 + PowerBook G4 (17-inch 1.5GHz) + PowerBook5,6 + PowerBook G4 (15 inch 1.67GHz/1.5GHz) + PowerBook5,7 + PowerBook G4 (17-inch 1.67GHz) + PowerBook5,8 + PowerBook G4 (Double layer SD, 15 inch) + PowerBook5,9 + PowerBook G4 (Double layer SD, 17 inch) + PowerBook6,1 + PowerBook G4 (12 inch) + PowerBook6,2 + PowerBook G4 (12 inch, DVI) + PowerBook6,3 + iBook G4 + PowerBook6,4 + PowerBook G4 (12 inch 1.33GHz) + PowerBook6,5 + iBook G4 (Early-Late 2004) + PowerBook6,7 + iBook G4 (Mid 2005) + PowerBook6,8 + PowerBook G4 (12 inch 1.5GHz) + PowerMac1,1 + Power Macintosh G3 (Blue & White) + PowerMac1,2 + Power Macintosh G4 (PCI Graphics) + PowerMac10,1 + Mac Mini G4 + PowerMac10,2 + Mac Mini (Late 2005) + PowerMac11,2 + Power Macintosh G5 (Late 2005) + PowerMac12,1 + iMac G5 (iSight) + PowerMac2,1 + iMac G3 (Slot-loading CD-ROM) + PowerMac2,2 + iMac G3 (Summer 2000) + PowerMac3,1 + Power Macintosh G4 (AGP Graphics) + PowerMac3,2 + Power Macintosh G4 (AGP Graphics) + PowerMac3,3 + Power Macintosh G4 (Gigabit Ethernet) + PowerMac3,4 + Power Macintosh G4 (Digital Audio) + PowerMac3,5 + Power Macintosh G4 (Quick Silver) + PowerMac3,6 + Power Macintosh G4 (Mirrored Drive Door) + PowerMac4,1 + iMac G3 (Early/Summer 2001) + PowerMac4,2 + iMac G4 (Flat Panel) + PowerMac4,4 + eMac + PowerMac4,5 + iMac G4 (17-inch Flat Panel) + PowerMac5,1 + Power Macintosh G4 Cube + PowerMac6,1 + iMac G4 (USB 2.0) + PowerMac6,3 + iMac G4 (20-inch Flat Panel) + PowerMac6,4 + eMac (USB 2.0, 2005) + PowerMac7,2 + Power Macintosh G5 + PowerMac7,3 + Power Macintosh G5 + PowerMac8,1 + iMac G5 + PowerMac8,2 + iMac G5 (Ambient Light Sensor) + PowerMac9,1 + Power Macintosh G5 (Late 2005) + RackMac1,1 + Xserve G4 + RackMac1,2 + Xserve G4 (slot-loading, cluster node) + RackMac3,1 + Xserve G5 + Xserve1,1 + Xserve (Intel Xeon) + Xserve2,1 + Xserve (January 2008 quad-core) + iMac1,1 + iMac G3 (Rev A-D) + iMac4,1 + iMac (Core Duo) + iMac4,2 + iMac for Education (17-inch, Core Duo) + iMac5,1 + iMac (Core 2 Duo, 17 or 20 inch, SuperDrive) + iMac5,2 + iMac (Core 2 Duo, 17 inch, Combo Drive) + iMac6,1 + iMac (Core 2 Duo, 24 inch, SuperDrive) + iMac8,1 + iMac (April 2008) + + diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib new file mode 100644 index 0000000..4f1d598 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..6b92630 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..b4353d2 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..b403a3e Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings new file mode 100644 index 0000000..b31f928 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..7630390 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..e7e7497 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..e8dc5b8 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings new file mode 100644 index 0000000..16e0787 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..6b2f938 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..c9b1e7d Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..8c54c21 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings new file mode 100644 index 0000000..f83ea23 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..4cd529a Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..65dfc95 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..4b7cc90 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings new file mode 100644 index 0000000..ea175ae Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..15ba8f4 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..2984064 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..55cc2c2 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings new file mode 100644 index 0000000..5c410d0 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..aa38f86 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..c82d358 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..ac298ce Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings new file mode 100644 index 0000000..67cf535 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch new file mode 100755 index 0000000..61fd796 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..1d4655c Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..103b1cf Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..c09d9e7 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings new file mode 100644 index 0000000..f3ff9d8 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..53cb91a Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib new file mode 100644 index 0000000..7e6d490 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib new file mode 100644 index 0000000..64babac Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings new file mode 100644 index 0000000..b676a4f Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle new file mode 100755 index 0000000..ffc326c Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/Current b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Frameworks/Sparkle.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Info.plist b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Info.plist new file mode 100644 index 0000000..2a13372 --- /dev/null +++ b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Info.plist @@ -0,0 +1,52 @@ + + + + + BuildMachineOSBuild + 12D78 + CFBundleDevelopmentRegion + English + CFBundleExecutable + NoSleep + CFBundleIconFile + Logo.icns + CFBundleIdentifier + com.protech.NoSleepPref + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + NoSleep + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.3.3 + CFBundleSignature + ???? + CFBundleVersion + 1.3.3 + DTCompiler + + DTPlatformBuild + 4H512 + DTPlatformVersion + GM + DTSDKBuild + 12D75 + DTSDKName + macosx10.8 + DTXcode + 0461 + DTXcodeBuild + 4H512 + NSHumanReadableCopyright + Copyright © 2012-2013 Pavel Prokofiev. All rights reserved. + NSMainNibFile + NoSleepPref + NSPrefPaneIconFile + Logo.icns + NSPrefPaneIconLabel + NoSleep + NSPrincipalClass + NoSleepPreferences + + diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/MacOS/NoSleep b/resources/patch/1.3.3/NoSleep.prefPane/Contents/MacOS/NoSleep new file mode 100755 index 0000000..6d62013 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/MacOS/NoSleep differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleACW.icns b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleACW.icns new file mode 100644 index 0000000..70c68f0 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleACW.icns differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleBattery.icns b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleBattery.icns new file mode 100644 index 0000000..18f933c Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/AppleBattery.icns differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/Logo.icns b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/Logo.icns new file mode 100644 index 0000000..0599507 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/Logo.icns differ diff --git a/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/en.lproj/NoSleepPref.nib b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/en.lproj/NoSleepPref.nib new file mode 100644 index 0000000..c517c84 Binary files /dev/null and b/resources/patch/1.3.3/NoSleep.prefPane/Contents/Resources/en.lproj/NoSleepPref.nib differ diff --git a/resources/patch/com.apple.Boot.plist b/resources/patch/com.apple.Boot.plist new file mode 100644 index 0000000..08627de --- /dev/null +++ b/resources/patch/com.apple.Boot.plist @@ -0,0 +1,10 @@ + + + + + Kernel Flags + + Kernel Cache + /System/Library/PrelinkedKernels/patchedkernel + +