111 lines
3.9 KiB
C
111 lines
3.9 KiB
C
//
|
|
// SUConstants.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 3/16/06.
|
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
|
|
#ifndef SUCONSTANTS_H
|
|
#define SUCONSTANTS_H
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Misc:
|
|
// -----------------------------------------------------------------------------
|
|
|
|
extern const NSTimeInterval SUMinimumUpdateCheckInterval;
|
|
extern const NSTimeInterval SUDefaultUpdateCheckInterval;
|
|
|
|
extern NSString *const SUBundleIdentifier;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Notifications:
|
|
// -----------------------------------------------------------------------------
|
|
|
|
extern NSString *const SUTechnicalErrorInformationKey;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// PList keys::
|
|
// -----------------------------------------------------------------------------
|
|
|
|
extern NSString *const SUFeedURLKey;
|
|
extern NSString *const SUHasLaunchedBeforeKey;
|
|
extern NSString *const SUShowReleaseNotesKey;
|
|
extern NSString *const SUSkippedVersionKey;
|
|
extern NSString *const SUScheduledCheckIntervalKey;
|
|
extern NSString *const SULastCheckTimeKey;
|
|
extern NSString *const SUExpectsDSASignatureKey;
|
|
extern NSString *const SUPublicDSAKeyKey;
|
|
extern NSString *const SUPublicDSAKeyFileKey;
|
|
extern NSString *const SUAutomaticallyUpdateKey;
|
|
extern NSString *const SUAllowsAutomaticUpdatesKey;
|
|
extern NSString *const SUEnableAutomaticChecksKey;
|
|
extern NSString *const SUEnableAutomaticChecksKeyOld;
|
|
extern NSString *const SUEnableSystemProfilingKey;
|
|
extern NSString *const SUSendProfileInfoKey;
|
|
extern NSString *const SULastProfileSubmitDateKey;
|
|
extern NSString *const SUPromptUserOnFirstLaunchKey;
|
|
extern NSString *const SUKeepDownloadOnFailedInstallKey;
|
|
extern NSString *const SUDefaultsDomainKey;
|
|
extern NSString *const SUFixedHTMLDisplaySizeKey __attribute__((deprecated("This key is obsolete and has no effect.")));
|
|
|
|
extern NSString *const SUAppendVersionNumberKey;
|
|
extern NSString *const SUEnableAutomatedDowngradesKey;
|
|
extern NSString *const SUNormalizeInstalledApplicationNameKey;
|
|
extern NSString *const SURelaunchToolNameKey;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Appcast keys::
|
|
// -----------------------------------------------------------------------------
|
|
|
|
extern NSString *const SUAppcastAttributeDeltaFrom;
|
|
extern NSString *const SUAppcastAttributeDSASignature;
|
|
extern NSString *const SUAppcastAttributeShortVersionString;
|
|
extern NSString *const SUAppcastAttributeVersion;
|
|
|
|
extern NSString *const SUAppcastElementCriticalUpdate;
|
|
extern NSString *const SUAppcastElementDeltas;
|
|
extern NSString *const SUAppcastElementMinimumSystemVersion;
|
|
extern NSString *const SUAppcastElementMaximumSystemVersion;
|
|
extern NSString *const SUAppcastElementReleaseNotesLink;
|
|
extern NSString *const SUAppcastElementTags;
|
|
|
|
extern NSString *const SURSSAttributeURL;
|
|
|
|
extern NSString *const SURSSElementDescription;
|
|
extern NSString *const SURSSElementEnclosure;
|
|
extern NSString *const SURSSElementLink;
|
|
extern NSString *const SURSSElementPubDate;
|
|
extern NSString *const SURSSElementTitle;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Errors:
|
|
// -----------------------------------------------------------------------------
|
|
|
|
extern NSString *const SUSparkleErrorDomain;
|
|
typedef NS_ENUM(OSStatus, SUError) {
|
|
// Appcast phase errors.
|
|
SUAppcastParseError = 1000,
|
|
SUNoUpdateError = 1001,
|
|
SUAppcastError = 1002,
|
|
SURunningFromDiskImageError = 1003,
|
|
|
|
// Downlaod phase errors.
|
|
SUTemporaryDirectoryError = 2000,
|
|
|
|
// Extraction phase errors.
|
|
SUUnarchivingError = 3000,
|
|
SUSignatureError = 3001,
|
|
|
|
// Installation phase errors.
|
|
SUFileCopyFailure = 4000,
|
|
SUAuthenticationFailure = 4001,
|
|
SUMissingUpdateError = 4002,
|
|
SUMissingInstallerToolError = 4003,
|
|
SURelaunchError = 4004,
|
|
SUInstallationError = 4005,
|
|
SUDowngradeError = 4006
|
|
};
|
|
|
|
#endif
|