| 1 | // |
|---|
| 2 | // SUConstants.m |
|---|
| 3 | // Sparkle |
|---|
| 4 | // |
|---|
| 5 | // Created by Andy Matuschak on 3/16/06. |
|---|
| 6 | // Copyright 2006 Andy Matuschak. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "Sparkle.h" |
|---|
| 10 | #import "SUConstants.h" |
|---|
| 11 | |
|---|
| 12 | NSString *SUUpdaterWillRestartNotification = @"SUUpdaterWillRestartNotificationName"; |
|---|
| 13 | NSString *SUTechnicalErrorInformationKey = @"SUTechnicalErrorInformation"; |
|---|
| 14 | |
|---|
| 15 | NSString *SUHasLaunchedBeforeKey = @"SUHasLaunchedBefore"; |
|---|
| 16 | NSString *SUFeedURLKey = @"SUFeedURL"; |
|---|
| 17 | NSString *SUShowReleaseNotesKey = @"SUShowReleaseNotes"; |
|---|
| 18 | NSString *SUSkippedVersionKey = @"SUSkippedVersion"; |
|---|
| 19 | NSString *SUScheduledCheckIntervalKey = @"SUScheduledCheckInterval"; |
|---|
| 20 | NSString *SULastCheckTimeKey = @"SULastCheckTime"; |
|---|
| 21 | NSString *SUExpectsDSASignatureKey = @"SUExpectsDSASignature"; |
|---|
| 22 | NSString *SUPublicDSAKeyKey = @"SUPublicDSAKey"; |
|---|
| 23 | NSString *SUPublicDSAKeyFileKey = @"SUPublicDSAKeyFile"; |
|---|
| 24 | NSString *SUAutomaticallyUpdateKey = @"SUAutomaticallyUpdate"; |
|---|
| 25 | NSString *SUAllowsAutomaticUpdatesKey = @"SUAllowsAutomaticUpdates"; |
|---|
| 26 | NSString *SUEnableSystemProfilingKey = @"SUEnableSystemProfiling"; |
|---|
| 27 | NSString *SUEnableAutomaticChecksKey = @"SUEnableAutomaticChecks"; |
|---|
| 28 | NSString *SUEnableAutomaticChecksKeyOld = @"SUCheckAtStartup"; |
|---|
| 29 | NSString *SUSendProfileInfoKey = @"SUSendProfileInfo"; |
|---|
| 30 | NSString *SULastProfileSubmitDateKey = @"SULastProfileSubmissionDate"; |
|---|
| 31 | |
|---|
| 32 | NSString *SUSparkleErrorDomain = @"SUSparkleErrorDomain"; |
|---|
| 33 | OSStatus SUAppcastParseError = 1000; |
|---|
| 34 | OSStatus SUNoUpdateError = 1001; |
|---|
| 35 | OSStatus SUAppcastError = 1002; |
|---|
| 36 | OSStatus SURunningFromDiskImageError = 1003; |
|---|
| 37 | |
|---|
| 38 | OSStatus SUTemporaryDirectoryError = 2000; |
|---|
| 39 | |
|---|
| 40 | OSStatus SUUnarchivingError = 3000; |
|---|
| 41 | OSStatus SUSignatureError = 3001; |
|---|
| 42 | |
|---|
| 43 | OSStatus SUFileCopyFailure = 4000; |
|---|
| 44 | OSStatus SUAuthenticationFailure = 4001; |
|---|
| 45 | OSStatus SUMissingUpdateError = 4002; |
|---|
| 46 | OSStatus SUMissingInstallerToolError = 4003; |
|---|
| 47 | OSStatus SURelaunchError = 4004; |
|---|
| 48 | OSStatus SUInstallationError = 4005; |
|---|
| 49 | OSStatus SUDowngradeError = 4006; |
|---|