source: trunk/Sparkle/SUConstants.m @ 1046

Revision 250, 1.8 KB checked in by speck, 4 years ago (diff)

Sparkle update to trunk.

Line 
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
12NSString *SUUpdaterWillRestartNotification = @"SUUpdaterWillRestartNotificationName";
13NSString *SUTechnicalErrorInformationKey = @"SUTechnicalErrorInformation";
14
15NSString *SUHasLaunchedBeforeKey = @"SUHasLaunchedBefore";
16NSString *SUFeedURLKey = @"SUFeedURL";
17NSString *SUShowReleaseNotesKey = @"SUShowReleaseNotes";
18NSString *SUSkippedVersionKey = @"SUSkippedVersion";
19NSString *SUScheduledCheckIntervalKey = @"SUScheduledCheckInterval";
20NSString *SULastCheckTimeKey = @"SULastCheckTime";
21NSString *SUExpectsDSASignatureKey = @"SUExpectsDSASignature";
22NSString *SUPublicDSAKeyKey = @"SUPublicDSAKey";
23NSString *SUPublicDSAKeyFileKey = @"SUPublicDSAKeyFile";
24NSString *SUAutomaticallyUpdateKey = @"SUAutomaticallyUpdate";
25NSString *SUAllowsAutomaticUpdatesKey = @"SUAllowsAutomaticUpdates";
26NSString *SUEnableSystemProfilingKey = @"SUEnableSystemProfiling";
27NSString *SUEnableAutomaticChecksKey = @"SUEnableAutomaticChecks";
28NSString *SUEnableAutomaticChecksKeyOld = @"SUCheckAtStartup";
29NSString *SUSendProfileInfoKey = @"SUSendProfileInfo";
30NSString *SULastProfileSubmitDateKey = @"SULastProfileSubmissionDate";
31
32NSString *SUSparkleErrorDomain = @"SUSparkleErrorDomain";
33OSStatus SUAppcastParseError = 1000;
34OSStatus SUNoUpdateError = 1001;
35OSStatus SUAppcastError = 1002;
36OSStatus SURunningFromDiskImageError = 1003;
37
38OSStatus SUTemporaryDirectoryError = 2000;
39
40OSStatus SUUnarchivingError = 3000;
41OSStatus SUSignatureError = 3001;
42
43OSStatus SUFileCopyFailure = 4000;
44OSStatus SUAuthenticationFailure = 4001;
45OSStatus SUMissingUpdateError = 4002;
46OSStatus SUMissingInstallerToolError = 4003;
47OSStatus SURelaunchError = 4004;
48OSStatus SUInstallationError = 4005;
49OSStatus SUDowngradeError = 4006;
Note: See TracBrowser for help on using the repository browser.