diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 80666d3..848d2be 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -14,7 +14,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build the site in the jekyll/builder container + # We will need to remove api-reference from XML validation. Some issues are incorect and others we need to get resolved upstream. run: | + rm -rf documentation/api-reference docker run \ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future && find /srv/jekyll/_site -type f -name '*.html' -exec xmllint --noout {} \; && wget https://github.com/validator/validator/releases/download/18.11.5/vnu.jar_18.11.5.zip && unzip -p vnu.jar_18.11.5.zip dist/vnu.jar > vnu.jar && java -jar vnu.jar --skip-non-html /srv/jekyll/_site" diff --git a/_layouts/documentation-v2.html b/_layouts/documentation-v2.html deleted file mode 100644 index 62615f4..0000000 --- a/_layouts/documentation-v2.html +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: default ---- -
-
- -
-
-
- {{ content }} -
-
-
diff --git a/documentation/api-reference/Classes/SPUDownloadData.html b/documentation/api-reference/Classes/SPUDownloadData.html new file mode 100644 index 0000000..bdf3473 --- /dev/null +++ b/documentation/api-reference/Classes/SPUDownloadData.html @@ -0,0 +1,364 @@ + + + + SPUDownloadData Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUDownloadData

+
+
+

Objective-C

+
@interface SPUDownloadData : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SPUDownloadData : NSObject, NSSecureCoding
+ +
+
+

A class for containing downloaded data along with some information about it.

+ +
+
+
+
    +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The raw data that was downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSData *_Nonnull data;
    + +
    +
    +

    Swift

    +
    var data: Data { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + URL + +
    +
    +
    +
    +
    +
    +

    The URL that was fetched from.

    + +

    This may be different from the URL in the request if there were redirects involved.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSURL *_Nonnull URL;
    + +
    +
    +

    Swift

    +
    var url: URL { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + textEncodingName + +
    +
    +
    +
    +
    +
    +

    The IANA charset encoding name if available. Eg: “utf-8”

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSString *textEncodingName;
    + +
    +
    +

    Swift

    +
    var textEncodingName: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + MIMEType + +
    +
    +
    +
    +
    +
    +

    The MIME type if available. Eg: “text/plain”

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSString *MIMEType;
    + +
    +
    +

    Swift

    +
    var mimeType: String? { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUStandardUpdaterController.html b/documentation/api-reference/Classes/SPUStandardUpdaterController.html new file mode 100644 index 0000000..7f3d5ee --- /dev/null +++ b/documentation/api-reference/Classes/SPUStandardUpdaterController.html @@ -0,0 +1,549 @@ + + + + SPUStandardUpdaterController Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUpdaterController

+
+
+

Objective-C

+
@interface SPUStandardUpdaterController : NSObject
+ +
+
+

Swift

+
class SPUStandardUpdaterController : NSObject
+ +
+
+

A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

+ +

This class can be instantiated in a nib or created programatically using -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

+ +

The controller’s updater targets the application’s main bundle and uses Sparkle’s standard user interface. +Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

+ +

The controller creates an SPUUpdater instance using a SPUStandardUserDriver and allows hooking up the check for updates action and handling menu item validation. +It also allows hooking up the updater’s and user driver’s delegates.

+ +

If you need more control over what bundle you want to update, or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

+ +
+
+
+
    +
  • +
    + + + + updaterDelegate + +
    +
    +
    +
    +
    +
    +

    Interface builder outlet for the updater’s delegate.

    + +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<SPUUpdaterDelegate> updaterDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userDriverDelegate + +
    +
    +
    +
    +
    +
    +

    Interface builder outlet for the user driver’s delegate.

    + +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<SPUStandardUserDriverDelegate> userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updater + +
    +
    +
    +
    +
    +
    +

    Accessible property for the updater. Some properties on the updater can be binded via KVO

    + +

    When instantiated from a nib, don’t perform update checks before the application has finished launching in a MainMenu nib (i.e applicationDidFinishLaunching:) or before the corresponding window/view controller has been loaded (i.e, windowDidLoad or viewDidLoad). The updater is not guaranteed to be started yet before these points.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUUpdater *_Nonnull updater;
    + +
    +
    +

    Swift

    +
    var updater: SPUUpdater { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userDriver + +
    +
    +
    +
    +
    +
    +

    Accessible property for the updater’s user driver.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUStandardUserDriver *_Nonnull userDriver;
    + +
    +
    +

    Swift

    +
    var userDriver: SPUStandardUserDriver { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Create a new SPUStandardUpdaterController from a nib.

    + +

    You cannot call this initializer directly. You must instantiate a SPUStandardUpdaterController inside of a nib (typically the MainMenu nib) to use it.

    + +

    To create a SPUStandardUpdaterController programatically, use -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate: instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new SPUStandardUpdaterController programmatically.

    + +

    The updater is started automatically. See -startUpdater for more information.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithUpdaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate
    +         userDriverDelegate:
    +             (nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

    + +

    You can specify whether or not you want to start the updater immediately. +If you do not start the updater, you must invoke -startUpdater at a later time to start it.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithStartingUpdater:(BOOL)startUpdater
    +            updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate
    +         userDriverDelegate:
    +             (nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -startUpdater + +
    +
    +
    +
    +
    +
    +

    Starts the updater if it has not already been started.

    + +

    You should only call this method yourself if you opted out of starting the updater on initialization. +Hence, do not call this yourself if you are instantiating this controller from a nib.

    + +

    This invokes -[SPUUpdater startUpdater:]. If the application is misconfigured with Sparkle, an error is logged and an alert is shown to the user (after a few seconds) to contact the developer. +If you want more control over this behavior, you can create your own SPUUpdater instead of using SPUStandardUpdaterController.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)startUpdater;
    + +
    +
    +

    Swift

    +
    func startUpdater()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates: + +
    +
    +
    +
    +
    +
    +

    Explicitly checks for updates and displays a progress dialog while doing so.

    + +

    This method is meant for a main menu item. +Connect any NSMenuItem to this action in Interface Builder or programmatically, +and Sparkle will check for updates and report back its findings verbosely when it is invoked.

    + +

    When the target/action of the menu item is set to this controller and this method, +this controller also handles enabling/disabling the menu item by checking +-[SPUUpdater canCheckForUpdates]

    + +

    This action checks updates by invoking -[SPUUpdater checkForUpdates]

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates:(nullable id)sender;
    + +
    +
    +

    Swift

    +
    @IBAction func checkForUpdates(_ sender: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUStandardUserDriver.html b/documentation/api-reference/Classes/SPUStandardUserDriver.html new file mode 100644 index 0000000..3b7de4b --- /dev/null +++ b/documentation/api-reference/Classes/SPUStandardUserDriver.html @@ -0,0 +1,325 @@ + + + + SPUStandardUserDriver Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUserDriver

+
+
+

Objective-C

+
@interface SPUStandardUserDriver : NSObject <SPUUserDriver>
+ +
+
+

Swift

+
class SPUStandardUserDriver : NSObject, SPUUserDriver
+ +
+
+

Sparkle’s standard built-in user driver for updater interactions

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a Sparkle’s standard user driver for user update interactions

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithHostBundle:(nonnull NSBundle *)hostBundle
    +              delegate:(nullable id<SPUStandardUserDriverDelegate>)delegate;
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + hostBundle + + +
    +

    The target bundle of the host that is being updated.

    +
    +
    + + delegate + + +
    +

    The optional delegate to this user driver.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Use initWithHostBundle:delegate: instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUUpdatePermissionRequest.html b/documentation/api-reference/Classes/SPUUpdatePermissionRequest.html new file mode 100644 index 0000000..de7af8a --- /dev/null +++ b/documentation/api-reference/Classes/SPUUpdatePermissionRequest.html @@ -0,0 +1,318 @@ + + + + SPUUpdatePermissionRequest Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdatePermissionRequest

+
+
+

Objective-C

+
@interface SPUUpdatePermissionRequest : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SPUUpdatePermissionRequest : NSObject, NSSecureCoding
+ +
+
+

This class represents information needed to make a permission request for checking updates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new update permission request instance.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)initWithSystemProfile:
    +    (nonnull NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfile;
    + +
    +
    +

    Swift

    +
    init(systemProfile: [[String : String]])
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + systemProfile + + +
    +

    The system profile information.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + systemProfile + +
    +
    +
    +
    +
    +
    +

    A read-only property for the user’s system profile.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *_Nonnull systemProfile;
    + +
    +
    +

    Swift

    +
    var systemProfile: [[String : String]] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUUpdater.html b/documentation/api-reference/Classes/SPUUpdater.html new file mode 100644 index 0000000..d672f91 --- /dev/null +++ b/documentation/api-reference/Classes/SPUUpdater.html @@ -0,0 +1,1055 @@ + + + + SPUUpdater Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdater

+
+
+

Objective-C

+
@interface SPUUpdater : NSObject
+ +
+
+

Swift

+
class SPUUpdater : NSObject
+ +
+
+

The main API in Sparkle for controlling the update mechanism.

+ +

This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

+ +

For convenience, you can create a standard or nib instantiable updater by using SPUStandardUpdaterController.

+ +

Prefer to set initial properties in your bundle’s Info.plist as described in Customizing Sparkle.

+ +

Otherwise only if you need dynamic behavior (eg. for user preferences) should you set properties on the updater such as:

+ +
    +
  • automaticallyChecksForUpdates
  • +
  • updateCheckInterval
  • +
  • automaticallyDownloadsUpdates
  • +
  • feedURL
  • +
+ +

Please view the documentation on each of these properties for more detail if you are to configure them dynamically.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new SPUUpdater instance

    + +

    This creates an updater, but to start it and schedule update checks -startUpdater: needs to be invoked first.

    + +

    Related: See SPUStandardUpdaterController which wraps a SPUUpdater instance and is suitable for instantiating inside of nib files.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)initWithHostBundle:(nonnull NSBundle *)hostBundle
    +                         applicationBundle:(nonnull NSBundle *)applicationBundle
    +                                userDriver:(nonnull id<SPUUserDriver>)userDriver
    +                                  delegate:
    +                                      (nullable id<SPUUpdaterDelegate>)delegate;
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + + + +
    + + hostBundle + + +
    +

    The bundle that should be targetted for updating.

    +
    +
    + + applicationBundle + + +
    +

    The application bundle that should be waited for termination and relaunched (unless overridden). Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle.

    +
    +
    + + userDriver + + +
    +

    The user driver that Sparkle uses for user update interaction.

    +
    +
    + + delegate + + +
    +

    The delegate for SPUUpdater.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

    + +

    If you want to drop an updater into a nib, use SPUStandardUpdaterController.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -startUpdater: + +
    +
    +
    +
    +
    +
    +

    Starts the updater.

    + +

    This method first checks if Sparkle is configured properly. A valid feed URL should be set before this method is invoked.

    + +

    If the configuration is valid, an update cycle is started in the next main runloop cycle. +During this cycle, a permission prompt may be brought up (if needed) for checking if the user wants automatic update checking. +Otherwise if automatic update checks are enabled, a scheduled update alert may be brought up if enough time has elapsed since the last check. +See automaticallyChecksForUpdates for more information.

    + +

    After starting the updater and before the next runloop cycle, one of -checkForUpdates, -checkForUpdatesInBackground, or -checkForUpdateInformation can be invoked. +This may be useful if you want to check for updates immediately or without showing a potential permission prompt.

    + +

    If the updater cannot be started (i.e, due to a configuration issue in the application), you may want to fall back appropriately. +For example, the standard updater controller (SPUStandardUpdaterController) alerts the user that the app is misconfigured and to contact the developer.

    + +

    This must be called on the main thread.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)startUpdater:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    func start() throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + error + + +
    +

    The error that is populated if this method fails. Pass NULL if not interested in the error information.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater started otherwise NO with a populated error

    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates + +
    +
    +
    +
    +
    +
    +

    Checks for updates, and displays progress while doing so if needed.

    + +

    This is meant for users initiating a new update check or checking the current update progress.

    + +

    If an update hasn’t started, the user may be shown that a new check for updates is occurring. +If an update has already been downloaded or begun installing from a previous session, the user may be presented to install that update. +If the user is already being presented with an update, that update will be shown to the user in active focus.

    + +

    This will find updates that the user has previously opted into skipping.

    + +

    See canCheckForUpdates property which can determine when this method may be invoked.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates;
    + +
    +
    +

    Swift

    +
    func checkForUpdates()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Checks for updates, but does not display any UI unless an update is found.

    + +

    This is meant for programmatically initating a check for updates. +That is, it will display no UI unless it finds an update, in which case it proceeds as usual. +This will not find updates that the user has opted into skipping.

    + +

    Note if there is no resumable update found, and automated updating is turned on, +the update will be downloaded in the background without disrupting the user.

    + +

    This method does not do anything if there is a sessionInProgress.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdatesInBackground;
    + +
    +
    +

    Swift

    +
    func checkForUpdatesInBackground()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Begins a “probing” check for updates which will not actually offer to +update to that version.

    + +

    However, the delegate methods +-[SPUUpdaterDelegate updater:didFindValidUpdate:] and +-[SPUUpdaterDelegate updaterDidNotFindUpdate:] will be called, +so you can use that information in your UI.

    + +

    -[SPUUpdaterDelegate updater:didFinishUpdateCycleForUpdateCheck:error:] will be called when +this probing check is completed.

    + +

    Updates that have been skipped by the user will not be found.

    + +

    This method does not do anything if there is a sessionInProgress.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdateInformation;
    + +
    +
    +

    Swift

    +
    func checkForUpdateInformation()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + canCheckForUpdates + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not updates can be checked by the user.

    + +

    An update check can be made by the user when an update session isn’t in progress, or when an update or its progress is being shown to the user.

    + +

    This property is suitable to use for menu item validation for seeing if -checkForUpdates can be invoked.

    + +

    Note this property does not reflect whether or not an update session is in progress. Please see sessionInProgress property instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL canCheckForUpdates;
    + +
    +
    +

    Swift

    +
    var canCheckForUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sessionInProgress + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not an update session is in progress.

    + +

    An update session is in progress when the appcast is being downloaded, an update is being downloaded, +an update is being shown, update permission is being requested, or the installer is being started.

    + +

    An active session is when Sparkle’s fired scheduler is running.

    + +

    Note an update session may not be running even though Sparkle’s installer (ran as a separate process) may be running, +or even though the update has been downloaded but the installation has been deferred. In both of these cases, a new update session +may be activated with the update resumed at a later point (automatically or manually).

    + +

    See also:

    + + + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sessionInProgress;
    + +
    +
    +

    Swift

    +
    var sessionInProgress: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A property indicating whether or not to check for updates automatically.

    + +

    By default, Sparkle asks users on second launch for permission if they want automatic update checks enabled +and sets this property based on their response. If SUEnableAutomaticChecks is set in the Info.plist, +this permission request is not performed however.

    + +

    Setting this property will persist in the host bundle’s user defaults.

    + +

    The update schedule cycle will be reset in a short delay after the property’s new value is set. +This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    A property indicating the current automatic update check interval in seconds.

    + +

    Setting this property will persist in the host bundle’s user defaults. +For this reason, only set this property if you need dynamic behavior (eg user preferences). +Otherwise prefer to set SUScheduledCheckInterval directly in your Info.plist.

    + +

    The update schedule cycle will be reset in a short delay after the property’s new value is set. +This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A property indicating whether or not updates can be automatically downloaded in the background.

    + +

    By default, updates are not automatically downloaded.

    + +

    Note that the developer can disallow automatic downloading of updates from being enabled. +In this case, this property will return NO regardless of how this property is set.

    + +

    Setting this property will persist in the host bundle’s user defaults. +For this reason, only set this property if you need dynamic behavior (eg user preferences). +Otherwise prefer to set SUAutomaticallyUpdate directly in your Info.plist.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + feedURL + +
    +
    +
    +
    +
    +
    +

    The URL of the appcast used to download update information.

    + +

    If the updater’s delegate implements -[SPUUpdaterDelegate feedURLStringForUpdater:], this will return that feed URL. +Otherwise if the feed URL has been set before, the feed URL returned will be retrieved from the host bundle’s user defaults. +Otherwise the feed URL in the host bundle’s Info.plist will be returned. +If no feed URL can be retrieved, returns nil.

    + +

    This property must be called on the main thread; calls from background threads will return nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly, nullable) NSURL *feedURL;
    + +
    +
    +

    Swift

    +
    var feedURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hostBundle + +
    +
    +
    +
    +
    +
    +

    The host bundle that is being updated.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *_Nonnull hostBundle;
    + +
    +
    +

    Swift

    +
    var hostBundle: Bundle { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userAgentString + +
    +
    +
    +
    +
    +
    +

    The user agent used when checking for updates.

    + +

    By default the user agent string returned is in the format: +$(BundleDisplayName)/$(BundleDisplayVersion) Sparkle/$(SparkleDisplayVersion)

    + +

    BundleDisplayVersion is derived from the application Info.plist’s CFBundleShortVersionString.

    + +

    This default implementation can be overrided.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *_Nonnull userAgentString;
    + +
    +
    +

    Swift

    +
    var userAgentString: String { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + httpHeaders + +
    +
    +
    +
    +
    +
    +

    The HTTP headers used when checking for updates, downloading release notes, and downloading updates.

    + +

    The keys of this dictionary are HTTP header fields and values are corresponding values.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, nullable) NSDictionary<NSString *, NSString *> *httpHeaders;
    + +
    +
    +

    Swift

    +
    var httpHeaders: [String : String]? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not the user’s system profile information is sent when checking for updates.

    + +

    Setting this property will persist in the host bundle’s user defaults.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lastUpdateCheckDate + +
    +
    +
    +
    +
    +
    +

    The date of the last update check or nil if no check has been performed yet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSDate *lastUpdateCheckDate;
    + +
    +
    +

    Swift

    +
    var lastUpdateCheckDate: Date? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -resetUpdateCycle + +
    +
    +
    +
    +
    +
    +

    Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

    + +

    This call does not change the date of the next check, but only the internal timer.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)resetUpdateCycle;
    + +
    +
    +

    Swift

    +
    func resetUpdateCycle()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + systemProfileArray + +
    +
    +
    +
    +
    +
    +

    The system profile information that is sent when checking for updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *_Nonnull systemProfileArray;
    + +
    +
    +

    Swift

    +
    var systemProfileArray: [[String : String]] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUUpdaterSettings.html b/documentation/api-reference/Classes/SPUUpdaterSettings.html new file mode 100644 index 0000000..5488c33 --- /dev/null +++ b/documentation/api-reference/Classes/SPUUpdaterSettings.html @@ -0,0 +1,432 @@ + + + + SPUUpdaterSettings Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdaterSettings

+
+
+

Objective-C

+
@interface SPUUpdaterSettings : NSObject
+ +
+
+

Swift

+
class SPUUpdaterSettings : NSObject
+ +
+
+

This class can be used for reading certain updater settings.

+ +

It retrieves the settings by first looking into the host’s user defaults. +If the setting is not found in there, then the host’s Info.plist file is looked at.

+ +
+
+
+
    +
  • +
    + + + + -initWithHostBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initWithHostBundle:(NSBundle *)hostBundle;
    + +
    +
    +

    Swift

    +
    init(hostBundle: Bundle)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatic update checks are enabled.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    The regular update check interval.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatically downloading updates is allowed to be turned on by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL allowsAutomaticUpdates;
    + +
    +
    +

    Swift

    +
    var allowsAutomaticUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatically downloading updates is enabled by the user or developer.

    + +

    Note this does not indicate whether or not automatic downloading of updates is allowable. + See -allowsAutomaticUpdates property for that.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not anonymous system profile information is sent when checking for updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SPUUserUpdateState.html b/documentation/api-reference/Classes/SPUUserUpdateState.html new file mode 100644 index 0000000..44f3f52 --- /dev/null +++ b/documentation/api-reference/Classes/SPUUserUpdateState.html @@ -0,0 +1,331 @@ + + + + SPUUserUpdateState Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateState

+
+
+

Objective-C

+
@interface SPUUserUpdateState : NSObject
+ +
+
+

Swift

+
class SPUUserUpdateState : NSObject
+ +
+
+

This represents the user’s current update state.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stage + +
    +
    +
    +
    +
    +
    +

    The current update stage.

    + +

    This stage indicates if data has been already downloaded or not, or if an update is currently being installed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUUserUpdateStage stage;
    + +
    +
    +

    Swift

    +
    var stage: SPUUserUpdateStage { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userInitiated + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update check was initiated by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL userInitiated;
    + +
    +
    +

    Swift

    +
    var userInitiated: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SUAppcast.html b/documentation/api-reference/Classes/SUAppcast.html new file mode 100644 index 0000000..8a04165 --- /dev/null +++ b/documentation/api-reference/Classes/SUAppcast.html @@ -0,0 +1,299 @@ + + + + SUAppcast Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUAppcast

+
+
+

Objective-C

+
@interface SUAppcast : NSObject
+ +
+
+

Swift

+
class SUAppcast : NSObject
+ +
+
+

The appcast representing a collection of SUAppcastItem items in the feed.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + items + +
    +
    +
    +
    +
    +
    +

    The collection of update items.

    + +

    These SUAppcastItem items are in the same order as specified in the appcast XML feed and are thus not sorted by version.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSArray<SUAppcastItem *> *_Nonnull items;
    + +
    +
    +

    Swift

    +
    var items: [SUAppcastItem] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SUAppcastItem.html b/documentation/api-reference/Classes/SUAppcastItem.html new file mode 100644 index 0000000..cefb2fa --- /dev/null +++ b/documentation/api-reference/Classes/SUAppcastItem.html @@ -0,0 +1,1406 @@ + + + + SUAppcastItem Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUAppcastItem

+
+
+

Objective-C

+
@interface SUAppcastItem : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SUAppcastItem : NSObject, NSSecureCoding
+ +
+
+

The appcast item describing an update in the application’s appcast feed.

+ +

An appcast item represents a single update item in the SUAppcast contained within the <item> element.

+ +

Every appcast item must have a versionString, and either a fileURL or an infoURL. +All the remaining properties describing an update to the application are optional.

+ +

Extended documentation and examples on using appcast item features are available at: +https://sparkle-project.org/documentation/publishing/

+ +
+
+
+
    +
  • +
    + + + + versionString + +
    +
    +
    +
    +
    +
    +

    The version of the update item.

    + +

    Sparkle uses this property to compare update items and determine the best available update item in the SUAppcast.

    + +

    This corresponds to the application update’s CFBundleVersion

    + +

    This is extracted from the <sparkle:version> element, or the sparkle:version attribute from the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSString *_Nonnull versionString;
    + +
    +
    +

    Swift

    +
    var versionString: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + displayVersionString + +
    +
    +
    +
    +
    +
    +

    The human-readable display version of the update item if provided.

    + +

    This is the version string shown to the user when they are notified of a new update.

    + +

    This corresponds to the application update’s CFBundleShortVersionString

    + +

    This is extracted from the <sparkle:shortVersionString> element, or the sparkle:shortVersionString attribute from the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *displayVersionString;
    + +
    +
    +

    Swift

    +
    var displayVersionString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + fileURL + +
    +
    +
    +
    +
    +
    +

    The file URL to the update item if provided.

    + +

    This download contains the actual update Sparkle will attempt to install. +In cases where a download cannot be provided, an infoURL must be provided instead.

    + +

    A file URL should have an accompanying contentLength provided.

    + +

    This is extracted from the url attribute in the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *fileURL;
    + +
    +
    +

    Swift

    +
    var fileURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + contentLength + +
    +
    +
    +
    +
    +
    +

    The content length of the download in bytes.

    + +

    This property is used as a fallback when the server doesn’t report the content length of the download. +In that case, it is used to report progress of the downloading update to the user.

    + +

    A warning is outputted if this property is not equal the server’s expected content length (if provided).

    + +

    This is extracted from the length attribute in the <enclosure> element. +It should be specified if a fileURL is provided.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) uint64_t contentLength;
    + +
    +
    +

    Swift

    +
    var contentLength: UInt64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + infoURL + +
    +
    +
    +
    +
    +
    +

    The info URL to the update item if provided.

    + +

    This informational link is used to direct the user to learn more about an update they cannot download/install directly from within the application. +The link should point to the product’s web page.

    + +

    The informational link will be used if informationOnlyUpdate is YES

    + +

    This is extracted from the <link> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *infoURL;
    + +
    +
    +

    Swift

    +
    var infoURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + informationOnlyUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is only informational and has no download.

    + +

    If infoURL is not present, this is NO

    + +

    If fileURL is not present, this is YES

    + +

    Otherwise this is determined based on the contents extracted from the <sparkle:informationalUpdate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isInformationOnlyUpdate) BOOL informationOnlyUpdate;
    + +
    +
    +

    Swift

    +
    var isInformationOnlyUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + title + +
    +
    +
    +
    +
    +
    +

    The title of the appcast item if provided.

    + +

    This is extracted from the <title> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *title;
    + +
    +
    +

    Swift

    +
    var title: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dateString + +
    +
    +
    +
    +
    +
    +

    The date string of the appcast item if provided.

    + +

    The date property is constructed from this property and expects this string to comply with the following date format: +E, dd MMM yyyy HH:mm:ss Z

    + +

    This is extracted from the <pubDate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *dateString;
    + +
    +
    +

    Swift

    +
    var dateString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + date + +
    +
    +
    +
    +
    +
    +

    The date constructed from the dateString property if provided.

    + +

    Sparkle by itself only uses this property for phased group rollouts specified via phasedRolloutInterval, but clients may query this property too.

    + +

    This date is constructed using the en_US locale.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSDate *date;
    + +
    +
    +

    Swift

    +
    var date: Date? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + releaseNotesURL + +
    +
    +
    +
    +
    +
    +

    The release notes URL of the appcast item if provided.

    + +

    This external link points to an HTML file that Sparkle downloads and renders to show the user a new or old update item’s changelog.

    + +

    An alternative to using an external release notes link is providing an embedded itemDescription.

    + +

    This is extracted from the <sparkle:releaseNotesLink> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *releaseNotesURL;
    + +
    +
    +

    Swift

    +
    var releaseNotesURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + itemDescription + +
    +
    +
    +
    +
    +
    +

    The description of the appcast item if provided.

    + +

    A description may be provided for inline/embedded release notes for new updates using <![CDATA[...]]> +This is an alternative to providing a releaseNotesURL.

    + +

    This is extracted from the <description> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *itemDescription;
    + +
    +
    +

    Swift

    +
    var itemDescription: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + minimumSystemVersion + +
    +
    +
    +
    +
    +
    +

    The required minimum system operating version string for this update if provided.

    + +

    This version string should contain three period-separated components.

    + +

    Example: 10.12.0

    + +

    Use minimumOperatingSystemVersionIsOK property to test if the current running system passes this requirement.

    + +

    This is extracted from the <sparkle:minimumSystemVersion> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *minimumSystemVersion;
    + +
    +
    +

    Swift

    +
    var minimumSystemVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not the current running system passes the minimumSystemVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
    + +
    +
    +

    Swift

    +
    var minimumOperatingSystemVersionIsOK: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maximumSystemVersion + +
    +
    +
    +
    +
    +
    +

    The required maximum system operating version string for this update if provided.

    + +

    A maximum system operating version requirement should only be made in unusual scenarios.

    + +

    This version string should contain three period-separated components.

    + +

    Example: 10.13.0

    + +

    Use maximumOperatingSystemVersionIsOK property to test if the current running system passes this requirement.

    + +

    This is extracted from the <sparkle:maximumSystemVersion> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *maximumSystemVersion;
    + +
    +
    +

    Swift

    +
    var maximumSystemVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not the current running system passes the maximumSystemVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
    + +
    +
    +

    Swift

    +
    var maximumOperatingSystemVersionIsOK: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channel + +
    +
    +
    +
    +
    +
    +

    The channel the update item is on if provided.

    + +

    An update item may specify a custom channel name (such as beta) that can only be found by updaters that filter for that channel. +If no channel is provided, the update item is assumed to be on the default channel.

    + +

    This is extracted from the <sparkle:channel> element. +Old applications must be using Sparkle 2 or later to interpret the channel element and to ignore unmatched channels.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly, nullable) NSString *channel;
    + +
    +
    +

    Swift

    +
    var channel: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + installationType + +
    +
    +
    +
    +
    +
    +

    The installation type of the update at fileURL

    + +

    This may be:

    + +
      +
    • application - indicates this is a regular application update.
    • +
    • package - indicates this is a guided package installer update.
    • +
    • interactive-package - indicates this is an interactive package installer update (deprecated; use “package” instead)
    • +
    + +

    This is extracted from the sparkle:installationType attribute in the <enclosure> element.

    + +

    If no installation type is provided in the enclosure, the installation type is inferred from the fileURL file extension instead.

    + +

    If the file extension is pkg or mpkg, the installation type is package otherwise it is application

    + +

    Hence, the installation type in the enclosure element only needs to be specified for package based updates distributed inside of a zip or other archive format.

    + +

    Old applications must be using Sparkle 1.26 or later to support downloading bare package updates (pkg or mpkg) that are not additionally archived inside of a zip or other archive format.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSString *_Nonnull installationType;
    + +
    +
    +

    Swift

    +
    var installationType: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + phasedRolloutInterval + +
    +
    +
    +
    +
    +
    +

    The phased rollout interval of the update item in seconds if provided.

    + +

    This is the interval between when different groups of users are notified of a new update.

    + +

    For this property to be used by Sparkle, the published date on the update item must be present as well.

    + +

    After each interval after the update item’s date, a new group of users become eligible for being notified of the new update.

    + +

    This is extracted from the <sparkle:phasedRolloutInterval> element.

    + +

    Old applications must be using Sparkle 1.25 or later to support phased rollout intervals, otherwise they may assume updates are immediately available.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSNumber *phasedRolloutInterval;
    + +
    +
    +

    Swift

    +
    @NSCopying var phasedRolloutInterval: NSNumber? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The minimum bundle version string this update requires for automatically downloading and installing updates if provided.

    + +

    If an application’s bundle version meets this version requirement, it can install the new update item in the background automatically.

    + +

    Otherwise if the requirement is not met, the user is always prompted to install the update. In this case, the update is assumed to be a majorUpgrade.

    + +

    If the update is a majorUpgrade and the update is skipped by the user, other future update alerts with the same minimumAutoupdateVersion will also be skipped.

    + +

    This version string corresponds to the application’s CFBundleVersion

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *minimumAutoupdateVersion;
    + +
    +
    +

    Swift

    +
    var minimumAutoupdateVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + majorUpgrade + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is a major upgrade.

    + +

    An update is a major upgrade if the application’s bundle version doesn’t meet the minimumAutoupdateVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isMajorUpgrade) BOOL majorUpgrade;
    + +
    +
    +

    Swift

    +
    var isMajorUpgrade: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + criticalUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is critical.

    + +

    Critical updates are shown to the user more promptly. Sparkle’s standard user interface also does not allow them to be skipped.

    + +

    This is determined and extracted from a top-level <sparkle:criticalUpdate> element or a sparkle:criticalUpdate element inside of a sparkle:tags element.

    + +

    Old applications must be using Sparkle 2 or later to support the top-level <sparkle:criticalUpdate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isCriticalUpdate) BOOL criticalUpdate;
    + +
    +
    +

    Swift

    +
    var isCriticalUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + osString + +
    +
    +
    +
    +
    +
    +

    Specifies the operating system the download update is available for if provided.

    + +

    If this property is not provided, then the supported operating system is assumed to be macOS.

    + +

    Known potential values for this string are macos and windows

    + +

    Sparkle on Mac ignores update items that are for other operating systems. +This is only useful for sharing appcasts between Sparkle on Mac and Sparkle on other operating systems.

    + +

    Use macOsUpdate property to test if this update item is for macOS.

    + +

    This is extracted from the sparkle:os attribute in the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *osString;
    + +
    +
    +

    Swift

    +
    var osString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + macOsUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not this update item is for macOS.

    + +

    This is determined from the osString property.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isMacOsUpdate) BOOL macOsUpdate;
    + +
    +
    +

    Swift

    +
    var isMacOsUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + deltaUpdates + +
    +
    +
    +
    +
    +
    +

    The delta updates for this update item.

    + +

    Sparkle uses these to download and apply a smaller update based on the version the user is updating from.

    + +

    The key is based on the sparkle:version of the update. +The value is an update item that will have deltaUpdate be YES

    + +

    Clients typically should not need to examine the contents of the delta updates.

    + +

    This is extracted from the <sparkle:deltas> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSDictionary<NSString *, SUAppcastItem *> *deltaUpdates;
    + +
    +
    +

    Swift

    +
    var deltaUpdates: [String : SUAppcastItem]? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + deltaUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is a delta update.

    + +

    An update item is a delta update if it is in the deltaUpdates of another update item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isDeltaUpdate) BOOL deltaUpdate;
    + +
    +
    +

    Swift

    +
    var isDeltaUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + propertiesDictionary + +
    +
    +
    +
    +
    +
    +

    The dictionary representing the entire appcast item.

    + +

    This is useful for querying custom extensions or elements from the appcast item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSDictionary *_Nonnull propertiesDictionary;
    + +
    +
    +

    Swift

    +
    var propertiesDictionary: [AnyHashable : Any] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +emptyAppcastItem + +
    +
    +
    +
    +
    +
    +

    An empty appcast item.

    + +

    This may be used as a potential return value in -[SPUUpdaterDelegate bestValidUpdateInAppcast:forUpdater:]

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (nonnull instancetype)emptyAppcastItem;
    + +
    +
    +

    Swift

    +
    class func empty() -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -initWithDictionary: + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any])
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any], failureReason error: AutoreleasingUnsafeMutablePointer<NSString?>?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any], relativeTo appcastURL: URL?, failureReason error: AutoreleasingUnsafeMutablePointer<NSString?>?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SUStandardVersionComparator.html b/documentation/api-reference/Classes/SUStandardVersionComparator.html new file mode 100644 index 0000000..5223321 --- /dev/null +++ b/documentation/api-reference/Classes/SUStandardVersionComparator.html @@ -0,0 +1,374 @@ + + + + SUStandardVersionComparator Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUStandardVersionComparator

+
+
+

Objective-C

+
@interface SUStandardVersionComparator : NSObject <SUVersionComparison>
+ +
+
+

Swift

+
class SUStandardVersionComparator : NSObject, SUVersionComparison
+ +
+
+

Sparkle’s default version comparator.

+ +

This comparator is adapted from MacPAD, by Kevin Ballard. +It’s “dumb” in that it does essentially string comparison, +in components split by character type.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Initializes a new instance of the standard version comparator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +

    Swift

    +
    init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultComparator + +
    +
    +
    +
    +
    +
    +

    A singleton instance of the comparator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (class, nonatomic, readonly) SUStandardVersionComparator *_Nonnull defaultComparator;
    + +
    +
    +

    Swift

    +
    class var `default`: SUStandardVersionComparator { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Compares two version strings through textual analysis.

    + +

    These version strings should be in the format of x, x.y, or x.y.z where each component is a number. +For example, valid version strings include “1.5.3”, “500”, or “4000.1” +These versions that are compared correspond to the CFBundleVersion values of the updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (NSComparisonResult)compareVersion:(nonnull NSString *)versionA
    +                           toVersion:(nonnull NSString *)versionB;
    + +
    +
    +

    Swift

    +
    func compareVersion(_ versionA: String, toVersion versionB: String) -> ComparisonResult
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + versionA + + +
    +

    The first version string to compare.

    +
    +
    + + versionB + + +
    +

    The second version string to compare.

    +
    +
    +
    +
    +

    Return Value

    +

    A comparison result between versionA and versionB

    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SUUpdatePermissionResponse.html b/documentation/api-reference/Classes/SUUpdatePermissionResponse.html new file mode 100644 index 0000000..8ef84bd --- /dev/null +++ b/documentation/api-reference/Classes/SUUpdatePermissionResponse.html @@ -0,0 +1,393 @@ + + + + SUUpdatePermissionResponse Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdatePermissionResponse

+
+
+

Objective-C

+
@interface SUUpdatePermissionResponse : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SUUpdatePermissionResponse : NSObject, NSSecureCoding
+ +
+
+

This class represents a response for permission to check updates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new update permission response instance.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks
    +                            sendSystemProfile:(BOOL)sendSystemProfile;
    + +
    +
    +

    Swift

    +
    init!(automaticUpdateChecks: Bool, sendSystemProfile: Bool)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + automaticUpdateChecks + + +
    +

    Flag for whether to allow automatic update checks.

    +
    +
    + + sendSystemProfile + + +
    +

    Flag for if system profile information should be sent to the server hosting the appcast.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + automaticUpdateChecks + +
    +
    +
    +
    +
    +
    +

    A read-only property indicating whether automatic update checks are allowed or not.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticUpdateChecks;
    + +
    +
    +

    Swift

    +
    var automaticUpdateChecks: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendSystemProfile + +
    +
    +
    +
    +
    +
    +

    A read-only property indicating if system profile should be sent or not.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sendSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendSystemProfile: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Classes/SUUpdater.html b/documentation/api-reference/Classes/SUUpdater.html new file mode 100644 index 0000000..ad994a1 --- /dev/null +++ b/documentation/api-reference/Classes/SUUpdater.html @@ -0,0 +1,911 @@ + + + + SUUpdater Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdater

+
+

Deprecated

+

Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

+ +
+
+
+

Objective-C

+

+@interface SUUpdater : NSObject
+ +
+
+

Swift

+
class SUUpdater : NSObject
+ +
+
+

The legacy API in Sparkle for controlling the update mechanism.

+ +

This class is now deprecated and acts as a thin wrapper around SPUUpdater and SPUStandardUserDriver.

+ +

If you are migrating to Sparkle 2, use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

+ +
+
+
+
    +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) IBOutlet id<SUUpdaterDelegate> delegate
    + +
    +
    +

    Swift

    +
    @IBOutlet unowned(unsafe) var delegate: SUUpdaterDelegate! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +sharedUpdater + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (SUUpdater *)sharedUpdater;
    + +
    +
    +

    Swift

    +
    class func shared() -> SUUpdater!
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +updaterForBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (SUUpdater *)updaterForBundle:(NSBundle *)bundle;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -initForBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initForBundle:(NSBundle *)bundle;
    + +
    +
    +

    Swift

    +
    init!(for bundle: Bundle!)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates:(id)sender;
    + +
    +
    +

    Swift

    +
    @IBAction func checkForUpdates(_ sender: Any!)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -validateMenuItem: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)validateMenuItem:(NSMenuItem *)menuItem;
    + +
    +
    +

    Swift

    +
    func validate(_ menuItem: NSMenuItem!) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdatesInBackground;
    + +
    +
    +

    Swift

    +
    func checkForUpdatesInBackground()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdateInformation;
    + +
    +
    +

    Swift

    +
    func checkForUpdateInformation()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + feedURL + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSURL *feedURL;
    + +
    +
    +

    Swift

    +
    var feedURL: URL! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hostBundle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *hostBundle;
    + +
    +
    +

    Swift

    +
    var hostBundle: Bundle! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sparkleBundle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *sparkleBundle;
    + +
    +
    +

    Swift

    +
    var sparkleBundle: Bundle! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userAgentString + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *userAgentString;
    + +
    +
    +

    Swift

    +
    var userAgentString: String! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + httpHeaders + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy) NSDictionary<NSString *, NSString *> *httpHeaders;
    + +
    +
    +

    Swift

    +
    var httpHeaders: [String : String]! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + decryptionPassword + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *decryptionPassword;
    + +
    +
    +

    Swift

    +
    var decryptionPassword: String! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lastUpdateCheckDate + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSDate *lastUpdateCheckDate;
    + +
    +
    +

    Swift

    +
    var lastUpdateCheckDate: Date! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -resetUpdateCycle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)resetUpdateCycle;
    + +
    +
    +

    Swift

    +
    func resetUpdateCycle()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateInProgress + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL updateInProgress;
    + +
    +
    +

    Swift

    +
    var updateInProgress: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Constants.html b/documentation/api-reference/Constants.html new file mode 100644 index 0000000..6dc5d7e --- /dev/null +++ b/documentation/api-reference/Constants.html @@ -0,0 +1,894 @@ + + + + Constants Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Constants

+

The following constants are available globally.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidFinishLoadingAppCast: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidFindValidUpdateNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidFindValidUpdate: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidNotFindUpdateNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidNotFindUpdate: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterWillRestartNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterWillRestart: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterAppcastItemNotificationKey
    + +
    +
    +

    Swift

    +
    let SUUpdaterAppcastItemNotificationKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterAppcastNotificationKey
    + +
    +
    +

    Swift

    +
    let SUUpdaterAppcastNotificationKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerApplicationNameKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerApplicationNameKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerApplicationVersionKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerApplicationVersionKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPU64bitKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPU64bitKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUCountKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUCountKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUFrequencyKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUFrequencyKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUTypeKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUTypeKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUSubtypeKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUSubtypeKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerHardwareModelKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerHardwareModelKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerMemoryKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerMemoryKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerOperatingSystemVersionKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerOperatingSystemVersionKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerPreferredLanguageKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerPreferredLanguageKey: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUSparkleErrorDomain + +
    +
    +
    +
    +
    +
    +

    Error domain used by Sparkle

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSparkleErrorDomain
    + +
    +
    +

    Swift

    +
    let SUSparkleErrorDomain: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPUNoUpdateFoundReasonKey
    + +
    +
    +

    Swift

    +
    let SPUNoUpdateFoundReasonKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPULatestAppcastItemFoundKey
    + +
    +
    +

    Swift

    +
    let SPULatestAppcastItemFoundKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPUNoUpdateFoundUserInitiatedKey
    + +
    +
    +

    Swift

    +
    let SPUNoUpdateFoundUserInitiatedKey: String
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums.html b/documentation/api-reference/Enums.html new file mode 100644 index 0000000..7bf7e8c --- /dev/null +++ b/documentation/api-reference/Enums.html @@ -0,0 +1,427 @@ + + + + Enumerations Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Enumerations

+

The following enumerations are available globally.

+ +
+
+
+
    +
  • +
    + + + + SPUUpdateCheck + +
    +
    +
    +
    +
    +
    +

    Describes the type of update check being performed.

    + +

    Each update check corresponds to an update check method on SPUUpdater.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUpdateCheck : NSInteger {}
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateChoice + +
    +
    +
    +
    +
    +
    +

    A choice made by the user when prompted with a new update.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUserUpdateChoice : NSInteger {}
    + +
    +
    +

    Swift

    +
    enum SPUUserUpdateChoice : Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateStage + +
    +
    +
    +
    +
    +
    +

    Describes the current stage an update is undergoing.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUserUpdateStage : NSInteger {}
    + +
    +
    +

    Swift

    +
    enum SPUUserUpdateStage : Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    NS_ENUM(OSStatus, SUError) {
    +    // Configuration phase errors
    +    SUNoPublicDSAFoundError = 0001,
    +    SUInsufficientSigningError = 0002,
    +    SUInsecureFeedURLError = 0003,
    +    SUInvalidFeedURLError = 0004,
    +    SUInvalidUpdaterError = 0005,
    +    SUInvalidHostBundleIdentifierError = 0006,
    +    SUInvalidHostVersionError = 0007,
    +    
    +    // Appcast phase errors.
    +    SUAppcastParseError = 1000,
    +    SUNoUpdateError = 1001,
    +    SUAppcastError = 1002,
    +    SURunningFromDiskImageError = 1003,
    +    SUResumeAppcastError = 1004,
    +    SURunningTranslocated = 1005,
    +    SUWebKitTerminationError = 1006,
    +
    +    // Download phase errors.
    +    SUTemporaryDirectoryError = 2000,
    +    SUDownloadError = 2001,
    +
    +    // Extraction phase errors.
    +    SUUnarchivingError = 3000,
    +    SUSignatureError = 3001,
    +    SUValidationError = 3002,
    +    
    +    // Installation phase errors.
    +    SUFileCopyFailure = 4000,
    +    SUAuthenticationFailure = 4001,
    +    SUMissingUpdateError = 4002,
    +    SUMissingInstallerToolError = 4003,
    +    SURelaunchError = 4004,
    +    SUInstallationError = 4005,
    +    SUDowngradeError = 4006,
    +    SUInstallationCanceledError = 4007,
    +    SUInstallationAuthorizeLaterError = 4008,
    +    SUNotValidUpdateError = 4009,
    +    SUAgentInvalidationError = 4010,
    +    
    +    // API misuse errors.
    +    SUIncorrectAPIUsageError = 5000
    +}
    + +
    +
    +

    Swift

    +
    enum SUError : OSStatus
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The reason why a new update is not available.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUNoUpdateFoundReason : OSStatus {}
    + +
    +
    +

    Swift

    +
    enum SPUNoUpdateFoundReason : OSStatus
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums/SPUNoUpdateFoundReason.html b/documentation/api-reference/Enums/SPUNoUpdateFoundReason.html new file mode 100644 index 0000000..3794bae --- /dev/null +++ b/documentation/api-reference/Enums/SPUNoUpdateFoundReason.html @@ -0,0 +1,394 @@ + + + + SPUNoUpdateFoundReason Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUNoUpdateFoundReason

+
+
+

Objective-C

+
enum SPUNoUpdateFoundReason : OSStatus {}
+ +
+
+

Swift

+
enum SPUNoUpdateFoundReason : OSStatus
+ +
+
+

The reason why a new update is not available.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable for an unknown reason.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonUnknown
    + +
    +
    +

    Swift

    +
    case unknown = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user is on the latest known version in the appcast feed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonOnLatestVersion
    + +
    +
    +

    Swift

    +
    case onLatestVersion = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonOnNewerThanLatestVersion
    + +
    +
    +

    Swift

    +
    case onNewerThanLatestVersion = 2
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user’s operating system version is too old for the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonSystemIsTooOld
    + +
    +
    +

    Swift

    +
    case systemIsTooOld = 3
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user’s operating system version is too new for the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonSystemIsTooNew
    + +
    +
    +

    Swift

    +
    case systemIsTooNew = 4
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums/SPUUpdateCheck.html b/documentation/api-reference/Enums/SPUUpdateCheck.html new file mode 100644 index 0000000..87c8977 --- /dev/null +++ b/documentation/api-reference/Enums/SPUUpdateCheck.html @@ -0,0 +1,312 @@ + + + + SPUUpdateCheck Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdateCheck

+
+
+ +
enum SPUUpdateCheck : NSInteger {}
+ +
+
+

Describes the type of update check being performed.

+ +

Each update check corresponds to an update check method on SPUUpdater.

+ +
+
+
+ +
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums/SPUUserUpdateChoice.html b/documentation/api-reference/Enums/SPUUserUpdateChoice.html new file mode 100644 index 0000000..9ab81cc --- /dev/null +++ b/documentation/api-reference/Enums/SPUUserUpdateChoice.html @@ -0,0 +1,330 @@ + + + + SPUUserUpdateChoice Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateChoice

+
+
+

Objective-C

+
enum SPUUserUpdateChoice : NSInteger {}
+ +
+
+

Swift

+
enum SPUUserUpdateChoice : Int
+ +
+
+

A choice made by the user when prompted with a new update.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Dismisses the update and skips being notified of it in the future.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceSkip
    + +
    +
    +

    Swift

    +
    case skip = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Downloads (if needed) and installs the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceInstall
    + +
    +
    +

    Swift

    +
    case install = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dismisses the update until Sparkle reminds the user of it at a later time.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceDismiss
    + +
    +
    +

    Swift

    +
    case dismiss = 2
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums/SPUUserUpdateStage.html b/documentation/api-reference/Enums/SPUUserUpdateStage.html new file mode 100644 index 0000000..e7b72a9 --- /dev/null +++ b/documentation/api-reference/Enums/SPUUserUpdateStage.html @@ -0,0 +1,330 @@ + + + + SPUUserUpdateStage Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateStage

+
+
+

Objective-C

+
enum SPUUserUpdateStage : NSInteger {}
+ +
+
+

Swift

+
enum SPUUserUpdateStage : Int
+ +
+
+

Describes the current stage an update is undergoing.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The update has not been downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageNotDownloaded
    + +
    +
    +

    Swift

    +
    case notDownloaded = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The update has already been downloaded but not begun installing.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageDownloaded
    + +
    +
    +

    Swift

    +
    case downloaded = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The update has already been downloaded and began installing in the background.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageInstalling
    + +
    +
    +

    Swift

    +
    case installing = 2
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Enums/SUError.html b/documentation/api-reference/Enums/SUError.html new file mode 100644 index 0000000..75f2bf3 --- /dev/null +++ b/documentation/api-reference/Enums/SUError.html @@ -0,0 +1,1269 @@ + + + + SUError Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUError

+
+
+

Objective-C

+
NS_ENUM(OSStatus, SUError) {
+    // Configuration phase errors
+    SUNoPublicDSAFoundError = 0001,
+    SUInsufficientSigningError = 0002,
+    SUInsecureFeedURLError = 0003,
+    SUInvalidFeedURLError = 0004,
+    SUInvalidUpdaterError = 0005,
+    SUInvalidHostBundleIdentifierError = 0006,
+    SUInvalidHostVersionError = 0007,
+    
+    // Appcast phase errors.
+    SUAppcastParseError = 1000,
+    SUNoUpdateError = 1001,
+    SUAppcastError = 1002,
+    SURunningFromDiskImageError = 1003,
+    SUResumeAppcastError = 1004,
+    SURunningTranslocated = 1005,
+    SUWebKitTerminationError = 1006,
+
+    // Download phase errors.
+    SUTemporaryDirectoryError = 2000,
+    SUDownloadError = 2001,
+
+    // Extraction phase errors.
+    SUUnarchivingError = 3000,
+    SUSignatureError = 3001,
+    SUValidationError = 3002,
+    
+    // Installation phase errors.
+    SUFileCopyFailure = 4000,
+    SUAuthenticationFailure = 4001,
+    SUMissingUpdateError = 4002,
+    SUMissingInstallerToolError = 4003,
+    SURelaunchError = 4004,
+    SUInstallationError = 4005,
+    SUDowngradeError = 4006,
+    SUInstallationCanceledError = 4007,
+    SUInstallationAuthorizeLaterError = 4008,
+    SUNotValidUpdateError = 4009,
+    SUAgentInvalidationError = 4010,
+    
+    // API misuse errors.
+    SUIncorrectAPIUsageError = 5000
+}
+ +
+
+

Swift

+
enum SUError : OSStatus
+ +
+
+

Undocumented

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNoPublicDSAFoundError = 0001
    + +
    +
    +

    Swift

    +
    case noPublicDSAFoundError = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInsufficientSigningError = 0002
    + +
    +
    +

    Swift

    +
    case insufficientSigningError = 2
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInsecureFeedURLError = 0003
    + +
    +
    +

    Swift

    +
    case insecureFeedURLError = 3
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInvalidFeedURLError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidFeedURLError = 0004
    + +
    +
    +

    Swift

    +
    case invalidFeedURLError = 4
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInvalidUpdaterError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidUpdaterError = 0005
    + +
    +
    +

    Swift

    +
    case invalidUpdaterError = 5
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidHostBundleIdentifierError = 0006
    + +
    +
    +

    Swift

    +
    case invalidHostBundleIdentifierError = 6
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidHostVersionError = 0007
    + +
    +
    +

    Swift

    +
    case invalidHostVersionError = 7
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastParseError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAppcastParseError = 1000
    + +
    +
    +

    Swift

    +
    case appcastParseError = 1000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUNoUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNoUpdateError = 1001
    + +
    +
    +

    Swift

    +
    case noUpdateError = 1001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAppcastError = 1002
    + +
    +
    +

    Swift

    +
    case appcastError = 1002
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURunningFromDiskImageError = 1003
    + +
    +
    +

    Swift

    +
    case runningFromDiskImageError = 1003
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUResumeAppcastError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUResumeAppcastError = 1004
    + +
    +
    +

    Swift

    +
    case resumeAppcastError = 1004
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SURunningTranslocated + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURunningTranslocated = 1005
    + +
    +
    +

    Swift

    +
    case runningTranslocated = 1005
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUWebKitTerminationError = 1006
    + +
    +
    +

    Swift

    +
    case webKitTerminationError = 1006
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUTemporaryDirectoryError = 2000
    + +
    +
    +

    Swift

    +
    case temporaryDirectoryError = 2000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUDownloadError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUDownloadError = 2001
    + +
    +
    +

    Swift

    +
    case downloadError = 2001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUnarchivingError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUUnarchivingError = 3000
    + +
    +
    +

    Swift

    +
    case unarchivingError = 3000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUSignatureError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUSignatureError = 3001
    + +
    +
    +

    Swift

    +
    case signatureError = 3001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUValidationError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUValidationError = 3002
    + +
    +
    +

    Swift

    +
    case validationError = 3002
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUFileCopyFailure + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUFileCopyFailure = 4000
    + +
    +
    +

    Swift

    +
    case fileCopyFailure = 4000
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAuthenticationFailure = 4001
    + +
    +
    +

    Swift

    +
    case authenticationFailure = 4001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUMissingUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUMissingUpdateError = 4002
    + +
    +
    +

    Swift

    +
    case missingUpdateError = 4002
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUMissingInstallerToolError = 4003
    + +
    +
    +

    Swift

    +
    case missingInstallerToolError = 4003
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SURelaunchError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURelaunchError = 4004
    + +
    +
    +

    Swift

    +
    case relaunchError = 4004
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInstallationError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationError = 4005
    + +
    +
    +

    Swift

    +
    case installationError = 4005
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUDowngradeError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUDowngradeError = 4006
    + +
    +
    +

    Swift

    +
    case downgradeError = 4006
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationCanceledError = 4007
    + +
    +
    +

    Swift

    +
    case installationCanceledError = 4007
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationAuthorizeLaterError = 4008
    + +
    +
    +

    Swift

    +
    case installationAuthorizeLaterError = 4008
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUNotValidUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNotValidUpdateError = 4009
    + +
    +
    +

    Swift

    +
    case notValidUpdateError = 4009
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAgentInvalidationError = 4010
    + +
    +
    +

    Swift

    +
    case agentInvalidationError = 4010
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUIncorrectAPIUsageError = 5000
    + +
    +
    +

    Swift

    +
    case incorrectAPIUsageError = 5000
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols.html b/documentation/api-reference/Protocols.html new file mode 100644 index 0000000..27ae1ab --- /dev/null +++ b/documentation/api-reference/Protocols.html @@ -0,0 +1,432 @@ + + + + Protocols Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Protocols

+

The following protocols are available globally.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    A protocol for Sparkle’s standard user driver’s delegate

    + +

    This includes methods related to UI interactions

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUStandardUserDriverDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUStandardUserDriverDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdaterDelegate + +
    +
    +
    +
    +
    +
    +

    Provides delegation methods to control the behavior of an SPUUpdater object.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUUpdaterDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUUpdaterDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserDriver + +
    +
    +
    +
    +
    +
    +

    The API in Sparkle for controlling the user interaction.

    + +

    This protocol is used for implementing a user interface for the Sparkle updater. Sparkle’s internal drivers tell +an object that implements this protocol what actions to take and show to the user.

    + +

    Every method in this protocol can be assumed to be called from the main thread.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUUserDriver <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUUserDriver : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUpdaterDelegate + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Deprecated in Sparkle 2. See SPUUpdaterDelegate instead

    + +
    +
    +

    Undocumented

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUUpdaterDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SUUpdaterDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUVersionComparison + +
    +
    +
    +
    +
    +
    +

    Provides version comparison facilities for Sparkle.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUVersionComparison
    + +
    +
    +

    Swift

    +
    protocol SUVersionComparison
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUVersionDisplay + +
    +
    +
    +
    +
    +
    +

    Applies special display formatting to version numbers.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUVersionDisplay
    + +
    +
    +

    Swift

    +
    protocol SUVersionDisplay
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SPUStandardUserDriverDelegate.html b/documentation/api-reference/Protocols/SPUStandardUserDriverDelegate.html new file mode 100644 index 0000000..9382d80 --- /dev/null +++ b/documentation/api-reference/Protocols/SPUStandardUserDriverDelegate.html @@ -0,0 +1,330 @@ + + + + SPUStandardUserDriverDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUserDriverDelegate

+
+
+

Objective-C

+
@protocol SPUStandardUserDriverDelegate <NSObject>
+ +
+
+

Swift

+
protocol SPUStandardUserDriverDelegate : NSObjectProtocol
+ +
+
+

A protocol for Sparkle’s standard user driver’s delegate

+ +

This includes methods related to UI interactions

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Called before showing a modal alert window, +to give the opportunity to hide attached windows that may get in the way.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)standardUserDriverWillShowModalAlert;
    + +
    +
    +

    Swift

    +
    optional func standardUserDriverWillShowModalAlert()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after showing a modal alert window, +to give the opportunity to hide attached windows that may get in the way.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)standardUserDriverDidShowModalAlert;
    + +
    +
    +

    Swift

    +
    optional func standardUserDriverDidShowModalAlert()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an object that formats version numbers for display to the user. +If you don’t implement this method or return nil, the standard version formatter will be used.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (id<SUVersionDisplay> _Nullable)standardUserDriverRequestsVersionDisplayer;
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SPUUpdaterDelegate.html b/documentation/api-reference/Protocols/SPUUpdaterDelegate.html new file mode 100644 index 0000000..84ef51c --- /dev/null +++ b/documentation/api-reference/Protocols/SPUUpdaterDelegate.html @@ -0,0 +1,2379 @@ + + + + SPUUpdaterDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdaterDelegate

+
+
+

Objective-C

+
@protocol SPUUpdaterDelegate <NSObject>
+ +
+
+

Swift

+
protocol SPUUpdaterDelegate : NSObjectProtocol
+ +
+
+

Provides delegation methods to control the behavior of an SPUUpdater object.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Returns whether to allow Sparkle to check for updates.

    + +

    For example, this may be used to prevent Sparkle from interrupting a setup assistant. +Alternatively, you may want to consider starting the updater after eg: the setup assistant finishes

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    mayPerformUpdateCheck:(SPUUpdateCheck)updateCheck
    +                    error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, mayPerform updateCheck: SPUUpdateCheck) throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateCheck + + +
    +

    The type of update check that will be performed if the updater is allowed to check for updates.

    +
    +
    + + error + + +
    +

    The (optionally) populated error object if the updater may not perform a new update check.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater is allowed to check for updates, otherwise NO

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    + +

    An appcast item can specify a channel the update is posted to. Without specifying a channel, the appcast item is posted to the default channel. +For instance:

    +
    <item>
    +   <sparkle:version>2.0 Beta 1</sparkle:version>
    +   <sparkle:channel>beta</sparkle:channel>
    +</item>
    +
    + +

    This example posts an update to the beta channel, so only updaters that are allowed to use the beta channel can find this update.

    + +

    If the <sparkle:channel> element is not present, the update item is posted to the default channel and can be found by any updater.

    + +

    You can pick any name you’d like for the channel. The valid characters for channel names are letters, numbers, dashes, underscores, and periods.

    + +

    Note to use this feature, all app versions that your users may update from in your feed must use a version of Sparkle that supports this feature. +This feature was added in Sparkle 2.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull NSSet<NSString *> *)allowedChannelsForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func allowedChannels(for updater: SPUUpdater) -> Set<String>
    + +
    +
    +
    +

    Return Value

    +

    The set of channel names the updater is allowed to find new updates in. An empty set is the default behavior, + which means the updater will only look for updates in the default channel.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns a custom appcast URL used for checking for new updates.

    + +

    Override this to dynamically specify the feed URL.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSString *)feedURLStringForUpdater:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func feedURLString(for updater: SPUUpdater) -> String?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    An appcast feed URL to check for new updates in, or nil for the default behavior and if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns additional parameters to append to the appcast URL’s query string.

    + +

    This is potentially based on whether or not Sparkle will also be sending along the system profile.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull NSArray<NSDictionary<NSString *, NSString *> *> *)
    +    feedParametersForUpdater:(nonnull SPUUpdater *)updater
    +        sendingSystemProfile:(BOOL)sendingProfile;
    + +
    +
    +

    Swift

    +
    optional func feedParameters(for updater: SPUUpdater, sendingSystemProfile sendingProfile: Bool) -> [[String : String]]
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + sendingProfile + + +
    +

    Whether the system profile will also be sent.

    +
    +
    +
    +
    +

    Return Value

    +

    An array of dictionaries with keys: key, value, displayKey, displayValue, the latter two being specifically for display to the user.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether Sparkle should prompt the user about checking for new updates automatically.

    + +

    Use this to override the default behavior.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterShouldPromptForPermissionToCheck(forUpdates updater: SPUUpdater) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should prompt for permission to check for new updates automatically, otherwise NO

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an allowed list of system profile keys to be appended to the appcast URL’s query string.

    + +

    By default all keys will be included. This method allows overriding which keys should only be allowed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSArray<NSString *> *)allowedSystemProfileKeysForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func allowedSystemProfileKeys(for updater: SPUUpdater) -> [String]?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    An array of system profile keys to include in the appcast URL’s query string. Elements must be one of the SUSystemProfiler*Key constants. Return nil for the default behavior and if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after Sparkle has downloaded the appcast from the remote server.

    + +

    Implement this if you want to do some special handling with the appcast once it finishes loading.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFinishLoadingAppcast:(nonnull SUAppcast *)appcast;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFinishLoading appcast: SUAppcast)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + appcast + + +
    +

    The appcast that was downloaded from the remote server.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a new valid update is found by the update driver.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFindValidUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFindValidUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a valid new update is not found.

    + +

    There are various reasons a new update is unavailable and can’t be installed.

    + +

    The userInfo dictionary on the error is populated with three keys:

    + + + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterDidNotFindUpdate:(nonnull SPUUpdater *)updater
    +                          error:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updaterDidNotFindUpdate(_ updater: SPUUpdater, error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + error + + +
    +

    An error containing information on why a new valid update was not found

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a valid new update is not found.

    + +

    If more information is needed on why an update was not found, use -[SPUUpdaterDelegate updaterDidNotFindUpdate:error:] instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterDidNotFindUpdate:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterDidNotFindUpdate(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the item in the appcast corresponding to the update that should be installed.

    + +

    Please consider using or migrating to other supported features before adopting this method. +Specifically:

    + +
      +
    • If you want to filter out certain tagged updates (like beta updates), consider -[SPUUpdaterDelegate allowedChannelsForUpdater:] instead.
    • +
    • If you want to treat certain updates as informational-only, consider supplying <sparkle:informationalUpdate> with a set of affected versions users are updating from.
    • +
    + +

    If you’re using special logic or extensions in your appcast, implement this to use your own logic for finding a valid update, if any, in the given appcast.

    + +

    Do not base your logic by filtering out items with a minimum or maximum OS version or minimum autoupdate version +because Sparkle already has logic for determining whether or not those items should be filtered out.

    + +

    Also do not return a non-top level item from the appcast such as a delta item. Delta items will be ignored. +Sparkle picks the delta item from your selection if the appropriate one is available.

    + +

    This method will not be invoked with an appcast that has zero items. Pick the best item from the appcast. +If an item is available that has the same version as the application or bundle to update, do not pick an item that is worse than that version.

    + +

    This method may be called multiple times for different selections and filters. This method should be efficient.

    + +

    Return +[SUAppcastItem emptyAppcastItem] if no appcast item is valid.

    + +

    Return nil if you don’t want to be delegated this task and want to let Sparkle handle picking the best valid update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable SUAppcastItem *)
    +    bestValidUpdateInAppcast:(nonnull SUAppcast *)appcast
    +                  forUpdater:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func bestValidUpdate(in appcast: SUAppcast, for updater: SPUUpdater) -> SUAppcastItem?
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + appcast + + +
    +

    The appcast that was downloaded from the remote server.

    +
    +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The best valid appcast item.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether or not the updater should proceed with the new chosen update from the appcast.

    + +

    By default, the updater will always proceed with the best selected update found in an appcast. Override this to override this behavior.

    + +

    If you return NO and populate the error, the user is not shown this updateItem nor is the update downloaded or installed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldProceedWithUpdate:(nonnull SUAppcastItem *)updateItem
    +                updateCheck:(SPUUpdateCheck)updateCheck
    +                      error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldProceedWithUpdate updateItem: SUAppcastItem, updateCheck: SPUUpdateCheck) throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateItem + + +
    +

    The selected update item to proceed with.

    +
    +
    + + updateCheck + + +
    +

    The type of update check that would be performed if proceeded.

    +
    +
    + + error + + +
    +

    An error object that must be populated by the delegate if the updater should not proceed with the update.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should proceed with updateItem, otherwise NO if the updater should not proceed with the update with an error populated.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when an update is skipped by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    userDidSkipThisVersion:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, userDidSkipThisVersion item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that the user skipped.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    + +

    This is specifically for the <releaseNotesLink> element in the appcast item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldDownloadReleaseNotesForUpdate:(nonnull SUAppcastItem *)updateItem;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldDownloadReleaseNotesForUpdate updateItem: SUAppcastItem) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateItem + + +
    +

    The update item to download and show release notes from.

    +
    +
    +
    +
    +

    Return Value

    +

    YES to download and show the release notes if available, otherwise NO. The default behavior is YES.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before downloading the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willDownloadUpdate:(nonnull SUAppcastItem *)item
    +           withRequest:(nonnull NSMutableURLRequest *)request;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willDownloadUpdate item: SUAppcastItem, with request: NSMutableURLRequest)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be downloaded.

    +
    +
    + + request + + +
    +

    The mutable URL request that will be used to download the update.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately after succesfull download of the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didDownloadUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didDownloadUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that has been downloaded.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the specified update failed to download.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    failedToDownloadUpdate:(nonnull SUAppcastItem *)item
    +                     error:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, failedToDownloadUpdate item: SUAppcastItem, error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that failed to download.

    +
    +
    + + error + + +
    +

    The error generated by the failed download.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when the user cancels an update while it is being downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)userDidCancelDownload:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func userDidCancelDownload(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before extracting the specified downloaded update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willExtractUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willExtractUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be extracted.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately after extracting the specified downloaded update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didExtractUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didExtractUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that has been extracted.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before installing the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willInstallUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willInstallUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the relaunch should be delayed in order to perform other tasks.

    + +

    This is not called if the user didn’t relaunch on the previous update, +in that case it will immediately restart.

    + +

    This may also not be called if the application is not going to relaunch after it terminates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldPostponeRelaunchForUpdate:(nonnull SUAppcastItem *)item
    +                 untilInvokingBlock:(nonnull void (^)(void))installHandler;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldPostponeRelaunchForUpdate item: SUAppcastItem, untilInvokingBlock installHandler: @escaping () -> Void) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    + + installHandler + + +
    +

    The install handler that must be completed before continuing with the relaunch.

    +
    +
    +
    +
    +

    Return Value

    +

    YES to delay the relaunch until installHandler is invoked.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the application should be relaunched at all.

    + +

    Some apps cannot be relaunched under certain circumstances. +This method can be used to explicitly prevent a relaunch.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterShouldRelaunchApplication:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterShouldRelaunchApplication(_ updater: SPUUpdater) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should be relaunched, otherwise NO if it shouldn’t.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before relaunching.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterWillRelaunchApplication:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterWillRelaunchApplication(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    + +

    This method allows you to provide a custom version comparator. +If you don’t implement this method or return nil, +the standard version comparator will be used.

    + +

    Note that the standard version comparator may be used during installation for preventing a downgrade, +even if you provide a custom comparator here.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable id<SUVersionComparison>)versionComparatorForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The custom version comparator or nil if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a background update will be scheduled after a delay.

    + +

    Automatic update checks need to be enabled for this to trigger.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willScheduleUpdateCheckAfterDelay:(NSTimeInterval)delay;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willScheduleUpdateCheckAfterDelay delay: TimeInterval)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + delay + + +
    +

    The delay in seconds until the next scheduled update will occur.

    +
    +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when no update checks will be scheduled in the future.

    + +

    This may later change if automatic update checks become enabled.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterWillNotScheduleUpdateCheck:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterWillNotScheduleUpdateCheck(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    + +

    Return nil if no password should be used.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSString *)decryptionPasswordForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func decryptionPassword(for updater: SPUUpdater) -> String?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The password used for decrypting the archive, or nil if no password should be used.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    + +

    If the updater is given responsibility, it can later remind the user an update is available if they have not terminated the application for a long time.

    + +

    Also if the updater is given responsibility and the update item is marked critical, the new update will be presented to the user immediately after.

    + +

    Even if the immediateInstallHandler is not invoked, the installer will attempt to install the update on termination.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +       willInstallUpdateOnQuit:(nonnull SUAppcastItem *)item
    +    immediateInstallationBlock:(nonnull void (^)(void))immediateInstallHandler;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willInstallUpdateOnQuit item: SUAppcastItem, immediateInstallationBlock immediateInstallHandler: @escaping () -> Void) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    + + immediateInstallHandler + + +
    +

    The install handler to immediately install the update. No UI interaction will be shown and the application will be relaunched after installation.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the delegate will handle installing the update or NO if the updater should be given responsibility.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the update driver aborts due to an error.

    + +

    The update driver runs when checking for updates. This delegate method is called an error occurs during this process.

    + +

    Some special possible values of error.code are:

    + +
      +
    • SUNoUpdateError: No new update was found.
    • +
    • SUInstallationCanceledError: The user canceled installing the update when requested for authorization.

    • +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didAbortWithError:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didAbortWithError error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + error + + +
    +

    The error that caused the update driver to abort.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the update driver finishes.

    + +

    The update driver runs when checking for updates. This delegate method is called when that check is finished.

    + +

    An update may be scheduled to be installed during the update cycle, or no updates may be found, or an available update may be dismissed or skipped (which is the same as no error).

    + +

    If the error is nil, no error has occurred.

    + +

    Some special possible values of error.code are:

    + +
      +
    • SUNoUpdateError: No new update was found.
    • +
    • SUInstallationCanceledError: The user canceled installing the update when requested for authorization.

    • +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFinishUpdateCycleForUpdateCheck:(SPUUpdateCheck)updateCheck
    +                                 error:(nullable NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFinishUpdateCycleFor updateCheck: SPUUpdateCheck, error: Error?)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateCheck + + +
    +

    The type of update check was performed.

    +
    +
    + + error + + +
    +

    The error that caused the update driver to abort. This is nil if the update driver finished normally and there is no error.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Please use -[SPUUpdaterDelegate updater:mayPerformUpdateCheck:error:] instead.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterMayCheckForUpdates:(SPUUpdater *)updater __deprecated_msg("Please use -[SPUUpdaterDelegate updater:mayPerformUpdateCheck:error:] instead.");
    + +
    +
    +

    Swift

    +
    optional func updaterMayCheck(forUpdates updater: SPUUpdater) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SPUUserDriver.html b/documentation/api-reference/Protocols/SPUUserDriver.html new file mode 100644 index 0000000..c80c5d6 --- /dev/null +++ b/documentation/api-reference/Protocols/SPUUserDriver.html @@ -0,0 +1,1368 @@ + + + + SPUUserDriver Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserDriver

+
+
+

Objective-C

+
@protocol SPUUserDriver <NSObject>
+ +
+
+

Swift

+
protocol SPUUserDriver : NSObjectProtocol
+ +
+
+

The API in Sparkle for controlling the user interaction.

+ +

This protocol is used for implementing a user interface for the Sparkle updater. Sparkle’s internal drivers tell +an object that implements this protocol what actions to take and show to the user.

+ +

Every method in this protocol can be assumed to be called from the main thread.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Show an updater permission request to the user

    + +

    Ask the user for their permission regarding update checks. + This is typically only called once per app installation.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)
    +    showUpdatePermissionRequest:(nonnull SPUUpdatePermissionRequest *)request
    +                          reply:(nonnull void (^)(
    +                                    SUUpdatePermissionResponse *_Nonnull))reply;
    + +
    +
    +

    Swift

    +
    func show(_ request: SPUUpdatePermissionRequest) async -> SUUpdatePermissionResponse
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + request + + +
    +

    The update permission request.

    +
    +
    + + reply + + +
    +

    A reply with a update permission response.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user initating an update check

    + +

    Respond to the user initiating an update check. Sparkle uses this to show the user a window with an indeterminate progress bar.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUserInitiatedUpdateCheckWithCancellation:
    +    (nonnull void (^)(void))cancellation;
    + +
    +
    +

    Swift

    +
    func showUserInitiatedUpdateCheck(cancellation: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + cancellation + + +
    +

    Invoke this cancellation block to cancel the update check before the update check is completed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user a new update is found.

    + +

    Let the user know a new update is found and ask them what they want to do. + Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    + +

    state.userInitiated indicates if the update was initiated by the user or if it was automatically scheduled in the background.

    + +

    Additionally, these properties on the appcastItem are of importance:

    + +

    appcastItem.informationOnlyUpdate indicates if the update is only informational and should not be downloaded. You can direct the user to the infoURL property of the appcastItem in their web browser. Sometimes information only updates are used as a fallback in case a bad update is shipped, so you’ll want to support this case.

    + +

    appcastItem.majorUpgrade indicates if the update is a major or paid upgrade.

    + +

    appcastItem.criticalUpdate indicates if the update is a critical update.

    + +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update for the time being. The user may be reminded of the update at a later point. + If the state.stage is SPUUserUpdateStateDownloaded, the downloaded update is kept after dismissing until the next time an update is shown to the user. + If the state.stage is SPUUserUpdateStateInstalling, the installing update is also preserved after dismissing. In this state however, the update will also still be installed after the application is terminated.

    + +

    A reply of SPUUserUpdateChoiceSkip skips this particular version and won’t notify the user again, unless they initiate an update check themselves. + If appcastItem.majorUpgrade is YES, the major update and any future minor updates to that major release are skipped. + If the state.stage is SPUUpdateStateInstalling, the installation is also canceled when the update is skipped.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateFoundWithAppcastItem:(nonnull SUAppcastItem *)appcastItem
    +                                 state:(nonnull SPUUserUpdateState *)state
    +                                 reply:(nonnull void (^)(SPUUserUpdateChoice))
    +                                           reply;
    + +
    +
    +

    Swift

    +
    func showUpdateFound(with appcastItem: SUAppcastItem, state: SPUUserUpdateState) async -> SPUUserUpdateChoice
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + appcastItem + + +
    +

    The Appcast Item containing information that reflects the new update.

    +
    +
    + + state + + +
    +

    The current state of the user update. +The state.stage values are: +SPUUpdateStateNotDownloaded - Update has not been downloaded yet. +SPUUpdateStateDownloaded - Update has already been downloaded but not started installing yet. +SPUUpdateStateInstalling - Update has been downloaded and already started installing.

    +
    +
    + + reply + + +
    +

    A reply of SPUUserUpdateChoiceInstall begins or resumes downloading or installing the update. +If the state.stage is SPUUserUpdateStateInstalling, this may send a quit event to the application and relaunch it immediately (in this state, this behaves as a fast “install and Relaunch”). Do not use this reply if appcastItem.informationOnlyUpdate is YES.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user the release notes for the new update

    + +

    Display the release notes to the user. This will be called after showing the new update. + This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateReleaseNotesWithDownloadData:
    +    (nonnull SPUDownloadData *)downloadData;
    + +
    +
    +

    Swift

    +
    func showUpdateReleaseNotes(with downloadData: SPUDownloadData)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + downloadData + + +
    +

    The data for the release notes that was downloaded from the new update’s appcast.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the new update’s release notes could not be downloaded

    + +

    This will be called after showing the new update. + This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateReleaseNotesFailedToDownloadWithError:
    +    (nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    func showUpdateReleaseNotesFailedToDownloadWithError(_ error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + error + + +
    +

    The error associated with why the new update’s release notes could not be downloaded.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user a new update was not found

    + +

    Let the user know a new update was not found after they tried initiating an update check. + Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    + +

    The userInfo dictionary is also populated with two keys:

    + +

    SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found.

    + +

    SPUNoUpdateFoundReasonKey: if available, this will provide the SUNoUpdateFoundReason. For example the reason could be because + the latest version in the feed requires a newer OS version or could be because the user is already on the latest version.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateNotFoundWithError:(nonnull NSError *)error
    +                    acknowledgement:(nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdateNotFoundWithError(_ error: Error, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + error + + +
    +

    The error associated with why a new update was not found. +There are various reasons a new update is unavailable and can’t be installed. +This error object is populated with recovery and suggestion strings suitable to be shown in an alert.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that no update found error was shown.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user an update error occurred

    + +

    Let the user know that the updater failed with an error. This will not be invoked without the user having been + aware that an update was in progress.

    + +

    Before this point, any of the non-error user driver methods may have been invoked.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdaterError:(nonnull NSError *)error
    +         acknowledgement:(nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdaterError(_ error: Error, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + error + + +
    +

    The error associated with what update error occurred.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that the error was shown.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that downloading the new update initiated

    + +

    Let the user know that downloading the new update started.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadInitiatedWithCancellation:
    +    (nonnull void (^)(void))cancellation;
    + +
    +
    +

    Swift

    +
    func showDownloadInitiated(cancellation: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + cancellation + + +
    +

    Invoke this cancellation block to cancel the download at any point before -showDownloadDidStartExtractingUpdate is invoked.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user the content length of the new update that will be downloaded

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidReceiveExpectedContentLength:
    +    (uint64_t)expectedContentLength;
    + +
    +
    +

    Swift

    +
    func showDownloadDidReceiveExpectedContentLength(_ expectedContentLength: UInt64)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + expectedContentLength + + +
    +

    The expected content length of the new update being downloaded. +An implementor should be able to handle if this value is invalid (more or less than actual content length downloaded). +Additionally, this method may be called more than once for the same download in rare scenarios.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update download received more data

    + +

    This may be an appropriate time to advance a visible progress indicator of the download

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidReceiveDataOfLength:(uint64_t)length;
    + +
    +
    +

    Swift

    +
    func showDownloadDidReceiveData(ofLength length: UInt64)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + length + + +
    +

    The length of the data that was just downloaded

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update finished downloading and started extracting

    + +

    Sparkle uses this to show an indeterminate progress bar.

    + +

    Note that an update can resume at this point after having been downloaded before, + so this may be called without any of the download callbacks being invoked prior.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidStartExtractingUpdate;
    + +
    +
    +

    Swift

    +
    func showDownloadDidStartExtractingUpdate()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update is extracting with progress

    + +

    Let the user know how far along the update extraction is.

    + +

    Before this point, -showDownloadDidStartExtractingUpdate is called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showExtractionReceivedProgress:(double)progress;
    + +
    +
    +

    Swift

    +
    func showExtractionReceivedProgress(_ progress: Double)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + progress + + +
    +

    The progress of the extraction from a 0.0 to 1.0 scale

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -showInstallingUpdate + +
    +
    +
    +
    +
    +
    +

    Show the user that the update is installing

    + +

    Let the user know that the update is currently installing. Sparkle uses this to show an indeterminate progress bar.

    + +

    Before this point, -showExtractionReceivedProgress: may be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showInstallingUpdate;
    + +
    +
    +

    Swift

    +
    func showInstallingUpdate()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update is ready to install & relaunch

    + +

    Let the user know that the update is ready to install and relaunch, and ask them whether they want to proceed. + Note if the target application has already terminated, this method may not be invoked.

    + +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update installation for the time being. Note the update may still be installed automatically after the application terminates.

    + +

    A reply of SPUUserUpdateChoiceSkip cancels the current update that has begun installing and dismisses the update. In this circumstance, the update is canceled but this update version is not skipped in the future.

    + +

    Before this point, -showInstallingUpdate will be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showReadyToInstallAndRelaunch:
    +    (nonnull void (^)(SPUUserUpdateChoice))reply;
    + +
    +
    +

    Swift

    +
    func showReadyToInstallAndRelaunch() async -> SPUUserUpdateChoice
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + reply + + +
    +

    A reply of SPUUserUpdateChoiceInstall installs the update the new update immediately. The application is relaunched only if it is still running by the time this reply is invoked. If the application terminates on its own, Sparkle will attempt to automatically install the update.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle’s installer

    + +

    Terminating and relaunching the application (if requested to be relaunched) may happen quickly, + or it may take some time to perform the final installation, or the termination signal can be canceled or delayed by the application or user.

    + +

    It is up to the implementor whether or not to decide to continue showing installation progress + or dismissing UI that won’t remain obscuring other parts of the user interface.

    + +

    This will not be invoked if the application that is being updated is already terminated.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showSendingTerminationSignal;
    + +
    +
    +

    Swift

    +
    func showSendingTerminationSignal()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update installation finished

    + +

    Let the user know that the update finished installing.

    + +

    This will only be invoked if the updater process is still alive, which is typically not the case if + the updater’s lifetime is tied to the application it is updating. This implementation must not try to reference + the old bundle prior to the installation, which will no longer be around.

    + +

    Before this point, -showSendingTerminationSignal or -showReadyToInstallAndRelaunch: may be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched
    +                         acknowledgement:
    +                             (nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdateInstalledAndRelaunched(_ relaunched: Bool, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + relaunched + + +
    +

    Indicates if the update was relaunched.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that the finished installation was shown.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -showUpdateInFocus + +
    +
    +
    +
    +
    +
    +

    Show the user the current presented update or its progress in utmost focus

    + +

    The user wishes to check for updates while the user is being shown update progress. + Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc).

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInFocus;
    + +
    +
    +

    Swift

    +
    func showUpdateInFocus()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dismiss the current update installation

    + +

    Stop and tear down everything. + Dismiss all update windows, alerts, progress, etc from the user. + Basically, stop everything that could have been started. Sparkle may invoke this when aborting or finishing an update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)dismissUpdateInstallation;
    + +
    +
    +

    Swift

    +
    func dismissUpdateInstallation()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Implement -showUpdateNotFoundWithError:acknowledgement: instead

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateNotFoundWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateNotFoundWithError:acknowledgement: instead");
    + +
    +
    +

    Swift

    +
    optional func showUpdateNotFound(acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInstallationDidFinishWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead");
    + +
    +
    +

    Swift

    +
    optional func showUpdateInstallationDidFinish(acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)dismissUserInitiatedUpdateCheck __deprecated_msg("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.");
    + +
    +
    +

    Swift

    +
    optional func dismissUserInitiatedUpdateCheck()
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SUUpdaterDelegate.html b/documentation/api-reference/Protocols/SUUpdaterDelegate.html new file mode 100644 index 0000000..5306e96 --- /dev/null +++ b/documentation/api-reference/Protocols/SUUpdaterDelegate.html @@ -0,0 +1,1220 @@ + + + + SUUpdaterDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdaterDelegate

+
+

Deprecated

+

Deprecated in Sparkle 2. See SPUUpdaterDelegate instead

+ +
+
+
+

Objective-C

+
@protocol SUUpdaterDelegate <NSObject>
+ +
+
+

Swift

+
protocol SUUpdaterDelegate : NSObjectProtocol
+ +
+
+

Undocumented

+ +
+
+
+ +
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SUVersionComparison.html b/documentation/api-reference/Protocols/SUVersionComparison.html new file mode 100644 index 0000000..be424f7 --- /dev/null +++ b/documentation/api-reference/Protocols/SUVersionComparison.html @@ -0,0 +1,270 @@ + + + + SUVersionComparison Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUVersionComparison

+
+
+

Objective-C

+
@protocol SUVersionComparison
+ +
+
+

Swift

+
protocol SUVersionComparison
+ +
+
+

Provides version comparison facilities for Sparkle.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    An abstract method to compare two version strings.

    + +

    Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, +and NSOrderedSame if they are equivalent.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (NSComparisonResult)compareVersion:(nonnull NSString *)versionA
    +                           toVersion:(nonnull NSString *)versionB;
    + +
    +
    +

    Swift

    +
    func compareVersion(_ versionA: String, toVersion versionB: String) -> ComparisonResult
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/Protocols/SUVersionDisplay.html b/documentation/api-reference/Protocols/SUVersionDisplay.html new file mode 100644 index 0000000..e608885 --- /dev/null +++ b/documentation/api-reference/Protocols/SUVersionDisplay.html @@ -0,0 +1,270 @@ + + + + SUVersionDisplay Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUVersionDisplay

+
+
+

Objective-C

+
@protocol SUVersionDisplay
+ +
+
+

Swift

+
protocol SUVersionDisplay
+ +
+
+

Applies special display formatting to version numbers.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Formats two version strings.

    + +

    Both versions are provided so that important distinguishing information +can be displayed while also leaving out unnecessary/confusing parts.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)formatVersion:(NSString *_Nonnull *_Nonnull)inOutVersionA
    +           andVersion:(NSString *_Nonnull *_Nonnull)inOutVersionB;
    + +
    +
    +

    Swift

    +
    func formatVersion(_ inOutVersionA: AutoreleasingUnsafeMutablePointer<NSString>, andVersion inOutVersionB: AutoreleasingUnsafeMutablePointer<NSString>)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/_app_kit_prevention_8h_source.html b/documentation/api-reference/_app_kit_prevention_8h_source.html new file mode 100644 index 0000000..a6ec97f --- /dev/null +++ b/documentation/api-reference/_app_kit_prevention_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/AppKitPrevention.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
AppKitPrevention.h
+
+
+
1 //
+
2 // AppKitPrevention.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/17/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 // #include (not #import) this header to prevent AppKit from being imported
+
10 // Note this should be your LAST #include in your implementation file
+
11 
+
12 // If this error is triggered, you can have Xcode indicate to you which source file including this header caused the issue
+
13 
+
14 #ifdef _APPKITDEFINES_H
+
15 #error This is a core or daemon-safe module and should NOT import AppKit
+
16 #endif
+
+ + + + diff --git a/documentation/api-reference/_installer_progress_app_controller_8h_source.html b/documentation/api-reference/_installer_progress_app_controller_8h_source.html new file mode 100644 index 0000000..84c80f2 --- /dev/null +++ b/documentation/api-reference/_installer_progress_app_controller_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/InstallerProgressAppController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgressAppController.h
+
+
+
1 //
+
2 // InstallerProgressAppController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Cocoa/Cocoa.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 @interface InstallerProgressAppController : NSObject <NSApplicationDelegate>
+
16 
+
17 - (instancetype)initWithApplication:(NSApplication *)application arguments:(NSArray<NSString *> *)arguments delegate:(id<InstallerProgressDelegate>)delegate;
+
18 
+
19 - (void)run;
+
20 
+
21 - (void)cleanupAndExitWithStatus:(int)status error:(NSError * _Nullable)error __attribute__((noreturn));
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
Definition: InstallerProgressAppController.h:15
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/_installer_progress_delegate_8h_source.html b/documentation/api-reference/_installer_progress_delegate_8h_source.html new file mode 100644 index 0000000..365ab95 --- /dev/null +++ b/documentation/api-reference/_installer_progress_delegate_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/InstallerProgressDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgressDelegate.h
+
+
+
1 //
+
2 // InstallerProgressDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @protocol InstallerProgressDelegate <NSObject>
+
16 
+
17 - (void)installerProgressShouldDisplayWithHost:(SUHost *)host;
+
18 - (void)installerProgressShouldStop;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_appcast_item_state_8h_source.html b/documentation/api-reference/_s_p_u_appcast_item_state_8h_source.html new file mode 100644 index 0000000..75af479 --- /dev/null +++ b/documentation/api-reference/_s_p_u_appcast_item_state_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemState.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemState.h
+
+
+
1 //
+
2 // SPUAppcastItemState.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/31/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 // Appcast Item state that contains properties that depends on a host
+
14 @interface SPUAppcastItemState : NSObject
+
15 
+
16 - (instancetype)init NS_UNAVAILABLE;
+
17 
+
18 - (instancetype)initWithMajorUpgrade:(BOOL)majorUpgrade criticalUpdate:(BOOL)criticalUpdate informationalUpdate:(BOOL)informationalUpdate minimumOperatingSystemVersionIsOK:(BOOL)minimumOperatingSystemVersionIsOK maximumOperatingSystemVersionIsOK:(BOOL)maximumOperatingSystemVersionIsOK;
+
19 
+
20 @property (nonatomic, readonly) BOOL majorUpgrade;
+
21 @property (nonatomic, readonly) BOOL criticalUpdate;
+
22 @property (nonatomic, readonly) BOOL informationalUpdate;
+
23 @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
+
24 @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
+
25 
+
26 @end
+
27 
+
28 NS_ASSUME_NONNULL_END
+
Definition: SPUAppcastItemState.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html b/documentation/api-reference/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html new file mode 100644 index 0000000..69d586d --- /dev/null +++ b/documentation/api-reference/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemStateResolver+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemStateResolver+Private.h
+
+
+
1 //
+
2 // SPUAppcastItemStateResolver+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/20/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUAppcastItemStateResolver_Private_h
+
10 #define SPUAppcastItemStateResolver_Private_h
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @interface SPUAppcastItemStateResolver ()
+
15 
+
16 - (SPUAppcastItemState *)resolveStateWithInformationalUpdateVersions:(NSSet<NSString *> * _Nullable)informationalUpdateVersions minimumOperatingSystemVersion:(NSString * _Nullable)minimumOperatingSystemVersion maximumOperatingSystemVersion:(NSString * _Nullable)maximumOperatingSystemVersion minimumAutoupdateVersion:(NSString * _Nullable)minimumAutoupdateVersion criticalUpdateDictionary:(NSDictionary * _Nullable)criticalUpdateDictionary;
+
17 
+
18 + (BOOL)isMinimumAutoupdateVersionOK:(NSString * _Nullable)minimumAutoupdateVersion hostVersion:(NSString *)hostVersion versionComparator:(id<SUVersionComparison>)versionComparator;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif /* SPUAppcastItemStateResolver_Private_h */
+
Definition: SPUAppcastItemState.h:15
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_appcast_item_state_resolver_8h_source.html b/documentation/api-reference/_s_p_u_appcast_item_state_resolver_8h_source.html new file mode 100644 index 0000000..2e77ab0 --- /dev/null +++ b/documentation/api-reference/_s_p_u_appcast_item_state_resolver_8h_source.html @@ -0,0 +1,118 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemStateResolver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemStateResolver.h
+
+
+
1 //
+
2 // SPUAppcastItemStateResolver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/31/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #import <Sparkle/SUExport.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+ +
23 @protocol SUVersionComparison;
+
24 
+
29 SU_EXPORT @interface SPUAppcastItemStateResolver : NSObject
+
30 
+
31 - (instancetype)init NS_UNAVAILABLE;
+
32 
+
33 - (instancetype)initWithHostVersion:(NSString *)hostVersion applicationVersionComparator:(id<SUVersionComparison>)applicationVersionComparator standardVersionComparator:(SUStandardVersionComparator *)standardVersionComparator;
+
34 
+
35 @end
+
36 
+
37 NS_ASSUME_NONNULL_END
+
Definition: SPUAppcastItemState.h:15
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Sparkle's default version comparator.
Definition: SUStandardVersionComparator.h:42
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_automatic_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_automatic_update_driver_8h_source.html new file mode 100644 index 0000000..ceb1fe7 --- /dev/null +++ b/documentation/api-reference/_s_p_u_automatic_update_driver_8h_source.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: Sparkle/SPUAutomaticUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAutomaticUpdateDriver.h
+
+
+
1 //
+
2 // SPUAutomaticUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+ +
16 
+ +
18 
+
19 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUAutomaticUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_basic_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_basic_update_driver_8h_source.html new file mode 100644 index 0000000..fc239f8 --- /dev/null +++ b/documentation/api-reference/_s_p_u_basic_update_driver_8h_source.html @@ -0,0 +1,132 @@ + + + + + + + +Sparkle: Sparkle/SPUBasicUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUBasicUpdateDriver.h
+
+
+
1 //
+
2 // SPUBasicUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost, SUAppcastItem;
+
15 @protocol SPUUpdaterDelegate;
+
16 
+
17 @protocol SPUBasicUpdateDriverDelegate <NSObject>
+
18 
+
19 - (void)basicDriverDidFindUpdateWithAppcastItem:(SUAppcastItem *)appcastItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem systemDomain:(NSNumber * _Nullable)systemDomain;
+
20 
+
21 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
22 
+
23 @optional
+
24 
+
25 - (void)basicDriverDidFinishLoadingAppcast;
+
26 
+
27 @end
+
28 
+
29 @interface SPUBasicUpdateDriver : NSObject
+
30 
+
31 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id <SPUBasicUpdateDriverDelegate>)delegate;
+
32 
+
33 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
34 
+
35 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
36 
+
37 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
38 
+
39 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
40 
+
41 - (void)abortUpdateAndShowNextUpdateImmediately:(BOOL)shouldSignalShowingUpdate resumableUpdate:(id<SPUResumableUpdate> _Nullable)resumableUpdate error:(nullable NSError *)error;
+
42 
+
43 @end
+
44 
+
45 NS_ASSUME_NONNULL_END
+
Definition: SPUBasicUpdateDriver.h:30
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUBasicUpdateDriver.h:17
+
Definition: SPUResumableUpdate.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_core_based_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_core_based_update_driver_8h_source.html new file mode 100644 index 0000000..b34173e --- /dev/null +++ b/documentation/api-reference/_s_p_u_core_based_update_driver_8h_source.html @@ -0,0 +1,165 @@ + + + + + + + +Sparkle: Sparkle/SPUCoreBasedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUCoreBasedUpdateDriver.h
+
+
+
1 //
+
2 // SPUCoreBasedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 #import "SPUUserUpdateState.h"
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost, SUAppcastItem;
+
16 @protocol SPUUpdaterDelegate;
+
17 
+ +
19 
+
20 - (void)basicDriverDidFindUpdateWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem;
+
21 
+
22 - (void)installerDidFinishPreparationAndWillInstallImmediately:(BOOL)willInstallImmediately silently:(BOOL)willInstallSilently;
+
23 
+
24 - (void)coreDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
25 
+
26 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
27 
+
28 @optional
+
29 
+
30 - (void)basicDriverDidFinishLoadingAppcast;
+
31 
+
32 - (void)downloadDriverWillBeginDownload;
+
33 
+
34 - (void)downloadDriverDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
35 
+
36 - (void)downloadDriverDidReceiveDataOfLength:(uint64_t)length;
+
37 
+
38 - (void)coreDriverDidStartExtractingUpdate;
+
39 
+
40 - (void)installerDidStartInstalling;
+
41 
+
42 - (void)installerDidExtractUpdateWithProgress:(double)progress;
+
43 
+
44 - (void)installerIsSendingAppTerminationSignal;
+
45 
+
46 - (void)installerDidFinishInstallationAndRelaunched:(BOOL)relaunched acknowledgement:(void(^)(void))acknowledgement;
+
47 
+
48 @end
+
49 
+
50 @interface SPUCoreBasedUpdateDriver : NSObject
+
51 
+
52 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id<SPUCoreBasedUpdateDriverDelegate>)delegate;
+
53 
+
54 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
55 
+
56 - (void)preflightForUpdatePermissionPreventingInstallerInteraction:(BOOL)preventsInstallerInteraction reply:(void (^)(NSError * _Nullable))reply;
+
57 
+
58 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background requiresSilentInstall:(BOOL)silentInstall;
+
59 
+
60 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
61 
+
62 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
63 
+
64 - (void)downloadUpdateFromAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryUpdateItem inBackground:(BOOL)background;
+
65 
+
66 - (void)deferInformationalUpdate:(SUAppcastItem *)updateItem secondaryUpdate:(SUAppcastItem * _Nullable)secondaryUpdateItem;
+
67 
+
68 - (void)extractDownloadedUpdate;
+
69 
+
70 - (void)clearDownloadedUpdate;
+
71 
+
72 - (void)finishInstallationWithResponse:(SPUUserUpdateChoice)installUpdateStatus displayingUserInterface:(BOOL)displayingUserInterface;
+
73 
+
74 - (void)abortUpdateAndShowNextUpdateImmediately:(BOOL)shouldShowUpdateImmediately error:(nullable NSError *)error;
+
75 
+
76 @end
+
77 
+
78 NS_ASSUME_NONNULL_END
+
Definition: SPUCoreBasedUpdateDriver.h:51
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUCoreBasedUpdateDriver.h:18
+
Definition: SPUResumableUpdate.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_download_data_8h_source.html b/documentation/api-reference/_s_p_u_download_data_8h_source.html new file mode 100644 index 0000000..442d71a --- /dev/null +++ b/documentation/api-reference/_s_p_u_download_data_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadData.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadData.h
+
+
+
1 //
+
2 // SPUDownloadData.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #ifdef BUILDING_SPARKLE_DOWNLOADER_SERVICE
+
19 // Ignore incorrect warning
+
20 #pragma clang diagnostic push
+
21 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
22 #import "SUExport.h"
+
23 #pragma clang diagnostic pop
+
24 #else
+
25 #import <Sparkle/SUExport.h>
+
26 #endif
+
27 
+
28 NS_ASSUME_NONNULL_BEGIN
+
29 
+
33 SU_EXPORT @interface SPUDownloadData : NSObject <NSSecureCoding>
+
34 
+
35 - (instancetype)initWithData:(NSData *)data URL:(NSURL *)URL textEncodingName:(NSString * _Nullable)textEncodingName MIMEType:(NSString * _Nullable)MIMEType;
+
36 
+
40 @property (nonatomic, readonly) NSData *data;
+
41 
+
47 @property (nonatomic, readonly, copy) NSURL *URL;
+
48 
+
52 @property (nonatomic, readonly, nullable, copy) NSString *textEncodingName;
+
53 
+
57 @property (nonatomic, readonly, nullable, copy) NSString *MIMEType;
+
58 
+
59 @end
+
60 
+
61 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
NSString * MIMEType
The MIME type if available.
Definition: SPUDownloadData.h:57
+
NSURL * URL
The URL that was fetched from.
Definition: SPUDownloadData.h:47
+
NSString * textEncodingName
The IANA charset encoding name if available.
Definition: SPUDownloadData.h:52
+
NSData * data
The raw data that was downloaded.
Definition: SPUDownloadData.h:40
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_download_driver_8h_source.html b/documentation/api-reference/_s_p_u_download_driver_8h_source.html new file mode 100644 index 0000000..36c408f --- /dev/null +++ b/documentation/api-reference/_s_p_u_download_driver_8h_source.html @@ -0,0 +1,143 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadDriver.h
+
+
+
1 //
+
2 // SPUDownloadDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 @protocol SPUDownloadDriverDelegate <NSObject>
+
16 
+
17 - (void)downloadDriverDidFailToDownloadFileWithError:(NSError *)error;
+
18 
+
19 @optional
+
20 
+
21 - (void)downloadDriverWillBeginDownload;
+
22 
+
23 // For persitent update downloads
+
24 - (void)downloadDriverDidDownloadUpdate:(SPUDownloadedUpdate *)downloadedUpdate;
+
25 
+
26 // For temporary downloads
+
27 - (void)downloadDriverDidDownloadData:(SPUDownloadData *)downloadData;
+
28 
+
29 // Only for persistent downloads
+
30 - (void)downloadDriverDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
31 
+
32 // Only for persistent downloads
+
33 - (void)downloadDriverDidReceiveDataOfLength:(uint64_t)length;
+
34 
+
35 @end
+
36 
+
37 @interface SPUDownloadDriver : NSObject
+
38 
+
39 - (instancetype)initWithRequestURL:(NSURL *)requestURL host:(SUHost *)host userAgent:(NSString * _Nullable)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background delegate:(id<SPUDownloadDriverDelegate>)delegate;
+
40 
+
41 - (instancetype)initWithUpdateItem:(SUAppcastItem *)updateItem secondaryUpdateItem:(SUAppcastItem * _Nullable)secondaryUpdateItem host:(SUHost *)host userAgent:(NSString * _Nullable)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background delegate:(id<SPUDownloadDriverDelegate>)delegate;
+
42 
+
43 - (instancetype)initWithHost:(SUHost *)host;
+
44 
+
45 - (void)downloadFile;
+
46 
+
47 - (void)removeDownloadedUpdate:(SPUDownloadedUpdate *)downloadedUpdate;
+
48 
+
49 @property (nonatomic, readonly) NSMutableURLRequest *request;
+
50 @property (nonatomic, readonly) BOOL inBackground;
+
51 
+
52 - (void)cleanup:(void (^)(void))completionHandler;
+
53 
+
54 @end
+
55 
+
56 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
Definition: SPUDownloadDriver.h:38
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUDownloadDriver.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_downloaded_update_8h_source.html b/documentation/api-reference/_s_p_u_downloaded_update_8h_source.html new file mode 100644 index 0000000..5c716ce --- /dev/null +++ b/documentation/api-reference/_s_p_u_downloaded_update_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadedUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadedUpdate.h
+
+
+
1 //
+
2 // SPUDownloadedUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/8/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUResumableUpdate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @interface SPUDownloadedUpdate : NSObject <SPUResumableUpdate>
+
15 
+
16 - (instancetype)initWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryItem downloadName:(NSString *)downloadName temporaryDirectory:(NSString *)temporaryDirectory;
+
17 
+
18 @property (nonatomic, copy, readonly) NSString *downloadName;
+
19 @property (nonatomic, copy, readonly) NSString *temporaryDirectory;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_informational_update_8h_source.html b/documentation/api-reference/_s_p_u_informational_update_8h_source.html new file mode 100644 index 0000000..4737b99 --- /dev/null +++ b/documentation/api-reference/_s_p_u_informational_update_8h_source.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: Sparkle/SPUInformationalUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInformationalUpdate.h
+
+
+
1 //
+
2 // SPUInformationalUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/8/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUResumableUpdate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+ +
15 
+
16 - (instancetype)initWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryUpdateItem;
+
17 
+
18 @end
+
19 
+
20 NS_ASSUME_NONNULL_END
+
Definition: SPUInformationalUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_installation_type_8h_source.html b/documentation/api-reference/_s_p_u_installation_type_8h_source.html new file mode 100644 index 0000000..358d236 --- /dev/null +++ b/documentation/api-reference/_s_p_u_installation_type_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SPUInstallationType.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallationType.h
+
+
+
1 //
+
2 // SPUInstallationType.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUInstallationType_h
+
10 #define SPUInstallationType_h
+
11 
+
12 #define SPUInstallationTypeApplication @"application" // the default installation type for ordinary application updates
+
13 #define SPUInstallationTypeGuidedPackage @"package" // the preferred installation type for package installations
+
14 #define SPUInstallationTypeInteractivePackage @"interactive-package" // the deprecated installation type; use guided package instead
+
15 
+
16 #define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage, SPUInstallationTypeInteractivePackage])
+
17 #define SPUValidInstallationType(x) ((x != nil) && [SPUInstallationTypesArray containsObject:(NSString * _Nonnull)x])
+
18 
+
19 #endif /* SPUInstallationType_h */
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_installer_agent_protocol_8h_source.html b/documentation/api-reference/_s_p_u_installer_agent_protocol_8h_source.html new file mode 100644 index 0000000..266ab86 --- /dev/null +++ b/documentation/api-reference/_s_p_u_installer_agent_protocol_8h_source.html @@ -0,0 +1,111 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/SPUInstallerAgentProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallerAgentProtocol.h
+
+
+
1 //
+
2 // SPUInstallerAgentProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 - (void)registerApplicationBundlePath:(NSString *)applicationBundlePath reply:(void (^)(NSNumber * _Nullable processIdentifier))reply;
+
16 
+
17 - (void)registerInstallationInfoData:(NSData *)installationInfoData;
+
18 
+
19 - (void)sendTerminationSignal;
+
20 
+
21 - (void)showProgress;
+
22 
+
23 - (void)stopProgress;
+
24 
+
25 - (void)relaunchApplication;
+
26 
+
27 @end
+
28 
+
29 NS_ASSUME_NONNULL_END
+
Definition: SPUInstallerAgentProtocol.h:13
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_installer_driver_8h_source.html b/documentation/api-reference/_s_p_u_installer_driver_8h_source.html new file mode 100644 index 0000000..9ce510a --- /dev/null +++ b/documentation/api-reference/_s_p_u_installer_driver_8h_source.html @@ -0,0 +1,136 @@ + + + + + + + +Sparkle: Sparkle/SPUInstallerDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallerDriver.h
+
+
+
1 //
+
2 // SPUInstallerDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterDelegate;
+ +
15 
+
16 @protocol SPUInstallerDriverDelegate <NSObject>
+
17 
+
18 - (void)installerDidStartInstalling;
+
19 - (void)installerDidStartExtracting;
+
20 - (void)installerDidExtractUpdateWithProgress:(double)progress;
+
21 - (void)installerDidFinishPreparationAndWillInstallImmediately:(BOOL)willInstallImmediately silently:(BOOL)willInstallSilently;
+
22 - (void)installerIsSendingAppTerminationSignal;
+
23 - (void)installerWillFinishInstallationAndRelaunch:(BOOL)relaunch;
+
24 - (void)installerDidFinishInstallationAndRelaunched:(BOOL)relaunch acknowledgement:(void(^)(void))acknowledgement;
+
25 
+
26 - (void)installerIsRequestingAbortInstallWithError:(nullable NSError *)error;
+
27 - (void)installerDidFailToApplyDeltaUpdate;
+
28 
+
29 @end
+
30 
+
31 @interface SPUInstallerDriver : NSObject
+
32 
+
33 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate delegate:(nullable id<SPUInstallerDriverDelegate>)delegate;
+
34 
+
35 - (void)resumeInstallingUpdateWithUpdateItem:(SUAppcastItem *)updateItem systemDomain:(BOOL)systemDomain;
+
36 
+
37 - (void)checkIfApplicationInstallationRequiresAuthorizationWithReply:(void (^)(BOOL requiresAuthorization))reply;
+
38 
+
39 - (void)extractDownloadedUpdate:(SPUDownloadedUpdate *)downloadedUpdate silently:(BOOL)silently preventsInstallerInteraction:(BOOL)preventsInstallerInteraction completion:(void (^)(NSError * _Nullable))completionHandler;
+
40 
+
41 - (void)installWithToolAndRelaunch:(BOOL)relaunch displayingUserInterface:(BOOL)showUI;
+
42 
+
43 - (void)cancelUpdate;
+
44 
+
45 - (void)abortInstall;
+
46 
+
47 @end
+
48 
+
49 NS_ASSUME_NONNULL_END
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SPUInstallerDriver.h:32
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUInstallerDriver.h:16
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_local_cache_directory_8h_source.html b/documentation/api-reference/_s_p_u_local_cache_directory_8h_source.html new file mode 100644 index 0000000..17818ef --- /dev/null +++ b/documentation/api-reference/_s_p_u_local_cache_directory_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPULocalCacheDirectory.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPULocalCacheDirectory.h
+
+
+
1 //
+
2 // SULocalCacheDirectory.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/23/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @interface SPULocalCacheDirectory : NSObject
+
14 
+
15 // Returns a path to a suitable cache directory to create specifically for Sparkle
+
16 // Intermediate directories to this path may not exist yet
+
17 // This path may depend on the type of running process,
+
18 // such that sandboxed vs non-sandboxed processes could yield different paths
+
19 // The caller should create a subdirectory from the path that is returned here so they don't have files that
+
20 // conflict with other callers. Once that subdirectory name is decided, the caller can remove old items inside it (using +removeOldItemsInDirectory:)
+
21 // and then create a unique temporary directory inside it (using +createUniqueDirectoryInDirectory:)
+
22 + (NSString *)cachePathForBundleIdentifier:(NSString *)bundleIdentifier;
+
23 
+
24 // Remove old files inside a directory
+
25 // A caller may want to invoke this on a directory they own rather than remove and re-create an entire directory
+
26 // This does nothing if the supplied directory does not exist yet
+
27 + (void)removeOldItemsInDirectory:(NSString *)directory;
+
28 
+
29 // Create a unique directory inside a parent directory
+
30 // The parent directory doesn't have to exist yet. If it doesn't exist, intermediate directories will be created.
+
31 + (NSString * _Nullable)createUniqueDirectoryInDirectory:(NSString *)directory;
+
32 
+
33 @end
+
34 
+
35 NS_ASSUME_NONNULL_END
+
Definition: SPULocalCacheDirectory.h:14
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_probe_install_status_8h_source.html b/documentation/api-reference/_s_p_u_probe_install_status_8h_source.html new file mode 100644 index 0000000..1ae7661 --- /dev/null +++ b/documentation/api-reference/_s_p_u_probe_install_status_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SPUProbeInstallStatus.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUProbeInstallStatus.h
+
+
+
1 //
+
2 // SPUProbeInstallStatus.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/20/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SPUInstallationInfo;
+
14 
+
15 @interface SPUProbeInstallStatus : NSObject
+
16 
+
17 + (void)probeInstallerInProgressForHostBundleIdentifier:(NSString *)hostBundleIdentifier completion:(void (^)(BOOL))completionHandler;
+
18 
+
19 // completionHandler may not be sent on main queue
+
20 // additionally, it may be possible that the installer is in progress but we get a nil installation info back
+
21 + (void)probeInstallerUpdateItemForHostBundleIdentifier:(NSString *)hostBundleIdentifier completion:(void (^)(SPUInstallationInfo * _Nullable))completionHandler;
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
Definition: SPUProbeInstallStatus.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_probing_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_probing_update_driver_8h_source.html new file mode 100644 index 0000000..56d9aa1 --- /dev/null +++ b/documentation/api-reference/_s_p_u_probing_update_driver_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/SPUProbingUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUProbingUpdateDriver.h
+
+
+
1 //
+
2 // SPUProbingUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+
15 @protocol SPUUpdaterDelegate;
+
16 
+
17 @interface SPUProbingUpdateDriver : NSObject <SPUUpdateDriver>
+
18 
+
19 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUProbingUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_resumable_update_8h_source.html b/documentation/api-reference/_s_p_u_resumable_update_8h_source.html new file mode 100644 index 0000000..4c1c26a --- /dev/null +++ b/documentation/api-reference/_s_p_u_resumable_update_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SPUResumableUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUResumableUpdate.h
+
+
+
1 //
+
2 // SPUResumableUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUAppcastItem;
+
14 
+
15 @protocol SPUResumableUpdate <NSObject>
+
16 
+
17 @property (nonatomic, readonly) SUAppcastItem *updateItem;
+
18 @property (nonatomic, readonly, nullable) SUAppcastItem *secondaryUpdateItem;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_scheduled_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_scheduled_update_driver_8h_source.html new file mode 100644 index 0000000..a849ea5 --- /dev/null +++ b/documentation/api-reference/_s_p_u_scheduled_update_driver_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SPUScheduledUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUScheduledUpdateDriver.h
+
+
+
1 //
+
2 // SPUScheduledUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 #import "SPUUIBasedUpdateDriver.h"
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost;
+ +
17 
+ +
19 
+
20 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
21 
+
22 @end
+
23 
+
24 NS_ASSUME_NONNULL_END
+
Definition: SPUScheduledUpdateDriver.h:18
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_secure_coding_8h_source.html b/documentation/api-reference/_s_p_u_secure_coding_8h_source.html new file mode 100644 index 0000000..9f23f01 --- /dev/null +++ b/documentation/api-reference/_s_p_u_secure_coding_8h_source.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Sparkle/SPUSecureCoding.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUSecureCoding.h
+
+
+
1 //
+
2 // SPUSecureCoding.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 // If we are using XPC without using XPC Services, our custom classes will not be (de)serialized automatically,
+
12 // hence needing functions to archive/unarchive NSSecureCoding objects.
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 NSData * _Nullable SPUArchiveRootObjectSecurely(id<NSSecureCoding> rootObject);
+
17 
+
18 id<NSSecureCoding> _Nullable SPUUnarchiveRootObjectSecurely(NSData *data, Class klass);
+
19 
+
20 NS_ASSUME_NONNULL_END
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_skipped_update_8h_source.html b/documentation/api-reference/_s_p_u_skipped_update_8h_source.html new file mode 100644 index 0000000..5662d51 --- /dev/null +++ b/documentation/api-reference/_s_p_u_skipped_update_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SPUSkippedUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUSkippedUpdate.h
+
+
+
1 //
+
2 // SPUSkippedUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/8/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost, SUAppcastItem;
+
14 
+
15 /*
+
16  A skipped update tracks an optional minor version and an optional major version the user may skip.
+
17  The minor and major versions are independent versions, so the user can choose to skip at most two separate versions.
+
18  The intent is when the user is faced with a major upgrade, they can skip a major version.
+
19  Otherwise they can choose to skip a minor version.
+
20  */
+
21 @interface SPUSkippedUpdate : NSObject
+
22 
+
23 + (nullable SPUSkippedUpdate *)skippedUpdateForHost:(SUHost *)host;
+
24 
+
25 + (void)clearSkippedUpdateForHost:(SUHost *)host;
+
26 
+
27 + (void)skipUpdate:(SUAppcastItem *)updateItem host:(SUHost *)host;
+
28 
+
29 // At least one of minorVersion or majorVersion should be non-nil
+
30 - (instancetype)initWithMinorVersion:(nullable NSString *)minorVersion majorVersion:(nullable NSString *)majorVersion;
+
31 
+
32 // At least one of these version properties will be non-nil
+
33 @property (nonatomic, readonly, nullable) NSString *minorVersion;
+
34 @property (nonatomic, readonly, nullable) NSString *majorVersion;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
Definition: SPUSkippedUpdate.h:22
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_standard_updater_controller_8h_source.html b/documentation/api-reference/_s_p_u_standard_updater_controller_8h_source.html new file mode 100644 index 0000000..bfa5cb4 --- /dev/null +++ b/documentation/api-reference/_s_p_u_standard_updater_controller_8h_source.html @@ -0,0 +1,141 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUpdaterController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUpdaterController.h
+
+
+
1 //
+
2 // SPUStandardUpdaterController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
21 @class SPUUpdater;
+ +
23 @class NSMenuItem;
+ +
25 
+
39 SU_EXPORT @interface SPUStandardUpdaterController : NSObject
+
40 
+
46 @property (nonatomic, weak, nullable) IBOutlet id<SPUUpdaterDelegate> updaterDelegate;
+
47 
+
53 @property (nonatomic, weak, nullable) IBOutlet id<SPUStandardUserDriverDelegate> userDriverDelegate;
+
54 
+
60 @property (nonatomic, readonly) SPUUpdater *updater;
+
61 
+
65 @property (nonatomic, readonly) SPUStandardUserDriver *userDriver;
+
66 
+
74 - (instancetype)init NS_UNAVAILABLE;
+
75 
+
81 - (instancetype)initWithUpdaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate userDriverDelegate:(nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
+
82 
+
89 - (instancetype)initWithStartingUpdater:(BOOL)startUpdater updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate userDriverDelegate:(nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
+
90 
+
100 - (void)startUpdater;
+
101 
+
116 - (IBAction)checkForUpdates:(nullable id)sender;
+
117 
+
118 @end
+
119 
+
120 NS_ASSUME_NONNULL_END
+
A controller class that instantiates a SPUUpdater and allows binding UI to it.
Definition: SPUStandardUpdaterController.h:40
+
void startUpdater()
Starts the updater if it has not already been started.
+
SPUStandardUserDriver * userDriver
Accessible property for the updater's user driver.
Definition: SPUStandardUpdaterController.h:65
+
instancetype NS_UNAVAILABLE()
Create a new SPUStandardUpdaterController from a nib.
+
IBOutlet id< SPUStandardUserDriverDelegate > userDriverDelegate
Interface builder outlet for the user driver's delegate.
Definition: SPUStandardUpdaterController.h:53
+
IBOutlet id< SPUUpdaterDelegate > updaterDelegate
Interface builder outlet for the updater's delegate.
Definition: SPUStandardUpdaterController.h:46
+
SPUUpdater * updater
Accessible property for the updater.
Definition: SPUStandardUpdaterController.h:60
+
Sparkle's standard built-in user driver for updater interactions.
Definition: SPUStandardUserDriver.h:27
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_standard_user_driver_8h_source.html b/documentation/api-reference/_s_p_u_standard_user_driver_8h_source.html new file mode 100644 index 0000000..7e1601f --- /dev/null +++ b/documentation/api-reference/_s_p_u_standard_user_driver_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUserDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUserDriver.h
+
+
+
1 //
+
2 // SPUStandardUserDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SPUUserDriver.h>
+
18 #import <Sparkle/SUExport.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+ +
23 
+
27 SU_EXPORT @interface SPUStandardUserDriver : NSObject <SPUUserDriver>
+
28 
+
35 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle delegate:(nullable id<SPUStandardUserDriverDelegate>)delegate;
+
36 
+
40 - (instancetype)init NS_UNAVAILABLE;
+
41 
+
42 @end
+
43 
+
44 NS_ASSUME_NONNULL_END
+
Sparkle's standard built-in user driver for updater interactions.
Definition: SPUStandardUserDriver.h:27
+
instancetype NS_UNAVAILABLE()
Use initWithHostBundle:delegate: instead.
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_standard_user_driver_delegate_8h_source.html b/documentation/api-reference/_s_p_u_standard_user_driver_delegate_8h_source.html new file mode 100644 index 0000000..f5e4957 --- /dev/null +++ b/documentation/api-reference/_s_p_u_standard_user_driver_delegate_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUserDriverDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUserDriverDelegate.h
+
+
+
1 //
+
2 // SPUStandardUserDriverDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/3/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 @protocol SUVersionDisplay;
+
20 
+
26 SU_EXPORT @protocol SPUStandardUserDriverDelegate <NSObject>
+
27 
+
28 @optional
+
29 
+ +
35 
+ +
41 
+ +
48 
+
49 @end
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
void standardUserDriverDidShowModalAlert()
Called after showing a modal alert window, to give the opportunity to hide attached windows that may ...
+
void standardUserDriverWillShowModalAlert()
Called before showing a modal alert window, to give the opportunity to hide attached windows that may...
+
_Nullable id< SUVersionDisplay > standardUserDriverRequestsVersionDisplayer()
Returns an object that formats version numbers for display to the user.
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_u_i_based_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_u_i_based_update_driver_8h_source.html new file mode 100644 index 0000000..3b4a185 --- /dev/null +++ b/documentation/api-reference/_s_p_u_u_i_based_update_driver_8h_source.html @@ -0,0 +1,135 @@ + + + + + + + +Sparkle: Sparkle/SPUUIBasedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUIBasedUpdateDriver.h
+
+
+
1 //
+
2 // SPUUIBasedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @protocol SPUUIBasedUpdateDriverDelegate <NSObject>
+
15 
+
16 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
17 - (void)coreDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
18 - (void)uiDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
19 
+
20 @optional
+
21 
+
22 - (void)uiDriverDidShowUpdate;
+
23 - (void)basicDriverDidFinishLoadingAppcast;
+
24 
+
25 @end
+
26 
+
27 @class SUHost;
+ +
29 
+
30 @interface SPUUIBasedUpdateDriver : NSObject
+
31 
+
32 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver userInitiated:(BOOL)userInitiated updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id<SPUUIBasedUpdateDriverDelegate>)delegate;
+
33 
+
34 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
35 
+
36 - (void)preflightForUpdatePermissionPreventingInstallerInteraction:(BOOL)preventsInstallerInteraction reply:(void (^)(NSError * _Nullable))reply;
+
37 
+
38 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
39 
+
40 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
41 
+
42 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
43 
+
44 - (void)abortUpdateWithError:(nullable NSError *)error;
+
45 
+
46 @end
+
47 
+
48 NS_ASSUME_NONNULL_END
+
Definition: SPUUIBasedUpdateDriver.h:31
+
Definition: SUHost.h:15
+
Definition: SPUResumableUpdate.h:15
+
Definition: SPUUIBasedUpdateDriver.h:14
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_u_r_l_request_8h_source.html b/documentation/api-reference/_s_p_u_u_r_l_request_8h_source.html new file mode 100644 index 0000000..b49fd11 --- /dev/null +++ b/documentation/api-reference/_s_p_u_u_r_l_request_8h_source.html @@ -0,0 +1,113 @@ + + + + + + + +Sparkle: Sparkle/SPUURLRequest.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUURLRequest.h
+
+
+
1 //
+
2 // SPUURLRequest.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/19/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 // A class that wraps NSURLRequest and implements NSSecureCoding
+
14 // This class exists because NSURLRequest did not support NSSecureCoding in macOS 10.8
+
15 // I have not verified if NSURLRequest in 10.9 implements NSSecureCoding or not
+
16 @interface SPUURLRequest : NSObject <NSSecureCoding>
+
17 
+
18 // Creates a new URL request
+
19 // Only these properties are currently tracked:
+
20 // * URL
+
21 // * Cache policy
+
22 // * Timeout interval
+
23 // * HTTP header fields
+
24 // * networkServiceType
+
25 + (instancetype)URLRequestWithRequest:(NSURLRequest *)request;
+
26 
+
27 @property (nonatomic, readonly) NSURLRequest *request;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
Definition: SPUURLRequest.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_update_driver_8h_source.html new file mode 100644 index 0000000..92fca2b --- /dev/null +++ b/documentation/api-reference/_s_p_u_update_driver_8h_source.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdateDriver.h
+
+
+
1 //
+
2 // SPUUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 NS_ASSUME_NONNULL_BEGIN
+
10 
+
11 @protocol SPUResumableUpdate;
+
12 
+
13 typedef void (^SPUUpdateDriverCompletion)(BOOL shouldShowUpdateImmediately, id<SPUResumableUpdate> _Nullable resumableUpdate);
+
14 
+
15 // This protocol describes an update driver that drives updates
+
16 // An update driver may have multiple levels of other controller components (eg: basic update driver, core based update driver, ui based update driver, appcast driver, etc)
+
17 // The update driver and the components the driver has communicates via parameter passing and delegation..
+
18 // The old Sparkle architecture communicated via subclassing and method overriding, but this lead to bugs due to high coupling, and complexity of not being aware of methods being executed.
+
19 // The newer architecture is still complex but should be more reliable to maintain and extend.
+
20 @protocol SPUUpdateDriver <NSObject>
+
21 
+
22 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders preventingInstallerInteraction:(BOOL)preventsInstallerInteraction completion:(SPUUpdateDriverCompletion)completionBlock;
+
23 
+
24 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
25 
+
26 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
27 
+
28 @property (nonatomic, readonly) BOOL showingUpdate;
+
29 
+
30 // A likely implementation of -abortUpdate is invoking -abortUpdateWithError: by passing nil
+
31 - (void)abortUpdate;
+
32 
+
33 // This should be invoked on the update driver to finish the update driver's work
+
34 - (void)abortUpdateWithError:(NSError * _Nullable)error;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
Definition: SPUResumableUpdate.h:15
+
Definition: SPUUpdateDriver.h:20
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_update_permission_request_8h_source.html b/documentation/api-reference/_s_p_u_update_permission_request_8h_source.html new file mode 100644 index 0000000..3e1a739 --- /dev/null +++ b/documentation/api-reference/_s_p_u_update_permission_request_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdatePermissionRequest.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdatePermissionRequest.h
+
+
+
1 //
+
2 // SPUUpdatePermissionRequest.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
24 SU_EXPORT @interface SPUUpdatePermissionRequest : NSObject<NSSecureCoding>
+
25 
+
31 - (instancetype)initWithSystemProfile:(NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfile;
+
32 
+
36 @property (nonatomic, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *systemProfile;
+
37 
+
38 @end
+
39 
+
40 NS_ASSUME_NONNULL_END
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
NSArray< NSDictionary< NSString *, NSString * > * > * systemProfile
A read-only property for the user's system profile.
Definition: SPUUpdatePermissionRequest.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_updater_8h_source.html b/documentation/api-reference/_s_p_u_updater_8h_source.html new file mode 100644 index 0000000..cf10582 --- /dev/null +++ b/documentation/api-reference/_s_p_u_updater_8h_source.html @@ -0,0 +1,181 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdater.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdater.h
+
+
+
1 //
+
2 // SPUUpdater.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/4/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 #import <Sparkle/SPUUserDriver.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+
22 @class SUAppcastItem, SUAppcast;
+
23 
+
24 @protocol SPUUpdaterDelegate;
+
25 
+
32 SU_EXPORT @interface SPUUpdater : NSObject
+
33 
+
49 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle applicationBundle:(NSBundle *)applicationBundle userDriver:(id <SPUUserDriver>)userDriver delegate:(id<SPUUpdaterDelegate> _Nullable)delegate;
+
50 
+
56 - (instancetype)init NS_UNAVAILABLE;
+
57 
+
79 - (BOOL)startUpdater:(NSError * __autoreleasing *)error;
+
80 
+
94 - (void)checkForUpdates;
+
95 
+ +
107 
+ +
120 
+
130 @property (nonatomic, readonly) BOOL canCheckForUpdates;
+
131 
+
145 @property (nonatomic, readonly) BOOL sessionInProgress;
+
146 
+
154 @property (nonatomic) BOOL automaticallyChecksForUpdates;
+
155 
+
163 @property (nonatomic) NSTimeInterval updateCheckInterval;
+
164 
+
173 @property (nonatomic) BOOL automaticallyDownloadsUpdates;
+
174 
+
185 @property (nonatomic, readonly, nullable) NSURL *feedURL;
+
186 
+
200 - (void)setFeedURL:(NSURL * _Nullable)feedURL;
+
201 
+
205 @property (nonatomic, readonly) NSBundle *hostBundle;
+
206 
+
210 @property (nonatomic, readonly) NSBundle *sparkleBundle;
+
211 
+
217 @property (nonatomic, copy) NSString *userAgentString;
+
218 
+
224 #if __has_feature(objc_generics)
+
225 @property (nonatomic, copy, nullable) NSDictionary<NSString *, NSString *> *httpHeaders;
+
226 #else
+
227 @property (nonatomic, copy, nullable) NSDictionary *httpHeaders;
+
228 #endif
+
229 
+
235 @property (nonatomic) BOOL sendsSystemProfile;
+
236 
+
242 @property (nonatomic, readonly, copy, nullable) NSDate *lastUpdateCheckDate;
+
243 
+
251 - (void)resetUpdateCycle;
+
252 
+
253 
+
257 @property (nonatomic, readonly, copy) NSArray<NSDictionary<NSString *, NSString *> *> *systemProfileArray;
+
258 
+
259 @end
+
260 
+
261 NS_ASSUME_NONNULL_END
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
NSTimeInterval updateCheckInterval
A property indicating the current automatic update check interval.
Definition: SPUUpdater.h:163
+
NSDate * lastUpdateCheckDate
Returns the date of last update check.
Definition: SPUUpdater.h:242
+
void checkForUpdatesInBackground()
Checks for updates, but does not display any UI unless an update is found.
+
NSDictionary * httpHeaders
The HTTP headers used when checking for updates.
Definition: SPUUpdater.h:227
+
BOOL sendsSystemProfile
A property indicating whether or not the user's system profile information is sent when checking for ...
Definition: SPUUpdater.h:235
+
NSString * userAgentString
The user agent used when checking for updates.
Definition: SPUUpdater.h:217
+
void checkForUpdates()
Checks for updates, and displays progress while doing so if needed.
+
NSArray< NSDictionary< NSString *, NSString * > * > * systemProfileArray
The system profile information that is sent when checking for updates.
Definition: SPUUpdater.h:257
+
BOOL automaticallyChecksForUpdates
A property indicating whether or not to check for updates automatically.
Definition: SPUUpdater.h:154
+
NSBundle * sparkleBundle
The bundle this class (SPUUpdater) is loaded into.
Definition: SPUUpdater.h:210
+
BOOL automaticallyDownloadsUpdates
A property indicating whether or not updates can be automatically downloaded in the background.
Definition: SPUUpdater.h:173
+
BOOL canCheckForUpdates
A property indicating whether or not updates can be checked by the user.
Definition: SPUUpdater.h:130
+
instancetype NS_UNAVAILABLE()
Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standa...
+
void checkForUpdateInformation()
Begins a "probing" check for updates which will not actually offer to update to that version.
+
NSBundle * hostBundle
The host bundle that is being updated.
Definition: SPUUpdater.h:205
+
BOOL sessionInProgress
A property indicating whether or not an update session is in progress.
Definition: SPUUpdater.h:145
+
void resetUpdateCycle()
Appropriately schedules or cancels the update checking timer according to the preferences for time in...
+
NSURL * feedURL
The URL of the appcast used to download update information.
Definition: SPUUpdater.h:185
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_updater_cycle_8h_source.html b/documentation/api-reference/_s_p_u_updater_cycle_8h_source.html new file mode 100644 index 0000000..dc0d451 --- /dev/null +++ b/documentation/api-reference/_s_p_u_updater_cycle_8h_source.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterCycle.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterCycle.h
+
+
+
1 //
+
2 // SPUUpdaterCycle.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/11/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterCycleDelegate <NSObject>
+
14 
+
15 - (void)resetUpdateCycle;
+
16 
+
17 @end
+
18 
+
19 // This notifies the updater for (re-)starting and canceling update cycles
+
20 // This class is used so that an updater instance isn't kept alive by a pending update cycle
+
21 @interface SPUUpdaterCycle : NSObject
+
22 
+
23 // This delegate is weakly referenced
+
24 - (instancetype)initWithDelegate:(id<SPUUpdaterCycleDelegate>)delegate;
+
25 
+
26 - (void)resetUpdateCycleAfterDelay;
+
27 
+
28 - (void)cancelNextUpdateCycle;
+
29 
+
30 @end
+
31 
+
32 NS_ASSUME_NONNULL_END
+
Definition: SPUUpdaterCycle.h:22
+
Definition: SPUUpdaterCycle.h:13
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_updater_delegate_8h_source.html b/documentation/api-reference/_s_p_u_updater_delegate_8h_source.html new file mode 100644 index 0000000..793b9cf --- /dev/null +++ b/documentation/api-reference/_s_p_u_updater_delegate_8h_source.html @@ -0,0 +1,225 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterDelegate.h
+
+
+
1 //
+
2 // SPUUpdaterDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 @protocol SUVersionComparison;
+ +
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 // -----------------------------------------------------------------------------
+
25 // SUUpdater Notifications for events that might be interesting to more than just the delegate
+
26 // The updater will be the notification object
+
27 // -----------------------------------------------------------------------------
+
28 SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification;
+
29 SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification;
+
30 SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification;
+
31 SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification;
+
32 #define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification;
+
33 #define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification;
+
34 
+
35 // Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo
+
36 SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey;
+
37 // Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo
+
38 SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey;
+
39 
+
40 // -----------------------------------------------------------------------------
+
41 // System Profile Keys
+
42 // -----------------------------------------------------------------------------
+
43 
+
44 SU_EXPORT extern NSString *const SUSystemProfilerApplicationNameKey;
+
45 SU_EXPORT extern NSString *const SUSystemProfilerApplicationVersionKey;
+
46 SU_EXPORT extern NSString *const SUSystemProfilerCPU64bitKey;
+
47 SU_EXPORT extern NSString *const SUSystemProfilerCPUCountKey;
+
48 SU_EXPORT extern NSString *const SUSystemProfilerCPUFrequencyKey;
+
49 SU_EXPORT extern NSString *const SUSystemProfilerCPUTypeKey;
+
50 SU_EXPORT extern NSString *const SUSystemProfilerCPUSubtypeKey;
+
51 SU_EXPORT extern NSString *const SUSystemProfilerHardwareModelKey;
+
52 SU_EXPORT extern NSString *const SUSystemProfilerMemoryKey;
+
53 SU_EXPORT extern NSString *const SUSystemProfilerOperatingSystemVersionKey;
+
54 SU_EXPORT extern NSString *const SUSystemProfilerPreferredLanguageKey;
+
55 
+
56 // -----------------------------------------------------------------------------
+
57 // SPUUpdater Delegate:
+
58 // -----------------------------------------------------------------------------
+
59 
+
60 typedef NS_ENUM(NSInteger, SPUUpdateCheck)
+
61 {
+
62  SPUUpdateCheckUserInitiated = 0,
+
63  SPUUpdateCheckBackgroundScheduled = 1
+
64 };
+
65 
+
69 @protocol SPUUpdaterDelegate <NSObject>
+
70 @optional
+
71 
+
81 - (void)updater:(SPUUpdater *)updater willScheduleUpdateCheckAfterDelay:(NSTimeInterval)delay;
+
82 
+
90 - (void)updaterWillIdleSchedulingUpdates:(SPUUpdater *)updater;
+
91 
+
100 - (BOOL)updaterMayCheckForUpdates:(SPUUpdater *)updater;
+
101 
+
112 #if __has_feature(objc_generics)
+
113 - (NSArray<NSDictionary<NSString *, NSString *> *> *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
114 #else
+
115 - (NSArray *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
116 #endif
+
117 
+
127 #if __has_feature(objc_generics)
+
128 - (NSArray<NSString *> *)allowedSystemProfileKeysForUpdater:(SPUUpdater *)updater;
+
129 #else
+
130 - (NSArray *)allowedSystemProfileKeysForUpdater:(SPUUpdater *)updater;
+
131 #endif
+
132 
+
142 - (nullable NSString *)feedURLStringForUpdater:(SPUUpdater *)updater;
+
143 
+
151 - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SPUUpdater *)updater;
+
152 
+
161 - (void)updater:(SPUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
+
162 
+
185 - (NSSet<NSString *> *)allowedChannelsForUpdater:(SPUUpdater *)updater;
+
186 
+
215 - (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SPUUpdater *)updater;
+
216 
+
223 - (void)updater:(SPUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item;
+
224 
+
237 - (void)updaterDidNotFindUpdate:(SPUUpdater *)updater error:(NSError *)error;
+
238 
+
244 - (void)updaterDidNotFindUpdate:(SPUUpdater *)updater;
+
245 
+
252 - (void)updater:(SPUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item;
+
253 
+
263 - (BOOL)updaterShouldDownloadReleaseNotes:(SPUUpdater *)updater;
+
264 
+
272 - (void)updater:(SPUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request;
+
273 
+
280 - (void)updater:(SPUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item;
+
281 
+
289 - (void)updater:(SPUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error;
+
290 
+
296 - (void)userDidCancelDownload:(SPUUpdater *)updater;
+
297 
+
304 - (void)updater:(SPUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item;
+
305 
+
312 - (void)updater:(SPUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item;
+
313 
+
320 - (void)updater:(SPUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item;
+
321 
+
336 - (BOOL)updater:(SPUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvokingBlock:(void (^)(void))installHandler;
+
337 
+
347 - (BOOL)updaterShouldRelaunchApplication:(SPUUpdater *)updater;
+
348 
+
354 - (void)updaterWillRelaunchApplication:(SPUUpdater *)updater;
+
355 
+
370 - (nullable id<SUVersionComparison>)versionComparatorForUpdater:(SPUUpdater *)updater;
+
371 
+
389 - (BOOL)updater:(SPUUpdater *)updater shouldAllowInstallerInteractionForUpdateCheck:(SPUUpdateCheck)updateCheck;
+
390 
+
399 - (nullable NSString *)decryptionPasswordForUpdater:(SPUUpdater *)updater;
+
400 
+
413 - (BOOL)updater:(SPUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))immediateInstallHandler;
+
414 
+
421 - (void)updater:(SPUUpdater *)updater didAbortWithError:(NSError *)error;
+
422 
+
423 @end
+
424 
+
425 NS_ASSUME_NONNULL_END
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_updater_settings_8h_source.html b/documentation/api-reference/_s_p_u_updater_settings_8h_source.html new file mode 100644 index 0000000..2a13e77 --- /dev/null +++ b/documentation/api-reference/_s_p_u_updater_settings_8h_source.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterSettings.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterSettings.h
+
+
+
1 //
+
2 // SPUUpdaterSettings.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/27/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
27 SU_EXPORT @interface SPUUpdaterSettings : NSObject
+
28 
+
29 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle;
+
30 
+
34 @property (readonly, nonatomic) BOOL automaticallyChecksForUpdates;
+
35 
+
39 @property (readonly, nonatomic) NSTimeInterval updateCheckInterval;
+
40 
+
44 @property (readonly, nonatomic) BOOL allowsAutomaticUpdates;
+
45 
+
52 @property (readonly, nonatomic) BOOL automaticallyDownloadsUpdates;
+
53 
+
57 @property (readonly, nonatomic) BOOL sendsSystemProfile;
+
58 
+
59 @end
+
60 
+
61 NS_ASSUME_NONNULL_END
+
This class can be used for reading certain updater settings.
Definition: SPUUpdaterSettings.h:28
+
BOOL automaticallyChecksForUpdates
Indicates whether or not automatic update checks are enabled.
Definition: SPUUpdaterSettings.h:34
+
BOOL sendsSystemProfile
Indicates whether or not anonymous system profile information is sent when checking for updates.
Definition: SPUUpdaterSettings.h:57
+
BOOL allowsAutomaticUpdates
Indicates whether or not automatically downloading updates is allowed to be turned on by the user.
Definition: SPUUpdaterSettings.h:44
+
BOOL automaticallyDownloadsUpdates
Indicates whether or not automatically downloading updates is enabled by the user or developer.
Definition: SPUUpdaterSettings.h:52
+
NSTimeInterval updateCheckInterval
The regular update check interval.
Definition: SPUUpdaterSettings.h:39
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_updater_timer_8h_source.html b/documentation/api-reference/_s_p_u_updater_timer_8h_source.html new file mode 100644 index 0000000..befd956 --- /dev/null +++ b/documentation/api-reference/_s_p_u_updater_timer_8h_source.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterTimer.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterTimer.h
+
+
+
1 //
+
2 // SPUUpdaterTimer.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterTimerDelegate <NSObject>
+
14 
+
15 - (void)updaterTimerDidFire;
+
16 
+
17 @end
+
18 
+
19 // This notifies the updater for scheduled update checks
+
20 // This class is used so that an updater instance isn't kept alive by a scheduled update check
+
21 @interface SPUUpdaterTimer : NSObject
+
22 
+
23 - (instancetype)initWithDelegate:(id<SPUUpdaterTimerDelegate>)delegate;
+
24 
+
25 - (void)startAndFireAfterDelay:(NSTimeInterval)delay;
+
26 
+
27 - (void)invalidate;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
Definition: SPUUpdaterTimer.h:22
+
Definition: SPUUpdaterTimer.h:13
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_user_driver_8h_source.html b/documentation/api-reference/_s_p_u_user_driver_8h_source.html new file mode 100644 index 0000000..24b4e38 --- /dev/null +++ b/documentation/api-reference/_s_p_u_user_driver_8h_source.html @@ -0,0 +1,173 @@ + + + + + + + +Sparkle: Sparkle/SPUUserDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserDriver.h
+
+
+
1 //
+
2 // SPUUserDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #import <Sparkle/SPUUserUpdateState.h>
+
19 #import <Sparkle/SUExport.h>
+
20 
+
21 NS_ASSUME_NONNULL_BEGIN
+
22 
+ +
24 
+
33 SU_EXPORT @protocol SPUUserDriver <NSObject>
+
34 
+
44 - (void)showUpdatePermissionRequest:(SPUUpdatePermissionRequest *)request reply:(void (^)(SUUpdatePermissionResponse *))reply;
+
45 
+
53 - (void)showUserInitiatedUpdateCheckWithCancellation:(void (^)(void))cancellation;
+
54 
+
88 - (void)showUpdateFoundWithAppcastItem:(SUAppcastItem *)appcastItem state:(SPUUserUpdateState *)state reply:(void (^)(SPUUserUpdateChoice))reply;
+
89 
+
99 - (void)showUpdateReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData;
+
100 
+
110 - (void)showUpdateReleaseNotesFailedToDownloadWithError:(NSError *)error;
+
111 
+
129 - (void)showUpdateNotFoundWithError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement;
+
130 
+
142 - (void)showUpdaterError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement;
+
143 
+
151 - (void)showDownloadInitiatedWithCancellation:(void (^)(void))cancellation;
+
152 
+
160 - (void)showDownloadDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
161 
+
168 - (void)showDownloadDidReceiveDataOfLength:(uint64_t)length;
+
169 
+ +
179 
+
189 - (void)showExtractionReceivedProgress:(double)progress;
+
190 
+
198 - (void)showInstallingUpdate;
+
199 
+
215 - (void)showReadyToInstallAndRelaunch:(void (^)(SPUUserUpdateChoice))reply;
+
216 
+ +
229 
+
244 - (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched acknowledgement:(void (^)(void))acknowledgement;
+
245 
+
252 - (void)showUpdateInFocus;
+
253 
+ +
262 
+
263 /*
+
264  * Below are deprecated methods that have been replaced by better alternatives.
+
265  * The deprecated methods will be used if the alternatives have not been implemented yet.
+
266  * In the future support for using these deprecated methods may be removed however.
+
267  */
+
268 @optional
+
269 
+
270 // Clients should move to non-deprecated methods
+
271 // Deprecated methods are only (temporarily) kept around for compatibility reasons
+
272 
+
273 - (void)showUpdateNotFoundWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateNotFoundWithError:acknowledgement: instead");
+
274 
+
275 - (void)showUpdateInstallationDidFinishWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead");
+
276 
+
277 - (void)dismissUserInitiatedUpdateCheck __deprecated_msg("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.");;
+
278 
+
279 @end
+
280 
+
281 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
Definition: SPUUserUpdateState.h:38
+
Definition: SUAppcastItem.h:36
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
void showDownloadDidStartExtractingUpdate()
Show the user that the update finished downloading and started extracting.
+
void showSendingTerminationSignal()
Show or dismiss progress while a termination signal is being sent to the application from Sparkle's i...
+
void dismissUpdateInstallation()
Dismiss the current update installation.
+
void showInstallingUpdate()
Show the user that the update is installing.
+
void showUpdateInFocus()
Show the user the current presented update or its progress in utmost focus.
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_user_initiated_update_driver_8h_source.html b/documentation/api-reference/_s_p_u_user_initiated_update_driver_8h_source.html new file mode 100644 index 0000000..81a43d9 --- /dev/null +++ b/documentation/api-reference/_s_p_u_user_initiated_update_driver_8h_source.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: Sparkle/SPUUserInitiatedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserInitiatedUpdateDriver.h
+
+
+
1 //
+
2 // SPUUserInitiatedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+ +
16 
+ +
18 
+
19 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUUserInitiatedUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_user_update_state_09_private_8h_source.html b/documentation/api-reference/_s_p_u_user_update_state_09_private_8h_source.html new file mode 100644 index 0000000..3f2120d --- /dev/null +++ b/documentation/api-reference/_s_p_u_user_update_state_09_private_8h_source.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Sparkle/SPUUserUpdateState+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserUpdateState+Private.h
+
+
+
1 //
+
2 // SPUUserUpdateState+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/9/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUUserUpdateState_Private_h
+
10 #define SPUUserUpdateState_Private_h
+
11 
+
12 #import "SPUUserUpdateState.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+ +
17 
+
18 - (instancetype)initWithStage:(SPUUserUpdateStage)stage userInitiated:(BOOL)userInitiated;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif /* SPUUserUpdateState_Private_h */
+
Definition: SPUUserUpdateState+Private.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_user_update_state_8h_source.html b/documentation/api-reference/_s_p_u_user_update_state_8h_source.html new file mode 100644 index 0000000..83695ab --- /dev/null +++ b/documentation/api-reference/_s_p_u_user_update_state_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SPUUserUpdateState.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserUpdateState.h
+
+
+
1 //
+
2 // SPUUserUpdateState.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/29/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUUserUpdateState_h
+
10 #define SPUUserUpdateState_h
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #import <Sparkle/SUExport.h>
+
22 
+
23 NS_ASSUME_NONNULL_BEGIN
+
24 
+
25 typedef NS_ENUM(NSInteger, SPUUserUpdateChoice) {
+
26  SPUUserUpdateChoiceSkip,
+
27  SPUUserUpdateChoiceInstall,
+
28  SPUUserUpdateChoiceDismiss,
+
29 };
+
30 
+
31 typedef NS_ENUM(NSInteger, SPUUserUpdateStage) {
+
32  SPUUserUpdateStageNotDownloaded,
+
33  SPUUserUpdateStageDownloaded,
+
34  SPUUserUpdateStageInstalling
+
35 };
+
36 
+
37 SU_EXPORT @interface SPUUserUpdateState : NSObject
+
38 
+
39 - (instancetype)init NS_UNAVAILABLE;
+
40 
+
41 @property (nonatomic, readonly) SPUUserUpdateStage stage;
+
42 @property (nonatomic, readonly) BOOL userInitiated;
+
43 
+
44 @end
+
45 
+
46 NS_ASSUME_NONNULL_END
+
47 
+
48 #endif /* SPUUserUpdateState_h */
+
Definition: SPUUserUpdateState.h:38
+
+ + + + diff --git a/documentation/api-reference/_s_p_u_x_p_c_service_info_8h_source.html b/documentation/api-reference/_s_p_u_x_p_c_service_info_8h_source.html new file mode 100644 index 0000000..93e252e --- /dev/null +++ b/documentation/api-reference/_s_p_u_x_p_c_service_info_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SPUXPCServiceInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUXPCServiceInfo.h
+
+
+
1 //
+
2 // SPUXPCServiceInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 BOOL SPUXPCServiceExists(NSString *bundleName);
+
14 
+
15 BOOL SPUXPCValidateServiceIfBundleExists(NSString *bundleName, NSBundle *sparkleBundle, NSError * __autoreleasing *error);
+
16 
+
17 NSBundle * _Nullable SPUXPCServiceBundle(NSString *bundleName);
+
18 
+
19 NS_ASSUME_NONNULL_END
+
+ + + + diff --git a/documentation/api-reference/_s_u_appcast_09_private_8h_source.html b/documentation/api-reference/_s_u_appcast_09_private_8h_source.html new file mode 100644 index 0000000..4817919 --- /dev/null +++ b/documentation/api-reference/_s_u_appcast_09_private_8h_source.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: Sparkle/SUAppcast+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcast+Private.h
+
+
+
1 //
+
2 // SUAppcast+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/30/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 NS_ASSUME_NONNULL_BEGIN
+
19 
+ +
21 
+ +
23 
+
24 - (nullable instancetype)initWithXMLData:(NSData *)xmlData relativeToURL:(NSURL * _Nullable)relativeURL stateResolver:(SPUAppcastItemStateResolver *)stateResolver error:(NSError * __autoreleasing *)error;
+
25 
+
26 - (SUAppcast *)copyByFilteringItems:(BOOL (^)(SUAppcastItem *))filterBlock;
+
27 
+
28 @end
+
29 
+
30 NS_ASSUME_NONNULL_END
+
Definition: SUAppcast+Private.h:22
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_u_appcast_8h_source.html b/documentation/api-reference/_s_u_appcast_8h_source.html new file mode 100644 index 0000000..9f2238c --- /dev/null +++ b/documentation/api-reference/_s_u_appcast_8h_source.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: Sparkle/SUAppcast.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcast.h
+
+
+
1 //
+
2 // SUAppcast.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAPPCAST_H
+
10 #define SUAPPCAST_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 #import <Sparkle/SUExport.h>
+
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 @class SUAppcastItem;
+
25 SU_EXPORT @interface SUAppcast : NSObject
+
26 
+
27 @property (readonly, copy) NSArray<SUAppcastItem *> *items;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
32 
+
33 #endif
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_u_appcast_driver_8h_source.html b/documentation/api-reference/_s_u_appcast_driver_8h_source.html new file mode 100644 index 0000000..d269f85 --- /dev/null +++ b/documentation/api-reference/_s_u_appcast_driver_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastDriver.h
+
+
+
1 //
+
2 // SUAppcastDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 @protocol SPUUpdaterDelegate;
+
15 
+
16 @protocol SUAppcastDriverDelegate <NSObject>
+
17 
+
18 - (void)didFailToFetchAppcastWithError:(NSError *)error;
+
19 - (void)didFinishLoadingAppcast:(SUAppcast *)appcast;
+
20 - (void)didFindValidUpdateWithAppcastItem:(SUAppcastItem *)appcastItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem;
+
21 - (void)didNotFindUpdateWithLatestAppcastItem:(nullable SUAppcastItem *)latestAppcastItem hostToLatestAppcastItemComparisonResult:(NSComparisonResult)hostToLatestAppcastItemComparisonResult background:(BOOL)background;
+
22 
+
23 @end
+
24 
+
25 @interface SUAppcastDriver : NSObject
+
26 
+
27 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(nullable id <SUAppcastDriverDelegate>)delegate;
+
28 
+
29 - (void)loadAppcastFromURL:(NSURL *)appcastURL userAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
30 
+
31 - (void)cleanup:(void (^)(void))completionHandler;
+
32 
+
33 @end
+
34 
+
35 NS_ASSUME_NONNULL_END
+
Definition: SUAppcastDriver.h:26
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
Definition: SUAppcastDriver.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_u_appcast_item_09_private_8h_source.html b/documentation/api-reference/_s_u_appcast_item_09_private_8h_source.html new file mode 100644 index 0000000..155b2d0 --- /dev/null +++ b/documentation/api-reference/_s_u_appcast_item_09_private_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastItem+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastItem+Private.h
+
+
+
1 //
+
2 // SUAppcastItem+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/30/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAppcastItem_Private_h
+
10 #define SUAppcastItem_Private_h
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 NS_ASSUME_NONNULL_BEGIN
+
22 
+
23 // Available in SPUAppcastItemStateResolver.h (a private exposed header)
+ +
25 
+
26 @interface SUAppcastItem (Private) <NSSecureCoding>
+
27 
+
34 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL stateResolver:(SPUAppcastItemStateResolver *)stateResolver failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
39 
+
40 #endif /* SUAppcastItem_Private_h */
+
Definition: SUAppcastItem+Private.h:26
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
+ + + + diff --git a/documentation/api-reference/_s_u_appcast_item_8h_source.html b/documentation/api-reference/_s_u_appcast_item_8h_source.html new file mode 100644 index 0000000..c31ce5d --- /dev/null +++ b/documentation/api-reference/_s_u_appcast_item_8h_source.html @@ -0,0 +1,166 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastItem.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastItem.h
+
+
+
1 //
+
2 // SUAppcastItem.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAPPCASTITEM_H
+
10 #define SUAPPCASTITEM_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TESTS
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
31 @class SUSignatures;
+
32 @class SPUAppcastItemState;
+
33 
+
34 NS_ASSUME_NONNULL_BEGIN
+
35 
+
36 SU_EXPORT @interface SUAppcastItem : NSObject<NSSecureCoding>
+
37 @property (copy, readonly, nullable) NSString *title;
+
38 @property (copy, readonly, nullable) NSString *dateString;
+
39 @property (copy, readonly, nullable) NSDate *date;
+
40 @property (copy, readonly, nullable) NSString *itemDescription;
+
41 @property (strong, readonly, nullable) NSURL *releaseNotesURL;
+
42 @property (strong, readonly, nullable) SUSignatures *signatures;
+
43 @property (copy, readonly, nullable) NSString *minimumSystemVersion;
+
44 @property (copy, readonly, nullable) NSString *maximumSystemVersion;
+
45 @property (strong, readonly, nullable) NSURL *fileURL;
+
46 @property (nonatomic, readonly) uint64_t contentLength;
+
47 @property (copy, readonly) NSString *versionString;
+
48 @property (copy, readonly, nullable) NSString *osString;
+
49 @property (copy, readonly, nullable) NSString *displayVersionString;
+
50 @property (copy, readonly, nullable) NSDictionary *deltaUpdates;
+
51 @property (strong, readonly, nullable) NSURL *infoURL;
+
52 @property (copy, readonly, nullable) NSNumber* phasedRolloutInterval;
+
53 @property (nonatomic, copy, readonly) NSString *installationType;
+
54 @property (copy, readonly, nullable) NSString *minimumAutoupdateVersion;
+
55 @property (nonatomic, readonly, nullable) NSString *channel;
+
56 
+
57 @property (getter=isDeltaUpdate, readonly) BOOL deltaUpdate;
+
58 @property (getter=isCriticalUpdate, readonly) BOOL criticalUpdate;
+
59 @property (getter=isMajorUpgrade, readonly) BOOL majorUpgrade;
+
60 @property (getter=isMacOsUpdate, readonly) BOOL macOsUpdate;
+
61 @property (getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate;
+
62 
+
63 @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
+
64 @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
+
65 
+
66 // Returns the dictionary representing the appcast item; this might be useful later for extensions.
+
67 @property (readonly, copy) NSDictionary *propertiesDictionary;
+
68 
+
69 - (instancetype)init NS_UNAVAILABLE;
+
70 
+
71 + (instancetype)emptyAppcastItem;
+
72 
+
73 // Deprecated initializers
+
74 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
75 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
76 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
77 
+
78 @end
+
79 
+
80 NS_ASSUME_NONNULL_END
+
81 
+
82 #endif
+
Definition: SPUAppcastItemState.h:15
+
Definition: SUAppcastItem.h:36
+
Definition: SUSignatures.h:31
+
+ + + + diff --git a/documentation/api-reference/_s_u_application_info_8h_source.html b/documentation/api-reference/_s_u_application_info_8h_source.html new file mode 100644 index 0000000..38fe751 --- /dev/null +++ b/documentation/api-reference/_s_u_application_info_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SUApplicationInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUApplicationInfo.h
+
+
+
1 //
+
2 // SUApplicationInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost, NSImage, NSApplication;
+
16 
+
17 @interface SUApplicationInfo : NSObject
+
18 
+
19 + (BOOL)isBackgroundApplication:(NSApplication *)application;
+
20 
+
21 + (NSImage *)bestIconForHost:(SUHost *)host;
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
26 
+
27 #endif
+
Definition: SUApplicationInfo.h:18
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_u_bundle_icon_8h_source.html b/documentation/api-reference/_s_u_bundle_icon_8h_source.html new file mode 100644 index 0000000..bae2c59 --- /dev/null +++ b/documentation/api-reference/_s_u_bundle_icon_8h_source.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: Sparkle/SUBundleIcon.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUBundleIcon.h
+
+
+
1 //
+
2 // SUBundleIcon.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @interface SUBundleIcon : NSObject
+
16 
+
17 + (NSURL * _Nullable)iconURLForHost:(SUHost *)host;
+
18 
+
19 @end
+
20 
+
21 NS_ASSUME_NONNULL_END
+
Definition: SUBundleIcon.h:16
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_u_constants_8h_source.html b/documentation/api-reference/_s_u_constants_8h_source.html new file mode 100644 index 0000000..b7b58fe --- /dev/null +++ b/documentation/api-reference/_s_u_constants_8h_source.html @@ -0,0 +1,185 @@ + + + + + + + +Sparkle: Sparkle/SUConstants.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUConstants.h
+
+
+
1 //
+
2 // SUConstants.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/16/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 
+
10 #ifndef SUCONSTANTS_H
+
11 #define SUCONSTANTS_H
+
12 
+
13 #import <Foundation/Foundation.h>
+
14 
+
15 // -----------------------------------------------------------------------------
+
16 // Misc:
+
17 // -----------------------------------------------------------------------------
+
18 
+
19 extern const NSTimeInterval SUDefaultUpdatePermissionPromptInterval;
+
20 extern const NSTimeInterval SUMinimumUpdateCheckInterval;
+
21 extern const NSTimeInterval SUDefaultUpdateCheckInterval;
+
22 extern const uint64_t SULeewayUpdateCheckInterval;
+
23 extern const NSTimeInterval SUImpatientUpdateCheckInterval;
+
24 
+
25 extern NSString *const SUBundleIdentifier;
+
26 
+
27 extern NSString *const SUAppcastAttributeValueMacOS;
+
28 
+
29 // -----------------------------------------------------------------------------
+
30 // Notifications:
+
31 // -----------------------------------------------------------------------------
+
32 
+
33 extern NSString *const SUTechnicalErrorInformationKey;
+
34 
+
35 // -----------------------------------------------------------------------------
+
36 // PList keys::
+
37 // -----------------------------------------------------------------------------
+
38 
+
39 extern NSString *const SUFeedURLKey;
+
40 extern NSString *const SUHasLaunchedBeforeKey;
+
41 extern NSString *const SURelaunchHostBundleKey;
+
42 extern NSString *const SUShowReleaseNotesKey;
+
43 extern NSString *const SUSkippedMinorVersionKey;
+
44 extern NSString *const SUSkippedMajorVersionKey;
+
45 extern NSString *const SUScheduledCheckIntervalKey;
+
46 extern NSString *const SULastCheckTimeKey;
+
47 extern NSString *const SUExpectsDSASignatureKey;
+
48 extern NSString *const SUExpectsEDSignatureKey;
+
49 extern NSString *const SUPublicDSAKeyKey;
+
50 extern NSString *const SUPublicDSAKeyFileKey;
+
51 extern NSString *const SUPublicEDKeyKey;
+
52 extern NSString *const SUAutomaticallyUpdateKey;
+
53 extern NSString *const SUAllowsAutomaticUpdatesKey;
+
54 extern NSString *const SUEnableAutomaticChecksKey;
+
55 extern NSString *const SUEnableSystemProfilingKey;
+
56 extern NSString *const SUSendProfileInfoKey;
+
57 extern NSString *const SUUpdateGroupIdentifierKey;
+
58 extern NSString *const SULastProfileSubmitDateKey;
+
59 extern NSString *const SUPromptUserOnFirstLaunchKey;
+
60 extern NSString *const SUDefaultsDomainKey;
+
61 extern NSString *const SUEnableJavaScriptKey;
+
62 extern NSString *const SUFixedHTMLDisplaySizeKey __attribute__((deprecated("This key is obsolete and has no effect.")));
+
63 extern NSString *const SUAppendVersionNumberKey __attribute__((deprecated("This key is obsolete. See SPARKLE_APPEND_VERSION_NUMBER.")));
+
64 extern NSString *const SUEnableAutomatedDowngradesKey __attribute__((deprecated("This key is obsolete. See SPARKLE_AUTOMATED_DOWNGRADES.")));
+
65 extern NSString *const SUNormalizeInstalledApplicationNameKey __attribute__((deprecated("This key is obsolete. SPARKLE_NORMALIZE_INSTALLED_APPLICATION_NAME.")));
+
66 extern NSString *const SURelaunchToolNameKey __attribute__((deprecated("This key is obsolete. SPARKLE_RELAUNCH_TOOL_NAME.")));
+
67 
+
68 // -----------------------------------------------------------------------------
+
69 // Appcast keys::
+
70 // -----------------------------------------------------------------------------
+
71 
+
72 extern NSString *const SUAppcastAttributeDeltaFrom;
+
73 extern NSString *const SUAppcastAttributeDSASignature;
+
74 extern NSString *const SUAppcastAttributeEDSignature;
+
75 extern NSString *const SUAppcastAttributeShortVersionString;
+
76 extern NSString *const SUAppcastAttributeVersion;
+
77 extern NSString *const SUAppcastAttributeOsType;
+
78 extern NSString *const SUAppcastAttributeInstallationType;
+
79 
+
80 extern NSString *const SUAppcastElementVersion;
+
81 extern NSString *const SUAppcastElementShortVersionString;
+
82 extern NSString *const SUAppcastElementCriticalUpdate;
+
83 extern NSString *const SUAppcastElementDeltas;
+
84 extern NSString *const SUAppcastElementMinimumAutoupdateVersion;
+
85 extern NSString *const SUAppcastElementMinimumSystemVersion;
+
86 extern NSString *const SUAppcastElementMaximumSystemVersion;
+
87 extern NSString *const SUAppcastElementReleaseNotesLink;
+
88 extern NSString *const SUAppcastElementTags;
+
89 extern NSString *const SUAppcastElementPhasedRolloutInterval;
+
90 extern NSString *const SUAppcastElementInformationalUpdate;
+
91 extern NSString *const SUAppcastElementChannel;
+
92 
+
93 extern NSString *const SURSSAttributeURL;
+
94 extern NSString *const SURSSAttributeLength;
+
95 
+
96 extern NSString *const SURSSElementDescription;
+
97 extern NSString *const SURSSElementEnclosure;
+
98 extern NSString *const SURSSElementLink;
+
99 extern NSString *const SURSSElementPubDate;
+
100 extern NSString *const SURSSElementTitle;
+
101 
+
102 extern NSString *const SUXMLLanguage;
+
103 
+
104 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_errors_8h_source.html b/documentation/api-reference/_s_u_errors_8h_source.html new file mode 100644 index 0000000..c957dab --- /dev/null +++ b/documentation/api-reference/_s_u_errors_8h_source.html @@ -0,0 +1,171 @@ + + + + + + + +Sparkle: Sparkle/SUErrors.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUErrors.h
+
+
+
1 //
+
2 // SUErrors.h
+
3 // Sparkle
+
4 //
+
5 // Created by C.W. Betts on 10/13/14.
+
6 // Copyright (c) 2014 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUERRORS_H
+
10 #define SUERRORS_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #if defined(BUILDING_SPARKLE_TOOL) || defined(BUILDING_SPARKLE_TESTS)
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
34 SU_EXPORT extern NSString *const SUSparkleErrorDomain;
+
35 
+
36 typedef NS_ENUM(OSStatus, SUError) {
+
37  // Configuration phase errors
+
38  SUNoPublicDSAFoundError = 0001,
+
39  SUInsufficientSigningError = 0002,
+
40  SUInsecureFeedURLError = 0003,
+
41  SUInvalidFeedURLError = 0004,
+
42  SUInvalidUpdaterError = 0005,
+
43  SUInvalidHostBundleIdentifierError = 0006,
+
44  SUInvalidHostVersionError = 0007,
+
45 
+
46  // Appcast phase errors.
+
47  SUAppcastParseError = 1000,
+
48  SUNoUpdateError = 1001,
+
49  SUAppcastError = 1002,
+
50  SURunningFromDiskImageError = 1003,
+
51  SUResumeAppcastError = 1004,
+
52  SURunningTranslocated = 1005,
+
53  SUWebKitTerminationError = 1006,
+
54 
+
55  // Download phase errors.
+
56  SUTemporaryDirectoryError = 2000,
+
57  SUDownloadError = 2001,
+
58 
+
59  // Extraction phase errors.
+
60  SUUnarchivingError = 3000,
+
61  SUSignatureError = 3001,
+
62  SUValidationError = 3002,
+
63 
+
64  // Installation phase errors.
+
65  SUFileCopyFailure = 4000,
+
66  SUAuthenticationFailure = 4001,
+
67  SUMissingUpdateError = 4002,
+
68  SUMissingInstallerToolError = 4003,
+
69  SURelaunchError = 4004,
+
70  SUInstallationError = 4005,
+
71  SUDowngradeError = 4006,
+
72  SUInstallationCanceledError = 4007,
+
73  SUInstallationAuthorizeLaterError = 4008,
+
74  SUNotAllowedInteractionError = 4009,
+
75  SUAgentInvalidationError = 4010,
+
76 
+
77  // API misuse errors.
+
78  SUIncorrectAPIUsageError = 5000
+
79 };
+
80 
+
81 typedef NS_ENUM(OSStatus, SPUNoUpdateFoundReason) {
+
82  SPUNoUpdateFoundReasonUnknown,
+
83  SPUNoUpdateFoundReasonOnLatestVersion,
+
84  SPUNoUpdateFoundReasonOnNewerThanLatestVersion,
+
85  SPUNoUpdateFoundReasonSystemIsTooOld,
+
86  SPUNoUpdateFoundReasonSystemIsTooNew
+
87 };
+
88 
+
89 SU_EXPORT extern NSString *const SPUNoUpdateFoundReasonKey;
+
90 SU_EXPORT extern NSString *const SPULatestAppcastItemFoundKey;
+
91 SU_EXPORT extern NSString *const SPUNoUpdateFoundUserInitiatedKey;
+
92 
+
93 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_export_8h_source.html b/documentation/api-reference/_s_u_export_8h_source.html new file mode 100644 index 0000000..df93771 --- /dev/null +++ b/documentation/api-reference/_s_u_export_8h_source.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Sparkle/SUExport.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUExport.h
+
+
+
1 //
+
2 // SUExport.h
+
3 // Sparkle
+
4 //
+
5 // Created by Jake Petroules on 2014-08-23.
+
6 // Copyright (c) 2014 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUEXPORT_H
+
10 #define SUEXPORT_H
+
11 
+
12 #ifdef BUILDING_SPARKLE
+
13 #define SU_EXPORT __attribute__((visibility("default")))
+
14 #else
+
15 #define SU_EXPORT
+
16 #endif
+
17 
+
18 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_file_manager_8h_source.html b/documentation/api-reference/_s_u_file_manager_8h_source.html new file mode 100644 index 0000000..60a6557 --- /dev/null +++ b/documentation/api-reference/_s_u_file_manager_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: Sparkle/SUFileManager.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUFileManager.h
+
+
+
1 //
+
2 // SUFileManager.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/18/15.
+
6 // Copyright (c) 2015 zgcoder. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SUExport.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
19 @interface SUFileManager : NSObject
+
20 
+
26 - (instancetype)init;
+
27 
+
38 - (NSURL * _Nullable)makeTemporaryDirectoryWithPreferredName:(NSString *)preferredName appropriateForDirectoryURL:(NSURL *)appropriateURL error:(NSError * __autoreleasing *)error;
+
39 
+
48 - (BOOL)makeDirectoryAtURL:(NSURL *)targetURL error:(NSError **)error;
+
49 
+
60 - (BOOL)moveItemAtURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL error:(NSError **)error;
+
61 
+
73 - (BOOL)replaceItemAtURL:(NSURL *)originalItemURL withItemAtURL:(NSURL *)newItemURL error:(NSError **)error __OSX_AVAILABLE(10.13);
+
74 
+
84 - (BOOL)copyItemAtURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL error:(NSError **)error;
+
85 
+
94 - (BOOL)removeItemAtURL:(NSURL *)url error:(NSError **)error;
+
95 
+
110 - (BOOL)changeOwnerAndGroupOfItemAtRootURL:(NSURL *)targetURL toMatchURL:(NSURL *)matchURL error:(NSError **)error;
+
111 
+
123 - (BOOL)updateModificationAndAccessTimeOfItemAtURL:(NSURL *)targetURL error:(NSError **)error;
+
124 
+
137 - (BOOL)updateAccessTimeOfItemAtRootURL:(NSURL *)targetURL error:(NSError * __autoreleasing *)error;
+
138 
+
155 - (BOOL)releaseItemFromQuarantineAtRootURL:(NSURL *)rootURL error:(NSError **)error;
+
156 
+
157 @end
+
158 
+
159 NS_ASSUME_NONNULL_END
+
Definition: SUFileManager.h:20
+
instancetype init()
Definition: SUFileManager.m:56
+
+ + + + diff --git a/documentation/api-reference/_s_u_host_8h_source.html b/documentation/api-reference/_s_u_host_8h_source.html new file mode 100644 index 0000000..573ca1b --- /dev/null +++ b/documentation/api-reference/_s_u_host_8h_source.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: Sparkle/SUHost.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUHost.h
+
+
+
1 //
+
2 // SUHost.h
+
3 // Sparkle
+
4 //
+
5 // Copyright 2008 Andy Matuschak. All rights reserved.
+
6 //
+
7 
+
8 #import <Foundation/Foundation.h>
+
9 
+
10 NS_ASSUME_NONNULL_BEGIN
+
11 
+
12 @class SUPublicKeys;
+
13 
+
14 @interface SUHost : NSObject
+
15 
+
16 @property (strong, readonly) NSBundle *bundle;
+
17 
+
18 - (instancetype)initWithBundle:(NSBundle *)aBundle;
+
19 
+
20 @property (readonly, copy) NSString *bundlePath;
+
21 @property (readonly, copy) NSString *name;
+
22 @property (readonly, copy) NSString *version;
+
23 @property (readonly, nonatomic) BOOL validVersion;
+
24 @property (readonly, copy) NSString *displayVersion;
+
25 @property (readonly) SUPublicKeys *publicKeys;
+
26 
+
27 @property (getter=isRunningOnReadOnlyVolume, readonly) BOOL runningOnReadOnlyVolume;
+
28 @property (getter=isRunningTranslocated, readonly) BOOL runningTranslocated;
+
29 @property (readonly, nonatomic, copy, nullable) NSString *publicDSAKeyFileKey;
+
30 
+
31 - (nullable id)objectForInfoDictionaryKey:(NSString *)key;
+
32 - (BOOL)boolForInfoDictionaryKey:(NSString *)key;
+
33 - (nullable id)objectForUserDefaultsKey:(NSString *)defaultName;
+
34 - (void)setObject:(nullable id)value forUserDefaultsKey:(NSString *)defaultName;
+
35 - (BOOL)boolForUserDefaultsKey:(NSString *)defaultName;
+
36 - (void)setBool:(BOOL)value forUserDefaultsKey:(NSString *)defaultName;
+
37 - (nullable id)objectForKey:(NSString *)key;
+
38 - (BOOL)boolForKey:(NSString *)key;
+
39 @end
+
40 
+
41 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUSignatures.h:44
+
+ + + + diff --git a/documentation/api-reference/_s_u_installer_agent_initiation_protocol_8h_source.html b/documentation/api-reference/_s_u_installer_agent_initiation_protocol_8h_source.html new file mode 100644 index 0000000..6e894f8 --- /dev/null +++ b/documentation/api-reference/_s_u_installer_agent_initiation_protocol_8h_source.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/SUInstallerAgentInitiationProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUInstallerAgentInitiationProtocol.h
+
+
+
1 //
+
2 // SUInstallerAgentInitiationProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+ +
12 
+
13 - (void)connectionDidInitiateWithReply:(void (^)(void))acknowledgement;
+
14 
+
15 - (void)connectionWillInvalidateWithError:(NSError *)error;
+
16 
+
17 @end
+
Definition: SUInstallerAgentInitiationProtocol.h:11
+
+ + + + diff --git a/documentation/api-reference/_s_u_installer_protocol_8h_source.html b/documentation/api-reference/_s_u_installer_protocol_8h_source.html new file mode 100644 index 0000000..03f78b9 --- /dev/null +++ b/documentation/api-reference/_s_u_installer_protocol_8h_source.html @@ -0,0 +1,118 @@ + + + + + + + +Sparkle: Sparkle/SUInstallerProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUInstallerProtocol.h
+
+
+
1 //
+
2 // SUInstallerProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/26/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SUInstallerProtocol <NSObject>
+
14 
+
15 // Any installation work can be done prior to user application being terminated and relaunched
+
16 // Currently this is invoked after the user application is terminated, but this may change in the future.
+
17 // No UI should occur during this stage (i.e, do not show package installer apps, etc..)
+
18 // Should be able to be called from non-main thread
+
19 - (BOOL)performInitialInstallation:(NSError **)error;
+
20 
+
21 // Any installation work after the user application has been terminated. This is where the final installation work can be done.
+
22 // After this stage is done, the user application may be relaunched.
+
23 // Should be able to be called from non-main thread
+
24 - (BOOL)performFinalInstallationProgressBlock:(nullable void(^)(double))cb error:(NSError **)error;
+
25 
+
26 // Indicates whether or not this installer can install the update silently in the background, without hindering the user
+
27 // Should be thread safe
+
28 - (BOOL)canInstallSilently;
+
29 
+
30 // The destination and installation path of the bundle being updated
+
31 // Should be thread safe
+
32 - (NSString *)installationPath;
+
33 
+
34 @end
+
35 
+
36 NS_ASSUME_NONNULL_END
+
Definition: SUInstallerProtocol.h:13
+
+ + + + diff --git a/documentation/api-reference/_s_u_legacy_web_view_8h_source.html b/documentation/api-reference/_s_u_legacy_web_view_8h_source.html new file mode 100644 index 0000000..a607621 --- /dev/null +++ b/documentation/api-reference/_s_u_legacy_web_view_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SULegacyWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULegacyWebView.h
+
+
+
1 //
+
2 // SULegacyWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 #import "SUWebView.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SULegacyWebView : NSObject <SUWebView>
+
17 
+
18 - (instancetype)initWithColorStyleSheetLocation:(NSURL *)colorStyleSheetLocation fontFamily:(NSString *)fontFamily fontPointSize:(int)fontPointSize javaScriptEnabled:(BOOL)javaScriptEnabled;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_localizations_8h_source.html b/documentation/api-reference/_s_u_localizations_8h_source.html new file mode 100644 index 0000000..a168384 --- /dev/null +++ b/documentation/api-reference/_s_u_localizations_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/SULocalizations.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULocalizations.h
+
+
+
1 //
+
2 // SULocalizations.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULocalizations_h
+
10 #define SULocalizations_h
+
11 
+
12 #import "SUConstants.h"
+
13 
+
14 #define SULocalizedString(key, comment) NSLocalizedStringFromTableInBundle(key, @"Sparkle", (NSBundle * _Nonnull)([NSBundle bundleWithIdentifier:SUBundleIdentifier] ? [NSBundle bundleWithIdentifier:SUBundleIdentifier] : [NSBundle mainBundle]), comment)
+
15 
+
16 #endif /* SULocalizations_h */
+
+ + + + diff --git a/documentation/api-reference/_s_u_log_09_n_s_error_8h_source.html b/documentation/api-reference/_s_u_log_09_n_s_error_8h_source.html new file mode 100644 index 0000000..70b735d --- /dev/null +++ b/documentation/api-reference/_s_u_log_09_n_s_error_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/SULog+NSError.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULog+NSError.h
+
+
+
1 //
+
2 // SULog+NSError.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/19/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULog_NSError_h
+
10 #define SULog_NSError_h
+
11 
+
12 #import <Foundation/Foundation.h>
+
13 
+
14 void SULogError(NSError *error);
+
15 
+
16 #endif /* SULog_NSError_h */
+
+ + + + diff --git a/documentation/api-reference/_s_u_log_8h_source.html b/documentation/api-reference/_s_u_log_8h_source.html new file mode 100644 index 0000000..af48715 --- /dev/null +++ b/documentation/api-reference/_s_u_log_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SULog.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULog.h
+
+
+
1 //
+
2 // SULog.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULOG_H
+
10 #define SULOG_H
+
11 
+
12 #include <Foundation/Foundation.h>
+
13 
+
14 typedef NS_ENUM(uint8_t, SULogLevel) {
+
15  // This level is for information that *might* result a failure
+
16  // For now until other levels are added, this may serve as a level for other information as well
+
17  SULogLevelDefault,
+
18  // This level is for errors that occurred
+
19  SULogLevelError
+
20 };
+
21 
+
22 // Logging utlity function that is thread-safe
+
23 // On 10.12 or later this uses os_log
+
24 // Otherwise on older systems this uses ASL
+
25 // For debugging command line tools, you may have to use Console.app or log(1) to view log messages
+
26 // Try to keep log messages as compact/short as possible
+
27 void SULog(SULogLevel level, NSString *format, ...) NS_FORMAT_FUNCTION(2, 3);
+
28 
+
29 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_normalization_8h_source.html b/documentation/api-reference/_s_u_normalization_8h_source.html new file mode 100644 index 0000000..4975425 --- /dev/null +++ b/documentation/api-reference/_s_u_normalization_8h_source.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Sparkle/SUNormalization.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUNormalization.h
+
+
+
1 //
+
2 // SUNormalization.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/26/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SUHost.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 NSString *SUNormalizedInstallationPath(SUHost *host);
+
15 
+
16 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/_s_u_operating_system_8h_source.html b/documentation/api-reference/_s_u_operating_system_8h_source.html new file mode 100644 index 0000000..ad826a6 --- /dev/null +++ b/documentation/api-reference/_s_u_operating_system_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUOperatingSystem.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUOperatingSystem.h
+
+
+
1 //
+
2 // SUOperatingSystem.h
+
3 // Sparkle
+
4 //
+
5 // Copyright © 2015 Sparkle Project. All rights reserved.
+
6 //
+
7 
+
8 #import <Foundation/Foundation.h>
+
9 
+
10 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 101000
+
11 typedef struct {
+
12  NSInteger majorVersion;
+
13  NSInteger minorVersion;
+
14  NSInteger patchVersion;
+ +
16 #endif
+
17 
+
18 @interface SUOperatingSystem : NSObject
+
19 
+
20 + (NSOperatingSystemVersion)operatingSystemVersion;
+
21 + (BOOL)isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion)version;
+
22 + (NSString *)systemVersionString;
+
23 
+
24 @end
+
Definition: SUOperatingSystem.h:19
+
Definition: SUOperatingSystem.h:11
+
+ + + + diff --git a/documentation/api-reference/_s_u_phased_update_group_info_8h_source.html b/documentation/api-reference/_s_u_phased_update_group_info_8h_source.html new file mode 100644 index 0000000..15ddc0b --- /dev/null +++ b/documentation/api-reference/_s_u_phased_update_group_info_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUPhasedUpdateGroupInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUPhasedUpdateGroupInfo.h
+
+
+
1 //
+
2 // SUPhasedUpdateGroupInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 01/24/21.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @interface SUPhasedUpdateGroupInfo : NSObject
+
16 
+
17 + (NSUInteger)updateGroupForHost:(SUHost*)host;
+
18 + (NSNumber*)setNewUpdateGroupIdentifierForHost:(SUHost*)host;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUPhasedUpdateGroupInfo.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_u_signatures_8h_source.html b/documentation/api-reference/_s_u_signatures_8h_source.html new file mode 100644 index 0000000..f9c6533 --- /dev/null +++ b/documentation/api-reference/_s_u_signatures_8h_source.html @@ -0,0 +1,140 @@ + + + + + + + +Sparkle: Sparkle/SUSignatures.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUSignatures.h
+
+
+
1 //
+
2 // SUSignatures.h
+
3 // Sparkle
+
4 //
+
5 // Created by Kornel on 15/09/2018.
+
6 // Copyright © 2018 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 1090
+ +
13 - (id)initWithBase64Encoding:(NSString *)base64String;
+
14 @end
+
15 #endif
+
16 
+
17 NS_ASSUME_NONNULL_BEGIN
+
18 
+
19 typedef NS_ENUM(uint8_t, SUSigningInputStatus) {
+
21  SUSigningInputStatusAbsent = 0,
+
22 
+
24  SUSigningInputStatusInvalid,
+
25 
+
27  SUSigningInputStatusPresent,
+
28  SUSigningInputStatusLastValidCase = SUSigningInputStatusPresent
+
29 };
+
30 
+
31 @interface SUSignatures : NSObject <NSSecureCoding> {
+
32  unsigned char ed25519_signature[64];
+
33 }
+
34 @property (strong, readonly, nullable) NSData *dsaSignature;
+
35 @property (readonly) SUSigningInputStatus dsaSignatureStatus;
+
36 
+
37 @property (readonly, nullable, nonatomic) const unsigned char *ed25519Signature;
+
38 @property (readonly) SUSigningInputStatus ed25519SignatureStatus;
+
39 
+
40 - (instancetype)initWithDsa:(NSString * _Nullable)dsa ed:(NSString * _Nullable)ed;
+
41 @end
+
42 
+
43 
+
44 @interface SUPublicKeys : NSObject {
+
45  unsigned char ed25519_public_key[32];
+
46 }
+
47 @property (strong, readonly, nullable) NSString *dsaPubKey;
+
48 @property (readonly) SUSigningInputStatus dsaPubKeyStatus;
+
49 
+
50 @property (readonly, nullable, nonatomic) const unsigned char *ed25519PubKey;
+
51 @property (readonly) SUSigningInputStatus ed25519PubKeyStatus;
+
52 
+
54 @property (readonly) BOOL hasAnyKeys;
+
55 
+
56 - (instancetype)initWithDsa:(NSString * _Nullable)dsa ed:(NSString * _Nullable)ed;
+
57 
+
58 @end
+
59 
+
60 NS_ASSUME_NONNULL_END
+
Definition: SUSignatures.h:12
+
Definition: SUSignatures.h:44
+
Definition: SUSignatures.h:31
+
+ + + + diff --git a/documentation/api-reference/_s_u_standard_version_comparator_8h_source.html b/documentation/api-reference/_s_u_standard_version_comparator_8h_source.html new file mode 100644 index 0000000..8a78815 --- /dev/null +++ b/documentation/api-reference/_s_u_standard_version_comparator_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SUStandardVersionComparator.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUStandardVersionComparator.h
+
+
+
1 //
+
2 // SUStandardVersionComparator.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/21/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUSTANDARDVERSIONCOMPARATOR_H
+
10 #define SUSTANDARDVERSIONCOMPARATOR_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TOOL
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #import "SUVersionComparisonProtocol.h"
+
27 #pragma clang diagnostic pop
+
28 #else
+
29 #import <Sparkle/SUExport.h>
+
30 #import <Sparkle/SUVersionComparisonProtocol.h>
+
31 #endif
+
32 
+
33 NS_ASSUME_NONNULL_BEGIN
+
34 
+
42 SU_EXPORT @interface SUStandardVersionComparator : NSObject <SUVersionComparison>
+
43 
+
47 - (instancetype)init;
+
48 
+ +
55 
+
61 - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB;
+
62 @end
+
63 
+
64 NS_ASSUME_NONNULL_END
+
65 #endif
+
Sparkle's default version comparator.
Definition: SUStandardVersionComparator.h:42
+
SUStandardVersionComparator * defaultComparator()
Returns a singleton instance of the comparator.
Definition: SUStandardVersionComparator.m:22
+
instancetype init()
Initializes a new instance of the standard version comparator.
Definition: SUStandardVersionComparator.m:17
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_u_status_controller_8h_source.html b/documentation/api-reference/_s_u_status_controller_8h_source.html new file mode 100644 index 0000000..01f96e8 --- /dev/null +++ b/documentation/api-reference/_s_u_status_controller_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: Sparkle/SUStatusController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUStatusController.h
+
+
+
1 //
+
2 // SUStatusController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/14/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #ifndef SUSTATUSCONTROLLER_H
+
12 #define SUSTATUSCONTROLLER_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 
+
16 @class SUHost;
+
17 @interface SUStatusController : NSWindowController
+
18 @property (weak) IBOutlet NSButton *actionButton;
+
19 @property (weak) IBOutlet NSProgressIndicator *progressBar;
+
20 @property (weak) IBOutlet NSTextField *statusTextField;
+
21 
+
22 @property (copy) NSString *statusText;
+
23 @property double progressValue;
+
24 @property (nonatomic) double maxProgressValue;
+
25 @property (getter=isButtonEnabled) BOOL buttonEnabled;
+
26 
+
27 - (instancetype)initWithHost:(SUHost *)host;
+
28 
+
29 // Pass 0 for the max progress value to get an indeterminate progress bar.
+
30 // Pass nil for the status text to not show it.
+
31 - (void)beginActionWithTitle:(NSString *)title maxProgressValue:(double)maxProgressValue statusText:(NSString *)statusText;
+
32 
+
33 // If isDefault is YES, the button's key equivalent will be \r.
+
34 - (void)setButtonTitle:(NSString *)buttonTitle target:(id)target action:(SEL)action isDefault:(BOOL)isDefault;
+
35 
+
36 @end
+
37 
+
38 #endif
+
39 
+
40 #endif
+
Definition: SUHost.h:15
+
Definition: SUStatusController.h:18
+
+ + + + diff --git a/documentation/api-reference/_s_u_system_profiler_8h_source.html b/documentation/api-reference/_s_u_system_profiler_8h_source.html new file mode 100644 index 0000000..c3969b5 --- /dev/null +++ b/documentation/api-reference/_s_u_system_profiler_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUSystemProfiler.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUSystemProfiler.h
+
+
+
1 //
+
2 // SUSystemProfiler.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/22/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUSYSTEMPROFILER_H
+
10 #define SUSYSTEMPROFILER_H
+
11 
+
12 #import <Foundation/Foundation.h>
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @class SUHost;
+
17 @interface SUSystemProfiler : NSObject
+
18 
+
19 + (NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfileArrayForHost:(SUHost *)host;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
24 #endif
+
Definition: SUHost.h:15
+
Definition: SUSystemProfiler.h:18
+
+ + + + diff --git a/documentation/api-reference/_s_u_touch_bar_button_group_8h_source.html b/documentation/api-reference/_s_u_touch_bar_button_group_8h_source.html new file mode 100644 index 0000000..9ef0b84 --- /dev/null +++ b/documentation/api-reference/_s_u_touch_bar_button_group_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUTouchBarButtonGroup.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUTouchBarButtonGroup.h
+
+
+
1 //
+
2 // SUTouchBarButtonGroup.h
+
3 // Sparkle
+
4 //
+
5 // Created by Yuxin Wang on 05/01/2017.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #import <Cocoa/Cocoa.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @interface SUTouchBarButtonGroup : NSViewController
+
16 
+
17 @property (nonatomic, readonly, copy) NSArray<NSButton *> *buttons;
+
18 
+
19 - (instancetype)initByReferencingButtons:(NSArray<NSButton *> *)buttons;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
24 
+
25 #endif
+
Definition: SUTouchBarButtonGroup.h:16
+
+ + + + diff --git a/documentation/api-reference/_s_u_touch_bar_forward_declarations_8h_source.html b/documentation/api-reference/_s_u_touch_bar_forward_declarations_8h_source.html new file mode 100644 index 0000000..66c698b --- /dev/null +++ b/documentation/api-reference/_s_u_touch_bar_forward_declarations_8h_source.html @@ -0,0 +1,176 @@ + + + + + + + +Sparkle: Sparkle/SUTouchBarForwardDeclarations.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUTouchBarForwardDeclarations.h
+
+
+
1 //
+
2 // SUTouchBarForwardDeclarations.h
+
3 // Sparkle
+
4 //
+
5 // Created by Yuxin Wang on 18/01/2017.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 // Once Sparkle no longer supports OSX 10.12.0, this file can be deleted.
+
12 
+
13 #import <Foundation/Foundation.h>
+
14 
+
15 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 101201
+
16 
+
17 NS_ASSUME_NONNULL_BEGIN
+
18 
+
19 @class NSTouchBar;
+
20 @class NSTouchBarItem;
+
21 @class NSCustomTouchBarItem;
+
22 
+
23 typedef NSString * NSTouchBarItemIdentifier;
+
24 typedef NSString * NSTouchBarCustomizationIdentifier;
+
25 
+
26 @protocol NSTouchBarDelegate;
+
27 
+
28 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
29 @interface NSTouchBar : NSObject <NSCoding>
+
30 
+
31 - (instancetype)init NS_DESIGNATED_INITIALIZER;
+
32 - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_DESIGNATED_INITIALIZER;
+
33 
+
34 @property (copy, nullable) NSTouchBarCustomizationIdentifier customizationIdentifier;
+
35 @property (copy) NSArray<NSTouchBarItemIdentifier> *customizationAllowedItemIdentifiers;
+
36 @property (copy) NSArray<NSTouchBarItemIdentifier> *customizationRequiredItemIdentifiers;
+
37 @property (copy) NSArray<NSTouchBarItemIdentifier> *defaultItemIdentifiers;
+
38 @property (copy, readonly) NSArray<NSTouchBarItemIdentifier> *itemIdentifiers;
+
39 @property (copy, nullable) NSTouchBarItemIdentifier principalItemIdentifier;
+
40 @property (copy, nullable) NSTouchBarItemIdentifier escapeKeyReplacementItemIdentifier;
+
41 @property (copy) NSSet<NSTouchBarItem *> *templateItems;
+
42 @property (nullable, weak) id <NSTouchBarDelegate> delegate;
+
43 - (nullable __kindof NSTouchBarItem *)itemForIdentifier:(NSTouchBarItemIdentifier)identifier;
+
44 @property (readonly, getter=isVisible) BOOL visible;
+
45 
+
46 @end
+
47 
+
48 @protocol NSTouchBarDelegate<NSObject>
+
49 @optional
+
50 - (nullable NSTouchBarItem*)touchBar:(NSTouchBar*)touchBar
+
51  makeItemForIdentifier:(NSTouchBarItemIdentifier)identifier;
+
52 @end
+
53 
+
54 typedef float NSTouchBarItemPriority;
+
55 
+
56 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
57 @interface NSTouchBarItem : NSObject <NSCoding>
+
58 
+
59 - (instancetype)initWithIdentifier:(NSTouchBarItemIdentifier)identifier NS_DESIGNATED_INITIALIZER;
+
60 - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
+
61 - (instancetype)init NS_UNAVAILABLE;
+
62 
+
63 @property (readonly, copy) NSTouchBarItemIdentifier identifier;
+
64 @property NSTouchBarItemPriority visibilityPriority;
+
65 @property (readonly, nullable) NSView *view;
+
66 @property (readonly, nullable) NSViewController *viewController;
+
67 @property (readonly, copy) NSString *customizationLabel;
+
68 @property (readonly, getter=isVisible) BOOL visible;
+
69 
+
70 @end
+
71 
+
72 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
73 @interface NSCustomTouchBarItem : NSTouchBarItem
+
74 
+
75 @property (readwrite, strong) __kindof NSView *view;
+
76 @property (readwrite, strong, nullable) __kindof NSViewController *viewController;
+
77 @property (readwrite, copy, null_resettable) NSString *customizationLabel;
+
78 
+
79 @end
+
80 
+
81 NS_ASSUME_NONNULL_END
+
82 
+
83 #else
+
84 
+
85 // When compiling against the 10.12.1 SDK or later, just provide forward
+
86 // declarations to suppress the partial availability warnings.
+
87 
+
88 @class NSTouchBar;
+
89 @protocol NSTouchBarDelegate;
+
90 @class NSTouchBarItem;
+
91 @class NSCustomTouchBarItem;
+
92 
+
93 #endif
+
94 
+
95 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_update_alert_8h_source.html b/documentation/api-reference/_s_u_update_alert_8h_source.html new file mode 100644 index 0000000..2349b22 --- /dev/null +++ b/documentation/api-reference/_s_u_update_alert_8h_source.html @@ -0,0 +1,126 @@ + + + + + + + +Sparkle: Sparkle/SUUpdateAlert.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdateAlert.h
+
+
+
1 //
+
2 // SUUpdateAlert.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #ifndef SUUPDATEALERT_H
+
12 #define SUUPDATEALERT_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 #import "SUVersionDisplayProtocol.h"
+
16 #import "SPUUserUpdateState.h"
+
17 
+
18 @protocol SUUpdateAlertDelegate;
+
19 
+ +
21 @interface SUUpdateAlert : NSWindowController
+
22 
+
23 @property (nonatomic, weak, readonly) id <SUVersionDisplay> versionDisplayer;
+
24 
+
25 - (instancetype)initWithAppcastItem:(SUAppcastItem *)item state:(SPUUserUpdateState *)state host:(SUHost *)aHost versionDisplayer:(id <SUVersionDisplay>)aVersionDisplayer completionBlock:(void (^)(SPUUserUpdateChoice))block;
+
26 
+
27 - (void)showUpdateReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData;
+
28 - (void)showReleaseNotesFailedToDownload;
+
29 
+
30 - (IBAction)installUpdate:sender;
+
31 - (IBAction)skipThisVersion:sender;
+
32 - (IBAction)remindMeLater:sender;
+
33 
+
34 - (void)setInstallButtonFocus:(BOOL)focus;
+
35 
+
36 @end
+
37 
+
38 #endif
+
39 
+
40 #endif
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
Definition: SPUUserUpdateState.h:38
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/_s_u_update_permission_prompt_8h_source.html b/documentation/api-reference/_s_u_update_permission_prompt_8h_source.html new file mode 100644 index 0000000..4e530a0 --- /dev/null +++ b/documentation/api-reference/_s_u_update_permission_prompt_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SUUpdatePermissionPrompt.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdatePermissionPrompt.h
+
+
+
1 //
+
2 // SUUpdatePermissionPrompt.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/24/08.
+
6 // Copyright 2008 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #ifndef SUUPDATEPERMISSIONPROMPT_H
+
12 #define SUUPDATEPERMISSIONPROMPT_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 
+ +
17 
+
18 @interface SUUpdatePermissionPrompt : NSWindowController
+
19 
+
20 - (instancetype)initPromptWithHost:(SUHost *)theHost request:(SPUUpdatePermissionRequest *)request reply:(void (^)(SUUpdatePermissionResponse *))reply;
+
21 
+
22 @end
+
23 
+
24 #endif
+
25 
+
26 #endif
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
Definition: SUHost.h:15
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
+ + + + diff --git a/documentation/api-reference/_s_u_update_permission_response_8h_source.html b/documentation/api-reference/_s_u_update_permission_response_8h_source.html new file mode 100644 index 0000000..c836c4b --- /dev/null +++ b/documentation/api-reference/_s_u_update_permission_response_8h_source.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: Sparkle/SUUpdatePermissionResponse.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdatePermissionResponse.h
+
+
+
1 //
+
2 // SUUpdatePermissionResponse.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/8/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
22 SU_EXPORT @interface SUUpdatePermissionResponse : NSObject<NSSecureCoding>
+
23 
+
30 - (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks sendSystemProfile:(BOOL)sendSystemProfile;
+
31 
+
32 /*
+
33  Use -initWithAutomaticUpdateChecks:sendSystemProfile: instead.
+
34  */
+
35 - (instancetype)init NS_UNAVAILABLE;
+
36 
+
40 @property (nonatomic, readonly) BOOL automaticUpdateChecks;
+
41 
+
45 @property (nonatomic, readonly) BOOL sendSystemProfile;
+
46 
+
47 @end
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
BOOL automaticUpdateChecks
A read-only property indicating whether automatic update checks are allowed or not.
Definition: SUUpdatePermissionResponse.h:40
+
BOOL sendSystemProfile
A read-only property indicating if system profile should be sent or not.
Definition: SUUpdatePermissionResponse.h:45
+
+ + + + diff --git a/documentation/api-reference/_s_u_update_validator_8h_source.html b/documentation/api-reference/_s_u_update_validator_8h_source.html new file mode 100644 index 0000000..d7c66b6 --- /dev/null +++ b/documentation/api-reference/_s_u_update_validator_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: Sparkle/SUUpdateValidator.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdateValidator.h
+
+
+
1 //
+
2 // SUUpdateValidator.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/3/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 @class SUHost;
+
12 @class SUSignatures;
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SUUpdateValidator : NSObject
+
17 
+
18 - (instancetype)initWithDownloadPath:(NSString *)downloadPath signatures:(SUSignatures *)signatures host:(SUHost *)host;
+
19 
+
20 // This is "pre" validation, before the archive has been extracted
+
21 - (BOOL)validateDownloadPathWithError:(NSError **)error;
+
22 
+
23 // This is "post" validation, after an archive has been extracted
+
24 - (BOOL)validateWithUpdateDirectory:(NSString *)updateDirectory error:(NSError **)error;
+
25 
+
26 @end
+
27 
+
28 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUSignatures.h:31
+
Definition: SUUpdateValidator.h:17
+
+ + + + diff --git a/documentation/api-reference/_s_u_updater_8h_source.html b/documentation/api-reference/_s_u_updater_8h_source.html new file mode 100644 index 0000000..ffb9439 --- /dev/null +++ b/documentation/api-reference/_s_u_updater_8h_source.html @@ -0,0 +1,159 @@ + + + + + + + +Sparkle: Sparkle/SUUpdater.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdater.h
+
+
+
1 //
+
2 // SUUpdater.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/4/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUUPDATER_H
+
10 #define SUUPDATER_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 #import <Sparkle/SUExport.h>
+
21 #import <Sparkle/SUVersionComparisonProtocol.h>
+
22 #import <Sparkle/SUVersionDisplayProtocol.h>
+
23 #import <Sparkle/SUUpdaterDelegate.h>
+
24 
+
25 @class SUAppcastItem, SUAppcast, NSMenuItem;
+
26 
+
27 @protocol SUUpdaterDelegate;
+
28 
+
37 __deprecated_msg("Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.")
+
38 SU_EXPORT @interface SUUpdater : NSObject
+
39 
+
40 @property (unsafe_unretained, nonatomic) IBOutlet id<SUUpdaterDelegate> delegate;
+
41 
+
47 + (SUUpdater *)sharedUpdater;
+
48 
+
53 + (SUUpdater *)updaterForBundle:(NSBundle *)bundle;
+
54 
+
60 - (instancetype)initForBundle:(NSBundle *)bundle;
+
61 
+
72 - (IBAction)checkForUpdates:(id)sender;
+
73 
+
77 - (BOOL)validateMenuItem:(NSMenuItem *)menuItem;
+
78 
+
92 - (void)checkForUpdatesInBackground;
+
93 
+
101 @property (nonatomic) BOOL automaticallyChecksForUpdates;
+
102 
+
111 @property (nonatomic) BOOL automaticallyDownloadsUpdates;
+
112 
+
120 @property (nonatomic) NSTimeInterval updateCheckInterval;
+
121 
+
133 - (void)checkForUpdateInformation;
+
134 
+
144 @property (nonatomic, copy) NSURL *feedURL;
+
145 
+
149 @property (readonly, nonatomic) NSBundle *hostBundle;
+
150 
+
154 @property (nonatomic, readonly) NSBundle *sparkleBundle;
+
155 
+
161 @property (nonatomic, copy) NSString *userAgentString;
+
162 
+
168 @property (copy) NSDictionary<NSString *, NSString *> *httpHeaders;
+
169 
+
175 @property (nonatomic) BOOL sendsSystemProfile;
+
176 
+
180 @property (nonatomic, copy) NSString *decryptionPassword;
+
181 
+
187 @property (nonatomic, readonly, copy) NSDate *lastUpdateCheckDate;
+
188 
+
196 - (void)resetUpdateCycle;
+
197 
+
204 @property (nonatomic, readonly) BOOL updateInProgress;
+
205 
+
206 @end
+
207 
+
208 #endif
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_u_updater_delegate_8h_source.html b/documentation/api-reference/_s_u_updater_delegate_8h_source.html new file mode 100644 index 0000000..ca569da --- /dev/null +++ b/documentation/api-reference/_s_u_updater_delegate_8h_source.html @@ -0,0 +1,195 @@ + + + + + + + +Sparkle: Sparkle/SUUpdaterDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdaterDelegate.h
+
+
+
1 //
+
2 // SUUpdaterDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+ +
20 @class SUUpdater, SUAppcast, SUAppcastItem;
+
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 // -----------------------------------------------------------------------------
+
25 // SUUpdater Notifications for events that might be interesting to more than just the delegate
+
26 // The updater will be the notification object
+
27 // -----------------------------------------------------------------------------
+
28 SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification;
+
29 SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification;
+
30 SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification;
+
31 SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification;
+
32 #define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification;
+
33 #define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification;
+
34 
+
35 // Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo
+
36 SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey;
+
37 // Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo
+
38 SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey;
+
39 
+
40 // -----------------------------------------------------------------------------
+
41 // SUUpdater Delegate:
+
42 // -----------------------------------------------------------------------------
+
43 
+
47 __deprecated_msg("Deprecated in Sparkle 2. See SPUUpdaterDelegate instead")
+
48 @protocol SUUpdaterDelegate <NSObject>
+
49 @optional
+
50 
+
58 - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)updater;
+
59 
+
70 - (NSArray<NSDictionary<NSString *, NSString *> *> *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
71 
+
82 - (nullable NSString *)feedURLStringForUpdater:(SUUpdater *)updater;
+
83 
+
91 - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)updater;
+
92 
+
101 - (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
+
102 
+
113 - (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)updater;
+
114 
+
121 - (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item;
+
122 
+
128 - (void)updaterDidNotFindUpdate:(SUUpdater *)updater;
+
129 
+
137 - (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request;
+
138 
+
145 - (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item;
+
146 
+
154 - (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error;
+
155 
+
161 - (void)userDidCancelDownload:(SUUpdater *)updater;
+
162 
+
169 - (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item;
+
170 
+
177 - (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item;
+
178 
+
185 - (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item;
+
186 
+
193 - (void)updater:(SUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item;
+
194 
+
209 - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation;
+
210 
+
224 - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item;
+
225 
+
234 - (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater;
+
235 
+
241 - (void)updaterWillRelaunchApplication:(SUUpdater *)updater;
+
242 
+
248 - (void)updaterDidRelaunchApplication:(SUUpdater *)updater;
+
249 
+
263 - (nullable id<SUVersionComparison>)versionComparatorForUpdater:(SUUpdater *)updater;
+
264 
+
272 - (nullable id <SUVersionDisplay>)versionDisplayerForUpdater:(SUUpdater *)updater;
+
273 
+
283 - (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater;
+
284 
+
291 - (void)updaterWillShowModalAlert:(SUUpdater *)updater;
+
292 
+
299 - (void)updaterDidShowModalAlert:(SUUpdater *)updater;
+
300 
+
311 - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation;
+
312 
+
322 - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))installationBlock;
+
323 
+
332 - (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item __deprecated;
+
333 
+
340 - (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error;
+
341 
+
342 @end
+
343 
+
344 NS_ASSUME_NONNULL_END
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/_s_u_version_comparison_protocol_8h_source.html b/documentation/api-reference/_s_u_version_comparison_protocol_8h_source.html new file mode 100644 index 0000000..bb04655 --- /dev/null +++ b/documentation/api-reference/_s_u_version_comparison_protocol_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SUVersionComparisonProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUVersionComparisonProtocol.h
+
+
+
1 //
+
2 // SUVersionComparisonProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/21/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUVERSIONCOMPARISONPROTOCOL_H
+
10 #define SUVERSIONCOMPARISONPROTOCOL_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TOOL
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
31 NS_ASSUME_NONNULL_BEGIN
+
32 
+ +
37 
+
44 - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD!
+
45 
+
46 @end
+
47 
+
48 NS_ASSUME_NONNULL_END
+
49 #endif
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/_s_u_version_display_protocol_8h_source.html b/documentation/api-reference/_s_u_version_display_protocol_8h_source.html new file mode 100644 index 0000000..d363b15 --- /dev/null +++ b/documentation/api-reference/_s_u_version_display_protocol_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUVersionDisplayProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUVersionDisplayProtocol.h
+
+
+
1 //
+
2 // SUVersionDisplayProtocol.h
+
3 // EyeTV
+
4 //
+
5 // Created by Uli Kusterer on 08.12.09.
+
6 // Copyright 2009 Elgato Systems GmbH. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
22 SU_EXPORT @protocol SUVersionDisplay
+
23 
+
30 - (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB;
+
31 
+
32 @end
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/_s_u_w_k_web_view_8h_source.html b/documentation/api-reference/_s_u_w_k_web_view_8h_source.html new file mode 100644 index 0000000..29c0b2a --- /dev/null +++ b/documentation/api-reference/_s_u_w_k_web_view_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUWKWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWKWebView.h
+
+
+
1 //
+
2 // SUWKWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 #import "SUWebView.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SUWKWebView : NSObject <SUWebView>
+
17 
+
18 - (instancetype)initWithColorStyleSheetLocation:(NSURL *)colorStyleSheetLocation fontFamily:(NSString *)fontFamily fontPointSize:(int)fontPointSize javaScriptEnabled:(BOOL)javaScriptEnabled;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_web_view_8h_source.html b/documentation/api-reference/_s_u_web_view_8h_source.html new file mode 100644 index 0000000..111a574 --- /dev/null +++ b/documentation/api-reference/_s_u_web_view_8h_source.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Sparkle/SUWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWebView.h
+
+
+
1 //
+
2 // SUWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 @class NSView;
+
14 
+
15 NS_ASSUME_NONNULL_BEGIN
+
16 
+
17 @protocol SUWebView <NSObject>
+
18 
+
19 @property (nonatomic, readonly) NSView *view;
+
20 
+
21 - (void)loadHTMLString:(NSString *)htmlString baseURL:(NSURL * _Nullable)baseURL completionHandler:(void (^)(NSError * _Nullable))completionHandler;
+
22 
+
23 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName baseURL:(NSURL *)baseURL completionHandler:(void (^)(NSError * _Nullable))completionHandler;
+
24 
+
25 - (void)stopLoading;
+
26 
+
27 - (void)setDrawsBackground:(BOOL)drawsBackground;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
32 
+
33 #endif
+
+ + + + diff --git a/documentation/api-reference/_s_u_web_view_common_8h_source.html b/documentation/api-reference/_s_u_web_view_common_8h_source.html new file mode 100644 index 0000000..1f888dd --- /dev/null +++ b/documentation/api-reference/_s_u_web_view_common_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SUWebViewCommon.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWebViewCommon.h
+
+
+
1 //
+
2 // SUWebViewCommon.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/31/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 BOOL SUWebViewIsSafeURL(NSURL *url, BOOL *isAboutBlankURL);
+
16 
+
17 NS_ASSUME_NONNULL_END
+
18 
+
19 #endif
+
+ + + + diff --git a/documentation/api-reference/_show_installer_progress_8h_source.html b/documentation/api-reference/_show_installer_progress_8h_source.html new file mode 100644 index 0000000..fbf3846 --- /dev/null +++ b/documentation/api-reference/_show_installer_progress_8h_source.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/ShowInstallerProgress.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ShowInstallerProgress.h
+
+
+
1 //
+
2 // ShowInstallerProgress.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "InstallerProgressDelegate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+ +
15 
+
16 @end
+
17 
+
18 NS_ASSUME_NONNULL_END
+
Definition: ShowInstallerProgress.h:14
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/_sparkle_8h_source.html b/documentation/api-reference/_sparkle_8h_source.html new file mode 100644 index 0000000..2f8df6f --- /dev/null +++ b/documentation/api-reference/_sparkle_8h_source.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: Sparkle/Sparkle.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Sparkle.h
+
+
+
1 //
+
2 // Sparkle.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07)
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPARKLE_H
+
10 #define SPARKLE_H
+
11 
+
12 // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
+
13 // there are name-space collisions) so we can list all of them to start with:
+
14 
+
15 #import <Sparkle/SUExport.h>
+
16 #import <Sparkle/SUAppcast.h>
+
17 #import <Sparkle/SUAppcastItem.h>
+
18 #import <Sparkle/SUStandardVersionComparator.h>
+
19 #import <Sparkle/SPUUpdater.h>
+
20 #import <Sparkle/SPUUpdaterDelegate.h>
+
21 #import <Sparkle/SPUUpdaterSettings.h>
+
22 #import <Sparkle/SUVersionComparisonProtocol.h>
+
23 #import <Sparkle/SUVersionDisplayProtocol.h>
+
24 #import <Sparkle/SUErrors.h>
+
25 #import <Sparkle/SPUUpdatePermissionRequest.h>
+
26 #import <Sparkle/SUUpdatePermissionResponse.h>
+
27 #import <Sparkle/SPUUserDriver.h>
+
28 #import <Sparkle/SPUDownloadData.h>
+
29 
+
30 // UI bits
+
31 #import <Sparkle/SPUStandardUpdaterController.h>
+
32 #import <Sparkle/SPUStandardUserDriver.h>
+
33 #import <Sparkle/SPUStandardUserDriverDelegate.h>
+
34 
+
35 // Deprecated bits
+
36 #import <Sparkle/SUUpdater.h>
+
37 #import <Sparkle/SUUpdaterDelegate.h>
+
38 
+
39 #endif
+
+ + + + diff --git a/documentation/api-reference/_termination_listener_8h_source.html b/documentation/api-reference/_termination_listener_8h_source.html new file mode 100644 index 0000000..f21a972 --- /dev/null +++ b/documentation/api-reference/_termination_listener_8h_source.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Sparkle/Autoupdate/TerminationListener.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
TerminationListener.h
+
+
+
1 //
+
2 // TerminationListener.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/7/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @interface TerminationListener : NSObject
+
14 
+
15 - (instancetype)initWithProcessIdentifier:(NSNumber * _Nullable)processIdentifier;
+
16 
+
17 @property (nonatomic, readonly) BOOL terminated;
+
18 
+
19 // If the process identifier provided was nil, then the completion block will invoke immediately with a YES success
+
20 - (void)startListeningWithCompletion:(void (^)(BOOL success))completionBlock;
+
21 
+
22 @end
+
23 
+
24 NS_ASSUME_NONNULL_END
+
Definition: TerminationListener.h:14
+
+ + + + diff --git a/documentation/api-reference/annotated.html b/documentation/api-reference/annotated.html new file mode 100644 index 0000000..8444960 --- /dev/null +++ b/documentation/api-reference/annotated.html @@ -0,0 +1,180 @@ + + + + + + + +Sparkle: Class List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 CInstallerProgressAppController
 CInstallerProgressAppController()
 C<InstallerProgressDelegate>
 CNSButton(SierraSDK)
 CNSData(SUSignatureVerifier)
 CNSObject(PrivateDelegateMethods)
 CNSOperatingSystemVersion
 CNSProcessInfo()
 CShowInstallerProgress
 CShowInstallerProgress()
 CSPUAppcastItemState
 CSPUAppcastItemState()
 CSPUAppcastItemStateResolverPrivate exposed class used to resolve Appcast Item properties that rely on external factors such as a host
 CSPUAutomaticUpdateDriver
 CSPUAutomaticUpdateDriver()
 CSPUBasicUpdateDriver
 CSPUBasicUpdateDriver()
 C<SPUBasicUpdateDriverDelegate>
 CSPUCoreBasedUpdateDriver
 CSPUCoreBasedUpdateDriver()
 C<SPUCoreBasedUpdateDriverDelegate>
 CSPUDownloadDataA class for containing downloaded data along with some information about it
 CSPUDownloadDriver
 CSPUDownloadDriver()
 C<SPUDownloadDriverDelegate>
 CSPUDownloadedUpdate
 CSPUInformationalUpdate
 C<SPUInstallerAgentProtocol>
 CSPUInstallerDriver
 CSPUInstallerDriver()
 C<SPUInstallerDriverDelegate>
 CSPULocalCacheDirectory
 CSPUProbeInstallStatus
 CSPUProbingUpdateDriver
 CSPUProbingUpdateDriver()
 CSPUReleaseNotesDriver
 C<SPUResumableUpdate>
 CSPUScheduledUpdateDriver
 CSPUScheduledUpdateDriver()
 CSPUSkippedUpdate
 CSPUStandardUpdaterControllerA controller class that instantiates a SPUUpdater and allows binding UI to it
 CSPUStandardUserDriverSparkle's standard built-in user driver for updater interactions
 C<SPUStandardUserDriverDelegate>A protocol for Sparkle's standard user driver's delegate
 CSPUUIBasedUpdateDriver
 CSPUUIBasedUpdateDriver()
 C<SPUUIBasedUpdateDriverDelegate>
 C<SPUUpdateDriver>
 CSPUUpdatePermissionRequestThis class represents information needed to make a permission request for checking updates
 CSPUUpdaterThe main API in Sparkle for controlling the update mechanism
 CSPUUpdater()
 CSPUUpdaterCycle
 CSPUUpdaterCycle()
 C<SPUUpdaterCycleDelegate>
 C<SPUUpdaterDelegate>Provides methods to control the behavior of an SPUUpdater object
 CSPUUpdaterSettingsThis class can be used for reading certain updater settings
 CSPUUpdaterSettings()
 CSPUUpdaterTimer
 CSPUUpdaterTimer()
 C<SPUUpdaterTimerDelegate>
 CSPUURLRequest
 CSPUURLRequest()
 C<SPUUserDriver>The API in Sparkle for controlling the user interaction
 CSPUUserInitiatedUpdateDriver
 CSPUUserInitiatedUpdateDriver()
 CSPUUserUpdateState
 CSPUUserUpdateState()
 CSPUUserUpdateState(Private)
 CSUAppcast
 CSUAppcast()
 CSUAppcast(Private)
 CSUAppcastDriver
 CSUAppcastDriver()
 C<SUAppcastDriverDelegate>
 CSUAppcastItem
 CSUAppcastItem()
 CSUAppcastItem(Private)
 CSUApplicationInfo
 CSUBundleIcon
 CSUFileManager
 CSUHost
 CSUHost()
 C<SUInstallerAgentInitiationProtocol>
 C<SUInstallerProtocol>
 CSUOperatingSystem
 CSUPhasedUpdateGroupInfo
 CSUPublicKeys
 CSUSignatures
 CSUStandardVersionComparatorSparkle's default version comparator
 CSUStatusController
 CSUStatusController()
 CSUSystemProfiler
 CSUTouchBarButtonGroup
 CSUUpdatePermissionResponseThis class represents a response for permission to check updates
 CSUUpdateValidator
 CSUUpdateValidator()
 C<SUVersionComparison>Provides version comparison facilities for Sparkle
 C<SUVersionDisplay>Applies special display formatting to version numbers
 CTerminationListener
 CTerminationListener()
+
+
+ + + + diff --git a/documentation/api-reference/badge.svg b/documentation/api-reference/badge.svg new file mode 100644 index 0000000..dbb00ab --- /dev/null +++ b/documentation/api-reference/badge.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + documentation + + + documentation + + + 58% + + + 58% + + + diff --git a/documentation/api-reference/bc_s.png b/documentation/api-reference/bc_s.png new file mode 100644 index 0000000..224b29a Binary files /dev/null and b/documentation/api-reference/bc_s.png differ diff --git a/documentation/api-reference/bdwn.png b/documentation/api-reference/bdwn.png new file mode 100644 index 0000000..940a0b9 Binary files /dev/null and b/documentation/api-reference/bdwn.png differ diff --git a/documentation/api-reference/category_installer_progress_app_controller_07_08-members.html b/documentation/api-reference/category_installer_progress_app_controller_07_08-members.html new file mode 100644 index 0000000..c685e45 --- /dev/null +++ b/documentation/api-reference/category_installer_progress_app_controller_07_08-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
InstallerProgressAppController() Member List
+
+
+ +

This is the complete list of members for InstallerProgressAppController(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + +
application (defined in InstallerProgressAppController())InstallerProgressAppController()
applicationBundle (defined in InstallerProgressAppController())InstallerProgressAppController()
applicationInitiallyAlive (defined in InstallerProgressAppController())InstallerProgressAppController()
connected (defined in InstallerProgressAppController())InstallerProgressAppController()
connection (defined in InstallerProgressAppController())InstallerProgressAppController()
delegate (defined in InstallerProgressAppController())InstallerProgressAppController()
normalizedPath (defined in InstallerProgressAppController())InstallerProgressAppController()
oldHost (defined in InstallerProgressAppController())InstallerProgressAppController()
oldHostBundlePath (defined in InstallerProgressAppController())InstallerProgressAppController()
registerApplicationBundlePath:reply: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
registerInstallationInfoData: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
relaunchApplication (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
repliedToRegistration (defined in InstallerProgressAppController())InstallerProgressAppController()
sendTerminationSignal (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
shouldRelaunchHostBundle (defined in InstallerProgressAppController())InstallerProgressAppController()
showProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
statusInfo (defined in InstallerProgressAppController())InstallerProgressAppController()
stopProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
submittedLauncherJob (defined in InstallerProgressAppController())InstallerProgressAppController()
systemDomain (defined in InstallerProgressAppController())InstallerProgressAppController()
willTerminate (defined in InstallerProgressAppController())InstallerProgressAppController()
+ + + + diff --git a/documentation/api-reference/category_installer_progress_app_controller_07_08.html b/documentation/api-reference/category_installer_progress_app_controller_07_08.html new file mode 100644 index 0000000..2ba0ce6 --- /dev/null +++ b/documentation/api-reference/category_installer_progress_app_controller_07_08.html @@ -0,0 +1,163 @@ + + + + + + + +Sparkle: InstallerProgressAppController() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
InstallerProgressAppController() Category Reference
+
+
+
+Inheritance diagram for InstallerProgressAppController():
+
+
+ + +<SPUInstallerAgentProtocol> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSApplication * application
 
+id< InstallerProgressDelegatedelegate
 
+NSXPCConnection * connection
 
+BOOL connected
 
+BOOL repliedToRegistration
 
+SUHostoldHost
 
+BOOL shouldRelaunchHostBundle
 
+NSString * oldHostBundlePath
 
+BOOL systemDomain
 
+StatusInfo * statusInfo
 
+BOOL submittedLauncherJob
 
+BOOL willTerminate
 
+BOOL applicationInitiallyAlive
 
+NSBundle * applicationBundle
 
+NSString * normalizedPath
 
+ + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUInstallerAgentProtocol>
+(void) - registerApplicationBundlePath:reply:
 
+(void) - registerInstallationInfoData:
 
+(void) - sendTerminationSignal
 
+(void) - showProgress
 
+(void) - stopProgress
 
+(void) - relaunchApplication
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_installer_progress_app_controller_07_08.png b/documentation/api-reference/category_installer_progress_app_controller_07_08.png new file mode 100644 index 0000000..6e60bc7 Binary files /dev/null and b/documentation/api-reference/category_installer_progress_app_controller_07_08.png differ diff --git a/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08-members.html b/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08-members.html new file mode 100644 index 0000000..5351e69 --- /dev/null +++ b/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSButton(SierraSDK) Member List
+
+
+ +

This is the complete list of members for NSButton(SierraSDK), including all inherited members.

+ + +
buttonWithTitle:target:action: (defined in NSButton(SierraSDK))NSButton(SierraSDK)static
+ + + + diff --git a/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08.html b/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08.html new file mode 100644 index 0000000..9f75d2a --- /dev/null +++ b/documentation/api-reference/category_n_s_button_07_sierra_s_d_k_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSButton(SierraSDK) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Class Methods | +List of all members
+
+
NSButton(SierraSDK) Category Reference
+
+
+ + + + +

+Class Methods

+(instancetype) + buttonWithTitle:target:action:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08-members.html b/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08-members.html new file mode 100644 index 0000000..1894749 --- /dev/null +++ b/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSData(SUSignatureVerifier) Member List
+
+
+ +

This is the complete list of members for NSData(SUSignatureVerifier), including all inherited members.

+ + +
initWithBase64Encoding: (defined in NSData(SUSignatureVerifier))NSData(SUSignatureVerifier)
+ + + + diff --git a/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08.html b/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08.html new file mode 100644 index 0000000..e47ab47 --- /dev/null +++ b/documentation/api-reference/category_n_s_data_07_s_u_signature_verifier_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSData(SUSignatureVerifier) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSData(SUSignatureVerifier) Category Reference
+
+
+ + + + +

+Instance Methods

+(id) - initWithBase64Encoding:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08-members.html b/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08-members.html new file mode 100644 index 0000000..5babf20 --- /dev/null +++ b/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSObject(PrivateDelegateMethods) Member List
+
+
+ +

This is the complete list of members for NSObject(PrivateDelegateMethods), including all inherited members.

+ + +
_pathToRelaunchForUpdater: (defined in NSObject(PrivateDelegateMethods))NSObject(PrivateDelegateMethods)
+ + + + diff --git a/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08.html b/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08.html new file mode 100644 index 0000000..6abcd13 --- /dev/null +++ b/documentation/api-reference/category_n_s_object_07_private_delegate_methods_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSObject(PrivateDelegateMethods) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSObject(PrivateDelegateMethods) Category Reference
+
+
+ + + + +

+Instance Methods

+(nullable NSString *) - _pathToRelaunchForUpdater:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_n_s_process_info_07_08-members.html b/documentation/api-reference/category_n_s_process_info_07_08-members.html new file mode 100644 index 0000000..c1e1f3a --- /dev/null +++ b/documentation/api-reference/category_n_s_process_info_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSProcessInfo() Member List
+
+
+ +

This is the complete list of members for NSProcessInfo(), including all inherited members.

+ + +
operatingSystemVersion (defined in NSProcessInfo())NSProcessInfo()
+ + + + diff --git a/documentation/api-reference/category_n_s_process_info_07_08.html b/documentation/api-reference/category_n_s_process_info_07_08.html new file mode 100644 index 0000000..ded3af7 --- /dev/null +++ b/documentation/api-reference/category_n_s_process_info_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSProcessInfo() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSProcessInfo() Category Reference
+
+
+ + + + +

+Instance Methods

+(NSOperatingSystemVersion- operatingSystemVersion
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.html b/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.html new file mode 100644 index 0000000..f27c629 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: SPUAppcastItemState() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAppcastItemState() Category Reference
+
+
+
+Inheritance diagram for SPUAppcastItemState():
+
+
+ +
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.png b/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.png new file mode 100644 index 0000000..6b6ae89 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_appcast_item_state_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08-members.html new file mode 100644 index 0000000..e7f60d1 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08-members.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAutomaticUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUAutomaticUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + +
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriver (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
updateItem (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
updater (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
updaterDelegate (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
userDriver (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
willInstallSilently (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.html new file mode 100644 index 0000000..2faec71 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: SPUAutomaticUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUAutomaticUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUAutomaticUpdateDriver():
+
+
+ + +<SPUCoreBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + + + +

+Properties

+id updater
 
+id< SPUUserDriveruserDriver
 
+id updaterDelegate
 
+SPUCoreBasedUpdateDrivercoreDriver
 
+SUAppcastItemupdateItem
 
+BOOL willInstallSilently
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUCoreBasedUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+(void) - coreDriverDidStartExtractingUpdate
 
+(void) - installerDidStartInstalling
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.png new file mode 100644 index 0000000..eacdfd1 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_automatic_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_basic_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08-members.html new file mode 100644 index 0000000..2ec2eb5 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUBasicUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUBasicUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + +
aborted (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
appcastDriver (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
completionBlock (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
delegate (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
didFailToFetchAppcastWithError: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didFindValidUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didFinishLoadingAppcast: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
host (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
updater (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
updaterDelegate (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.html new file mode 100644 index 0000000..75ac33c --- /dev/null +++ b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.html @@ -0,0 +1,133 @@ + + + + + + + +Sparkle: SPUBasicUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUBasicUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUBasicUpdateDriver():
+
+
+ + +<SUAppcastDriverDelegate> + +
+ + + + + + + + + + + + + + + + +

+Properties

+id< SPUBasicUpdateDriverDelegatedelegate
 
+SUAppcastDriverappcastDriver
 
+SPUUpdateDriverCompletion completionBlock
 
+SUHosthost
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+BOOL aborted
 
+ + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SUAppcastDriverDelegate>
+(void) - didFailToFetchAppcastWithError:
 
+(void) - didFinishLoadingAppcast:
 
+(void) - didFindValidUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.png new file mode 100644 index 0000000..c7e41dc Binary files /dev/null and b/documentation/api-reference/category_s_p_u_basic_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08-members.html new file mode 100644 index 0000000..459d6a7 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08-members.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUCoreBasedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUCoreBasedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
basicDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
delegate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
downloadDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadedUpdateForRemoval (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
host (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
httpHeaders (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
installerDidExtractUpdateWithProgress: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFailToApplyDeltaUpdate (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidStartExtracting (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidStartInstalling (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
installerIsRequestingAbortInstallWithError: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerWillFinishInstallationAndRelaunch: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
preventsInstallerInteraction (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
resumableUpdate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
resumingInstallingUpdate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
secondaryUpdateItem (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
silentInstall (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updateItem (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updater (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updaterDelegate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
userAgent (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.html new file mode 100644 index 0000000..3246a0d --- /dev/null +++ b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.html @@ -0,0 +1,206 @@ + + + + + + + +Sparkle: SPUCoreBasedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUCoreBasedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUCoreBasedUpdateDriver():
+
+
+ + +<SPUBasicUpdateDriverDelegate> +<SPUDownloadDriverDelegate> +<SPUInstallerDriverDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SPUBasicUpdateDriverbasicDriver
 
+SPUDownloadDriverdownloadDriver
 
+SPUInstallerDriverinstallerDriver
 
+id< SPUCoreBasedUpdateDriverDelegatedelegate
 
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+id< SPUResumableUpdateresumableUpdate
 
+SPUDownloadedUpdatedownloadedUpdateForRemoval
 
+SUHosthost
 
+BOOL resumingInstallingUpdate
 
+BOOL silentInstall
 
+BOOL preventsInstallerInteraction
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+NSString * userAgent
 
+NSDictionary * httpHeaders
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUBasicUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
- Instance Methods inherited from <SPUDownloadDriverDelegate>
+(void) - downloadDriverDidFailToDownloadFileWithError:
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidDownloadUpdate:
 
+(void) - downloadDriverDidDownloadData:
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
- Instance Methods inherited from <SPUInstallerDriverDelegate>
+(void) - installerDidStartInstalling
 
+(void) - installerDidStartExtracting
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerWillFinishInstallationAndRelaunch:
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+(void) - installerIsRequestingAbortInstallWithError:
 
+(void) - installerDidFailToApplyDeltaUpdate
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.png new file mode 100644 index 0000000..822312c Binary files /dev/null and b/documentation/api-reference/category_s_p_u_core_based_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_download_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_download_driver_07_08-members.html new file mode 100644 index 0000000..8b53c4a --- /dev/null +++ b/documentation/api-reference/category_s_p_u_download_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUDownloadDriver() Member List
+
+
+ +

This is the complete list of members for SPUDownloadDriver(), including all inherited members.

+ + + + + + + + + + + + +
cleaningUp (defined in SPUDownloadDriver())SPUDownloadDriver()
connection (defined in SPUDownloadDriver())SPUDownloadDriver()
delegate (defined in SPUDownloadDriver())SPUDownloadDriver()
downloader (defined in SPUDownloadDriver())SPUDownloadDriver()
downloadName (defined in SPUDownloadDriver())SPUDownloadDriver()
expectedContentLength (defined in SPUDownloadDriver())SPUDownloadDriver()
host (defined in SPUDownloadDriver())SPUDownloadDriver()
retrievedDownloadResult (defined in SPUDownloadDriver())SPUDownloadDriver()
secondaryUpdateItem (defined in SPUDownloadDriver())SPUDownloadDriver()
temporaryDirectory (defined in SPUDownloadDriver())SPUDownloadDriver()
updateItem (defined in SPUDownloadDriver())SPUDownloadDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_download_driver_07_08.html b/documentation/api-reference/category_s_p_u_download_driver_07_08.html new file mode 100644 index 0000000..b4f717f --- /dev/null +++ b/documentation/api-reference/category_s_p_u_download_driver_07_08.html @@ -0,0 +1,126 @@ + + + + + + + +Sparkle: SPUDownloadDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUDownloadDriver() Category Reference
+
+
+
+Inheritance diagram for SPUDownloadDriver():
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+id< SPUDownloaderProtocol > downloader
 
+NSXPCConnection * connection
 
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+SUHosthost
 
+NSString * temporaryDirectory
 
+NSString * downloadName
 
+id< SPUDownloadDriverDelegatedelegate
 
+BOOL retrievedDownloadResult
 
+uint64_t expectedContentLength
 
+BOOL cleaningUp
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_download_driver_07_08.png b/documentation/api-reference/category_s_p_u_download_driver_07_08.png new file mode 100644 index 0000000..a6c0e08 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_download_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_installer_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_installer_driver_07_08-members.html new file mode 100644 index 0000000..3cdd4ae --- /dev/null +++ b/documentation/api-reference/category_s_p_u_installer_driver_07_08-members.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUInstallerDriver() Member List
+
+
+ +

This is the complete list of members for SPUInstallerDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
aborted (defined in SPUInstallerDriver())SPUInstallerDriver()
applicationBundle (defined in SPUInstallerDriver())SPUInstallerDriver()
currentStage (defined in SPUInstallerDriver())SPUInstallerDriver()
delegate (defined in SPUInstallerDriver())SPUInstallerDriver()
downloadName (defined in SPUInstallerDriver())SPUInstallerDriver()
extractionAttempts (defined in SPUInstallerDriver())SPUInstallerDriver()
host (defined in SPUInstallerDriver())SPUInstallerDriver()
installerConnection (defined in SPUInstallerDriver())SPUInstallerDriver()
installerError (defined in SPUInstallerDriver())SPUInstallerDriver()
postponedOnce (defined in SPUInstallerDriver())SPUInstallerDriver()
relaunch (defined in SPUInstallerDriver())SPUInstallerDriver()
sparkleBundle (defined in SPUInstallerDriver())SPUInstallerDriver()
startedInstalling (defined in SPUInstallerDriver())SPUInstallerDriver()
systemDomain (defined in SPUInstallerDriver())SPUInstallerDriver()
temporaryDirectory (defined in SPUInstallerDriver())SPUInstallerDriver()
updateItem (defined in SPUInstallerDriver())SPUInstallerDriver()
updater (defined in SPUInstallerDriver())SPUInstallerDriver()
updaterDelegate (defined in SPUInstallerDriver())SPUInstallerDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_installer_driver_07_08.html b/documentation/api-reference/category_s_p_u_installer_driver_07_08.html new file mode 100644 index 0000000..2cfa3ad --- /dev/null +++ b/documentation/api-reference/category_s_p_u_installer_driver_07_08.html @@ -0,0 +1,147 @@ + + + + + + + +Sparkle: SPUInstallerDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUInstallerDriver() Category Reference
+
+
+
+Inheritance diagram for SPUInstallerDriver():
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SUHosthost
 
+NSBundle * applicationBundle
 
+NSBundle * sparkleBundle
 
+id< SPUInstallerDriverDelegatedelegate
 
+SPUInstallerMessageType currentStage
 
+BOOL startedInstalling
 
+id< SUInstallerConnectionProtocol > installerConnection
 
+NSUInteger extractionAttempts
 
+BOOL postponedOnce
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+BOOL relaunch
 
+BOOL systemDomain
 
+SUAppcastItemupdateItem
 
+NSString * downloadName
 
+NSString * temporaryDirectory
 
+BOOL aborted
 
+NSError * installerError
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_installer_driver_07_08.png b/documentation/api-reference/category_s_p_u_installer_driver_07_08.png new file mode 100644 index 0000000..b04c858 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_installer_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_probing_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08-members.html new file mode 100644 index 0000000..b24a2f1 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUProbingUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUProbingUpdateDriver(), including all inherited members.

+ + + + + + +
basicDriver (defined in SPUProbingUpdateDriver())SPUProbingUpdateDriver()
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
resumableUpdate (defined in SPUProbingUpdateDriver())SPUProbingUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.html new file mode 100644 index 0000000..0f50462 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUProbingUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUProbingUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUProbingUpdateDriver():
+
+
+ + +<SPUBasicUpdateDriverDelegate> + +
+ + + + + + +

+Properties

+SPUBasicUpdateDriverbasicDriver
 
+id< SPUResumableUpdateresumableUpdate
 
+ + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUBasicUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.png new file mode 100644 index 0000000..c39bacd Binary files /dev/null and b/documentation/api-reference/category_s_p_u_probing_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08-members.html new file mode 100644 index 0000000..f33e71a --- /dev/null +++ b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUScheduledUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUScheduledUpdateDriver(), including all inherited members.

+ + + + + + + + +
basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
showedUpdate (defined in SPUScheduledUpdateDriver())SPUScheduledUpdateDriver()
uiDriver (defined in SPUScheduledUpdateDriver())SPUScheduledUpdateDriver()
uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
+ + + + diff --git a/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.html new file mode 100644 index 0000000..c8eaec5 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: SPUScheduledUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUScheduledUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUScheduledUpdateDriver():
+
+
+ + +<SPUUIBasedUpdateDriverDelegate> + +
+ + + + + + +

+Properties

+SPUUIBasedUpdateDriveruiDriver
 
+BOOL showedUpdate
 
+ + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUIBasedUpdateDriverDelegate>
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverDidShowUpdate
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.png new file mode 100644 index 0000000..398addf Binary files /dev/null and b/documentation/api-reference/category_s_p_u_scheduled_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08-members.html new file mode 100644 index 0000000..695e386 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08-members.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUIBasedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUUIBasedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
delegate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
host (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
httpHeaders (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
preventsInstallerInteraction (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
releaseNotesDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
resumingDownloadedUpdate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
resumingInstallingUpdate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
updater (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
updaterDelegate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userAgent (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userInitiated (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.html new file mode 100644 index 0000000..1092d38 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.html @@ -0,0 +1,178 @@ + + + + + + + +Sparkle: SPUUIBasedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUIBasedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUUIBasedUpdateDriver():
+
+
+ + +<SPUCoreBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SPUCoreBasedUpdateDrivercoreDriver
 
+SUHosthost
 
+id updater
 
+BOOL userInitiated
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+id< SPUUIBasedUpdateDriverDelegatedelegate
 
+id< SPUUserDriveruserDriver
 
+SPUReleaseNotesDriverreleaseNotesDriver
 
+BOOL resumingInstallingUpdate
 
+BOOL resumingDownloadedUpdate
 
+BOOL preventsInstallerInteraction
 
+NSDictionary * httpHeaders
 
+NSString * userAgent
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUCoreBasedUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+(void) - coreDriverDidStartExtractingUpdate
 
+(void) - installerDidStartInstalling
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.png new file mode 100644 index 0000000..7535928 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_u_i_based_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_u_r_l_request_07_08-members.html b/documentation/api-reference/category_s_p_u_u_r_l_request_07_08-members.html new file mode 100644 index 0000000..60d54b3 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_u_r_l_request_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUURLRequest() Member List
+
+
+ +

This is the complete list of members for SPUURLRequest(), including all inherited members.

+ + + + + + +
cachePolicy (defined in SPUURLRequest())SPUURLRequest()
httpHeaderFields (defined in SPUURLRequest())SPUURLRequest()
networkServiceType (defined in SPUURLRequest())SPUURLRequest()
timeoutInterval (defined in SPUURLRequest())SPUURLRequest()
url (defined in SPUURLRequest())SPUURLRequest()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_u_r_l_request_07_08.html b/documentation/api-reference/category_s_p_u_u_r_l_request_07_08.html new file mode 100644 index 0000000..2224129 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_u_r_l_request_07_08.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: SPUURLRequest() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUURLRequest() Category Reference
+
+
+ + + + + + + + + + + + +

+Properties

+NSURL * url
 
+NSURLRequestCachePolicy cachePolicy
 
+NSTimeInterval timeoutInterval
 
+NSDictionary< NSString *, NSString * > * httpHeaderFields
 
+NSURLRequestNetworkServiceType networkServiceType
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_07_08-members.html b/documentation/api-reference/category_s_p_u_updater_07_08-members.html new file mode 100644 index 0000000..8a22fc1 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_07_08-members.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdater() Member List
+
+
+ +

This is the complete list of members for SPUUpdater(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
applicationBundle (defined in SPUUpdater())SPUUpdater()
delegate (defined in SPUUpdater())SPUUpdater()
driver (defined in SPUUpdater())SPUUpdater()
host (defined in SPUUpdater())SPUUpdater()
loggedATSWarning (defined in SPUUpdater())SPUUpdater()
loggedNoSecureKeyWarning (defined in SPUUpdater())SPUUpdater()
parameterizedFeedURL (defined in SPUUpdater())SPUUpdater()
resetUpdateCycle (defined in <SPUUpdaterCycleDelegate>)<SPUUpdaterCycleDelegate>
resumableUpdate (defined in SPUUpdater())SPUUpdater()
sessionInProgress (defined in SPUUpdater())SPUUpdater()
showingPermissionRequest (defined in SPUUpdater())SPUUpdater()
startedUpdater (defined in SPUUpdater())SPUUpdater()
updateLastCheckedDate (defined in SPUUpdater())SPUUpdater()
updaterCycle (defined in SPUUpdater())SPUUpdater()
updaterSettings (defined in SPUUpdater())SPUUpdater()
updaterTimer (defined in SPUUpdater())SPUUpdater()
updaterTimerDidFire (defined in <SPUUpdaterTimerDelegate>)<SPUUpdaterTimerDelegate>
userDriver (defined in SPUUpdater())SPUUpdater()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_07_08.html b/documentation/api-reference/category_s_p_u_updater_07_08.html new file mode 100644 index 0000000..61e6b32 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_07_08.html @@ -0,0 +1,156 @@ + + + + + + + +Sparkle: SPUUpdater() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdater() Category Reference
+
+
+
+Inheritance diagram for SPUUpdater():
+
+
+ + +<SPUUpdaterCycleDelegate> +<SPUUpdaterTimerDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSURL * parameterizedFeedURL
 
+id< SPUUserDriveruserDriver
 
+id< SPUUpdaterDelegatedelegate
 
+id< SPUUpdateDriverdriver
 
+SUHosthost
 
+NSBundle * applicationBundle
 
+SPUUpdaterSettingsupdaterSettings
 
+SPUUpdaterCycleupdaterCycle
 
+SPUUpdaterTimerupdaterTimer
 
+BOOL startedUpdater
 
+id< SPUResumableUpdateresumableUpdate
 
+BOOL sessionInProgress
 
+BOOL showingPermissionRequest
 
+NSDate * updateLastCheckedDate
 
+BOOL loggedATSWarning
 
+BOOL loggedNoSecureKeyWarning
 
+ + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUpdaterCycleDelegate>
+(void) - resetUpdateCycle
 
- Instance Methods inherited from <SPUUpdaterTimerDelegate>
+(void) - updaterTimerDidFire
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_07_08.png b/documentation/api-reference/category_s_p_u_updater_07_08.png new file mode 100644 index 0000000..3d64188 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_updater_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_updater_cycle_07_08-members.html b/documentation/api-reference/category_s_p_u_updater_cycle_07_08-members.html new file mode 100644 index 0000000..0f16752 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_cycle_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterCycle() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterCycle(), including all inherited members.

+ + +
delegate (defined in SPUUpdaterCycle())SPUUpdaterCycle()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_cycle_07_08.html b/documentation/api-reference/category_s_p_u_updater_cycle_07_08.html new file mode 100644 index 0000000..2c28441 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_cycle_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUpdaterCycle() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterCycle() Category Reference
+
+
+ + + + +

+Properties

+id< SPUUpdaterCycleDelegatedelegate
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_settings_07_08-members.html b/documentation/api-reference/category_s_p_u_updater_settings_07_08-members.html new file mode 100644 index 0000000..7a61ffe --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_settings_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterSettings() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterSettings(), including all inherited members.

+ + +
host (defined in SPUUpdaterSettings())SPUUpdaterSettings()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_settings_07_08.html b/documentation/api-reference/category_s_p_u_updater_settings_07_08.html new file mode 100644 index 0000000..b9a1352 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_settings_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUpdaterSettings() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterSettings() Category Reference
+
+
+ + + + +

+Properties

+SUHosthost
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_timer_07_08-members.html b/documentation/api-reference/category_s_p_u_updater_timer_07_08-members.html new file mode 100644 index 0000000..5d444ad --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_timer_07_08-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterTimer() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterTimer(), including all inherited members.

+ + + +
delegate (defined in SPUUpdaterTimer())SPUUpdaterTimer()
source (defined in SPUUpdaterTimer())SPUUpdaterTimer()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_updater_timer_07_08.html b/documentation/api-reference/category_s_p_u_updater_timer_07_08.html new file mode 100644 index 0000000..ef1add8 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_updater_timer_07_08.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: SPUUpdaterTimer() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterTimer() Category Reference
+
+
+ + + + + + +

+Properties

+id< SPUUpdaterTimerDelegatedelegate
 
+dispatch_source_t source
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08-members.html b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08-members.html new file mode 100644 index 0000000..6ec21c0 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08-members.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserInitiatedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUUserInitiatedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + +
aborted (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
showingUpdate (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
showingUserInitiatedProgress (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
uiDriver (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
userDriver (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.html b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.html new file mode 100644 index 0000000..633fc42 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: SPUUserInitiatedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUserInitiatedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUUserInitiatedUpdateDriver():
+
+
+ + +<SPUUIBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + +

+Properties

+SPUUIBasedUpdateDriveruiDriver
 
+id< SPUUserDriveruserDriver
 
+BOOL showingUserInitiatedProgress
 
+BOOL showingUpdate
 
+BOOL aborted
 
+ + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUIBasedUpdateDriverDelegate>
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverDidShowUpdate
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.png b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.png new file mode 100644 index 0000000..b851d4e Binary files /dev/null and b/documentation/api-reference/category_s_p_u_user_initiated_update_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_user_update_state_07_08.html b/documentation/api-reference/category_s_p_u_user_update_state_07_08.html new file mode 100644 index 0000000..5cdc6bf --- /dev/null +++ b/documentation/api-reference/category_s_p_u_user_update_state_07_08.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: SPUUserUpdateState() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserUpdateState() Category Reference
+
+
+
+Inheritance diagram for SPUUserUpdateState():
+
+
+ +
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_p_u_user_update_state_07_08.png b/documentation/api-reference/category_s_p_u_user_update_state_07_08.png new file mode 100644 index 0000000..f0bb0f2 Binary files /dev/null and b/documentation/api-reference/category_s_p_u_user_update_state_07_08.png differ diff --git a/documentation/api-reference/category_s_p_u_user_update_state_07_private_08-members.html b/documentation/api-reference/category_s_p_u_user_update_state_07_private_08-members.html new file mode 100644 index 0000000..4b1fd0d --- /dev/null +++ b/documentation/api-reference/category_s_p_u_user_update_state_07_private_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserUpdateState(Private) Member List
+
+
+ +

This is the complete list of members for SPUUserUpdateState(Private), including all inherited members.

+ + +
initWithStage:userInitiated: (defined in SPUUserUpdateState(Private))SPUUserUpdateState(Private)
+ + + + diff --git a/documentation/api-reference/category_s_p_u_user_update_state_07_private_08.html b/documentation/api-reference/category_s_p_u_user_update_state_07_private_08.html new file mode 100644 index 0000000..625e2c7 --- /dev/null +++ b/documentation/api-reference/category_s_p_u_user_update_state_07_private_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUserUpdateState(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SPUUserUpdateState(Private) Category Reference
+
+
+ + + + +

+Instance Methods

+(instancetype) - initWithStage:userInitiated:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_07_08-members.html b/documentation/api-reference/category_s_u_appcast_07_08-members.html new file mode 100644 index 0000000..2e50181 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcast() Member List
+
+
+ +

This is the complete list of members for SUAppcast(), including all inherited members.

+ + +
items (defined in SUAppcast())SUAppcast()
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_07_08.html b/documentation/api-reference/category_s_u_appcast_07_08.html new file mode 100644 index 0000000..57b58aa --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SUAppcast() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcast() Category Reference
+
+
+ + + + +

+Properties

+NSArray< SUAppcastItem * > * items
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_07_private_08-members.html b/documentation/api-reference/category_s_u_appcast_07_private_08-members.html new file mode 100644 index 0000000..6ddffee --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_07_private_08-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcast(Private) Member List
+
+
+ +

This is the complete list of members for SUAppcast(Private), including all inherited members.

+ + + +
copyByFilteringItems: (defined in SUAppcast(Private))SUAppcast(Private)
initWithXMLData:relativeToURL:stateResolver:error: (defined in SUAppcast(Private))SUAppcast(Private)
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_07_private_08.html b/documentation/api-reference/category_s_u_appcast_07_private_08.html new file mode 100644 index 0000000..981065e --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_07_private_08.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: SUAppcast(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SUAppcast(Private) Category Reference
+
+
+ + + + + + +

+Instance Methods

+(nullable instancetype) - initWithXMLData:relativeToURL:stateResolver:error:
 
+(SUAppcast *) - copyByFilteringItems:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_driver_07_08-members.html b/documentation/api-reference/category_s_u_appcast_driver_07_08-members.html new file mode 100644 index 0000000..6fdc4ff --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastDriver() Member List
+
+
+ +

This is the complete list of members for SUAppcastDriver(), including all inherited members.

+ + + + + + + + + + + + +
delegate (defined in SUAppcastDriver())SUAppcastDriver()
downloadDriver (defined in SUAppcastDriver())SUAppcastDriver()
downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
host (defined in SUAppcastDriver())SUAppcastDriver()
updater (defined in SUAppcastDriver())SUAppcastDriver()
updaterDelegate (defined in SUAppcastDriver())SUAppcastDriver()
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_driver_07_08.html b/documentation/api-reference/category_s_u_appcast_driver_07_08.html new file mode 100644 index 0000000..ab273e0 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_driver_07_08.html @@ -0,0 +1,133 @@ + + + + + + + +Sparkle: SUAppcastDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcastDriver() Category Reference
+
+
+
+Inheritance diagram for SUAppcastDriver():
+
+
+ + +<SPUDownloadDriverDelegate> + +
+ + + + + + + + + + + + +

+Properties

+SUHosthost
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+id< SUAppcastDriverDelegatedelegate
 
+SPUDownloadDriverdownloadDriver
 
+ + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUDownloadDriverDelegate>
+(void) - downloadDriverDidFailToDownloadFileWithError:
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidDownloadUpdate:
 
+(void) - downloadDriverDidDownloadData:
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_driver_07_08.png b/documentation/api-reference/category_s_u_appcast_driver_07_08.png new file mode 100644 index 0000000..0b81663 Binary files /dev/null and b/documentation/api-reference/category_s_u_appcast_driver_07_08.png differ diff --git a/documentation/api-reference/category_s_u_appcast_item_07_08-members.html b/documentation/api-reference/category_s_u_appcast_item_07_08-members.html new file mode 100644 index 0000000..5e8de34 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_item_07_08-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastItem() Member List
+
+
+ +

This is the complete list of members for SUAppcastItem(), including all inherited members.

+ + + + +
hasCriticalInformation (defined in SUAppcastItem())SUAppcastItem()
informationalUpdateVersions (defined in SUAppcastItem())SUAppcastItem()
state (defined in SUAppcastItem())SUAppcastItem()
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_item_07_08.html b/documentation/api-reference/category_s_u_appcast_item_07_08.html new file mode 100644 index 0000000..9400d88 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_item_07_08.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: SUAppcastItem() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcastItem() Category Reference
+
+
+ + + + + + + + +

+Properties

+SPUAppcastItemStatestate
 
+BOOL hasCriticalInformation
 
+NSSet< NSString * > * informationalUpdateVersions
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_item_07_private_08-members.html b/documentation/api-reference/category_s_u_appcast_item_07_private_08-members.html new file mode 100644 index 0000000..deee458 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_item_07_private_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastItem(Private) Member List
+
+
+ +

This is the complete list of members for SUAppcastItem(Private), including all inherited members.

+ + +
initWithDictionary:relativeToURL:stateResolver:failureReason:SUAppcastItem(Private)
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_item_07_private_08.html b/documentation/api-reference/category_s_u_appcast_item_07_private_08.html new file mode 100644 index 0000000..eeb3938 --- /dev/null +++ b/documentation/api-reference/category_s_u_appcast_item_07_private_08.html @@ -0,0 +1,142 @@ + + + + + + + +Sparkle: SUAppcastItem(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SUAppcastItem(Private) Category Reference
+
+
+
+Inheritance diagram for SUAppcastItem(Private):
+
+
+ +
+ + + + + +

+Instance Methods

(nullable instancetype) - initWithDictionary:relativeToURL:stateResolver:failureReason:
 Initializes with data from a dictionary provided by the RSS class and state resolver. More...
 
+

Method Documentation

+ +

◆ initWithDictionary:relativeToURL:stateResolver:failureReason:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- (nullable instancetype) initWithDictionary: (NSDictionary *) dict
relativeToURL:(NSURL *_Nullable) appcastURL
stateResolver:(SPUAppcastItemStateResolver *) stateResolver
failureReason:(NSString *_Nullable __autoreleasing *_Nullable) error 
+
+ +

Initializes with data from a dictionary provided by the RSS class and state resolver.

+

This initializer method is intended to be marked "private" and discouraged from public usage. This method is available however. Talk to us to describe your use case and if you need to construct appcast items yourself.

+ +

Extends class SUAppcastItem.

+ +
+
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_appcast_item_07_private_08.png b/documentation/api-reference/category_s_u_appcast_item_07_private_08.png new file mode 100644 index 0000000..6697482 Binary files /dev/null and b/documentation/api-reference/category_s_u_appcast_item_07_private_08.png differ diff --git a/documentation/api-reference/category_s_u_host_07_08-members.html b/documentation/api-reference/category_s_u_host_07_08-members.html new file mode 100644 index 0000000..b8dd888 --- /dev/null +++ b/documentation/api-reference/category_s_u_host_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUHost() Member List
+
+
+ +

This is the complete list of members for SUHost(), including all inherited members.

+ + + + + + +
bundle (defined in SUHost())SUHost()
defaultsDomain (defined in SUHost())SUHost()
isMainBundle (defined in SUHost())SUHost()
publicDSAKey (defined in SUHost())SUHost()
usesStandardUserDefaults (defined in SUHost())SUHost()
+ + + + diff --git a/documentation/api-reference/category_s_u_host_07_08.html b/documentation/api-reference/category_s_u_host_07_08.html new file mode 100644 index 0000000..7cc9fce --- /dev/null +++ b/documentation/api-reference/category_s_u_host_07_08.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: SUHost() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUHost() Category Reference
+
+
+ + + + + + + + + + + + +

+Properties

+NSBundle * bundle
 
+BOOL isMainBundle
 
+NSString * defaultsDomain
 
+BOOL usesStandardUserDefaults
 
+NSString * publicDSAKey
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_status_controller_07_08-members.html b/documentation/api-reference/category_s_u_status_controller_07_08-members.html new file mode 100644 index 0000000..f41f218 --- /dev/null +++ b/documentation/api-reference/category_s_u_status_controller_07_08-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUStatusController() Member List
+
+
+ +

This is the complete list of members for SUStatusController(), including all inherited members.

+ + + + + +
buttonTitle (defined in SUStatusController())SUStatusController()protected
host (defined in SUStatusController())SUStatusController()
title (defined in SUStatusController())SUStatusController()
touchBarButton (defined in SUStatusController())SUStatusController()
+ + + + diff --git a/documentation/api-reference/category_s_u_status_controller_07_08.html b/documentation/api-reference/category_s_u_status_controller_07_08.html new file mode 100644 index 0000000..ad4cb83 --- /dev/null +++ b/documentation/api-reference/category_s_u_status_controller_07_08.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: SUStatusController() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUStatusController() Category Reference
+
+
+
+Inheritance diagram for SUStatusController():
+
+
+ +
+ + + + + + + + + + +

+Properties

+NSString * title
 
+NSString * buttonTitle
 
+SUHosthost
 
+NSButton * touchBarButton
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_s_u_status_controller_07_08.png b/documentation/api-reference/category_s_u_status_controller_07_08.png new file mode 100644 index 0000000..8428f6b Binary files /dev/null and b/documentation/api-reference/category_s_u_status_controller_07_08.png differ diff --git a/documentation/api-reference/category_s_u_update_validator_07_08-members.html b/documentation/api-reference/category_s_u_update_validator_07_08-members.html new file mode 100644 index 0000000..0dace5c --- /dev/null +++ b/documentation/api-reference/category_s_u_update_validator_07_08-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUUpdateValidator() Member List
+
+
+ +

This is the complete list of members for SUUpdateValidator(), including all inherited members.

+ + + + + +
downloadPath (defined in SUUpdateValidator())SUUpdateValidator()
host (defined in SUUpdateValidator())SUUpdateValidator()
prevalidatedSignature (defined in SUUpdateValidator())SUUpdateValidator()
signatures (defined in SUUpdateValidator())SUUpdateValidator()
+ + + + diff --git a/documentation/api-reference/category_s_u_update_validator_07_08.html b/documentation/api-reference/category_s_u_update_validator_07_08.html new file mode 100644 index 0000000..ced5b5d --- /dev/null +++ b/documentation/api-reference/category_s_u_update_validator_07_08.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: SUUpdateValidator() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUUpdateValidator() Category Reference
+
+
+ + + + + + + + + + +

+Properties

+SUHosthost
 
+BOOL prevalidatedSignature
 
+SUSignaturessignatures
 
+NSString * downloadPath
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_show_installer_progress_07_08-members.html b/documentation/api-reference/category_show_installer_progress_07_08-members.html new file mode 100644 index 0000000..42cca1e --- /dev/null +++ b/documentation/api-reference/category_show_installer_progress_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
ShowInstallerProgress() Member List
+
+
+ +

This is the complete list of members for ShowInstallerProgress(), including all inherited members.

+ + +
statusController (defined in ShowInstallerProgress())ShowInstallerProgress()
+ + + + diff --git a/documentation/api-reference/category_show_installer_progress_07_08.html b/documentation/api-reference/category_show_installer_progress_07_08.html new file mode 100644 index 0000000..803990b --- /dev/null +++ b/documentation/api-reference/category_show_installer_progress_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: ShowInstallerProgress() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
ShowInstallerProgress() Category Reference
+
+
+ + + + +

+Properties

+SUStatusControllerstatusController
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/category_termination_listener_07_08-members.html b/documentation/api-reference/category_termination_listener_07_08-members.html new file mode 100644 index 0000000..fbfb9c7 --- /dev/null +++ b/documentation/api-reference/category_termination_listener_07_08-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
TerminationListener() Member List
+
+
+ +

This is the complete list of members for TerminationListener(), including all inherited members.

+ + + + +
completionBlock (defined in TerminationListener())TerminationListener()
processIdentifier (defined in TerminationListener())TerminationListener()
watchedTermination (defined in TerminationListener())TerminationListener()
+ + + + diff --git a/documentation/api-reference/category_termination_listener_07_08.html b/documentation/api-reference/category_termination_listener_07_08.html new file mode 100644 index 0000000..18533d4 --- /dev/null +++ b/documentation/api-reference/category_termination_listener_07_08.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: TerminationListener() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
TerminationListener() Category Reference
+
+
+ + + + + + + + +

+Properties

+NSNumber * processIdentifier
 
+BOOL watchedTermination
 
+void(^ completionBlock )(BOOL)
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/classes.html b/documentation/api-reference/classes.html new file mode 100644 index 0000000..a871d2a --- /dev/null +++ b/documentation/api-reference/classes.html @@ -0,0 +1,670 @@ + + + + Classes Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Classes

+

The following classes are available globally.

+ +
+
+
+
    +
  • +
    + + + + SPUDownloadData + +
    +
    +
    +
    +
    +
    +

    A class for containing downloaded data along with some information about it.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUDownloadData : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SPUDownloadData : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

    + +

    This class can be instantiated in a nib or created programatically using -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

    + +

    The controller’s updater targets the application’s main bundle and uses Sparkle’s standard user interface. +Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

    + +

    The controller creates an SPUUpdater instance using a SPUStandardUserDriver and allows hooking up the check for updates action and handling menu item validation. +It also allows hooking up the updater’s and user driver’s delegates.

    + +

    If you need more control over what bundle you want to update, or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUStandardUpdaterController : NSObject
    + +
    +
    +

    Swift

    +
    class SPUStandardUpdaterController : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUStandardUserDriver + +
    +
    +
    +
    +
    +
    +

    Sparkle’s standard built-in user driver for updater interactions

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUStandardUserDriver : NSObject <SPUUserDriver>
    + +
    +
    +

    Swift

    +
    class SPUStandardUserDriver : NSObject, SPUUserDriver
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    This class represents information needed to make a permission request for checking updates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdatePermissionRequest : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SPUUpdatePermissionRequest : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdater + +
    +
    +
    +
    +
    +
    +

    The main API in Sparkle for controlling the update mechanism.

    + +

    This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

    + +

    For convenience, you can create a standard or nib instantiable updater by using SPUStandardUpdaterController.

    + +

    Prefer to set initial properties in your bundle’s Info.plist as described in Customizing Sparkle.

    + +

    Otherwise only if you need dynamic behavior (eg. for user preferences) should you set properties on the updater such as:

    + +
      +
    • automaticallyChecksForUpdates
    • +
    • updateCheckInterval
    • +
    • automaticallyDownloadsUpdates
    • +
    • feedURL
    • +
    + +

    Please view the documentation on each of these properties for more detail if you are to configure them dynamically.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdater : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUpdater : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdaterSettings + +
    +
    +
    +
    +
    +
    +

    This class can be used for reading certain updater settings.

    + +

    It retrieves the settings by first looking into the host’s user defaults. +If the setting is not found in there, then the host’s Info.plist file is looked at.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdaterSettings : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUpdaterSettings : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateState + +
    +
    +
    +
    +
    +
    +

    This represents the user’s current update state.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUserUpdateState : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUserUpdateState : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcast + +
    +
    +
    +
    +
    +
    +

    The appcast representing a collection of SUAppcastItem items in the feed.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUAppcast : NSObject
    + +
    +
    +

    Swift

    +
    class SUAppcast : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastItem + +
    +
    +
    +
    +
    +
    +

    The appcast item describing an update in the application’s appcast feed.

    + +

    An appcast item represents a single update item in the SUAppcast contained within the <item> element.

    + +

    Every appcast item must have a versionString, and either a fileURL or an infoURL. +All the remaining properties describing an update to the application are optional.

    + +

    Extended documentation and examples on using appcast item features are available at: +https://sparkle-project.org/documentation/publishing/

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUAppcastItem : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SUAppcastItem : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Sparkle’s default version comparator.

    + +

    This comparator is adapted from MacPAD, by Kevin Ballard. +It’s “dumb” in that it does essentially string comparison, +in components split by character type.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUStandardVersionComparator : NSObject <SUVersionComparison>
    + +
    +
    +

    Swift

    +
    class SUStandardVersionComparator : NSObject, SUVersionComparison
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    This class represents a response for permission to check updates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUUpdatePermissionResponse : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SUUpdatePermissionResponse : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUpdater + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

    + +
    +
    +

    The legacy API in Sparkle for controlling the update mechanism.

    + +

    This class is now deprecated and acts as a thin wrapper around SPUUpdater and SPUStandardUserDriver.

    + +

    If you are migrating to Sparkle 2, use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    
    +@interface SUUpdater : NSObject
    + +
    +
    +

    Swift

    +
    class SUUpdater : NSObject
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/closed.png b/documentation/api-reference/closed.png new file mode 100644 index 0000000..98cc2c9 Binary files /dev/null and b/documentation/api-reference/closed.png differ diff --git a/documentation/api-reference/css/highlight.css b/documentation/api-reference/css/highlight.css new file mode 100644 index 0000000..d0db0e1 --- /dev/null +++ b/documentation/api-reference/css/highlight.css @@ -0,0 +1,200 @@ +/* Credit to https://gist.github.com/wataru420/2048287 */ +.highlight { + /* Comment */ + /* Error */ + /* Keyword */ + /* Operator */ + /* Comment.Multiline */ + /* Comment.Preproc */ + /* Comment.Single */ + /* Comment.Special */ + /* Generic.Deleted */ + /* Generic.Deleted.Specific */ + /* Generic.Emph */ + /* Generic.Error */ + /* Generic.Heading */ + /* Generic.Inserted */ + /* Generic.Inserted.Specific */ + /* Generic.Output */ + /* Generic.Prompt */ + /* Generic.Strong */ + /* Generic.Subheading */ + /* Generic.Traceback */ + /* Keyword.Constant */ + /* Keyword.Declaration */ + /* Keyword.Pseudo */ + /* Keyword.Reserved */ + /* Keyword.Type */ + /* Literal.Number */ + /* Literal.String */ + /* Name.Attribute */ + /* Name.Builtin */ + /* Name.Class */ + /* Name.Constant */ + /* Name.Entity */ + /* Name.Exception */ + /* Name.Function */ + /* Name.Namespace */ + /* Name.Tag */ + /* Name.Variable */ + /* Operator.Word */ + /* Text.Whitespace */ + /* Literal.Number.Float */ + /* Literal.Number.Hex */ + /* Literal.Number.Integer */ + /* Literal.Number.Oct */ + /* Literal.String.Backtick */ + /* Literal.String.Char */ + /* Literal.String.Doc */ + /* Literal.String.Double */ + /* Literal.String.Escape */ + /* Literal.String.Heredoc */ + /* Literal.String.Interpol */ + /* Literal.String.Other */ + /* Literal.String.Regex */ + /* Literal.String.Single */ + /* Literal.String.Symbol */ + /* Name.Builtin.Pseudo */ + /* Name.Variable.Class */ + /* Name.Variable.Global */ + /* Name.Variable.Instance */ + /* Literal.Number.Integer.Long */ } + .highlight .c { + color: #999988; + font-style: italic; } + .highlight .err { + color: #a61717; + background-color: #e3d2d2; } + .highlight .k { + color: #000000; + font-weight: bold; } + .highlight .o { + color: #000000; + font-weight: bold; } + .highlight .cm { + color: #999988; + font-style: italic; } + .highlight .cp { + color: #999999; + font-weight: bold; } + .highlight .c1 { + color: #999988; + font-style: italic; } + .highlight .cs { + color: #999999; + font-weight: bold; + font-style: italic; } + .highlight .gd { + color: #000000; + background-color: #ffdddd; } + .highlight .gd .x { + color: #000000; + background-color: #ffaaaa; } + .highlight .ge { + color: #000000; + font-style: italic; } + .highlight .gr { + color: #aa0000; } + .highlight .gh { + color: #999999; } + .highlight .gi { + color: #000000; + background-color: #ddffdd; } + .highlight .gi .x { + color: #000000; + background-color: #aaffaa; } + .highlight .go { + color: #888888; } + .highlight .gp { + color: #555555; } + .highlight .gs { + font-weight: bold; } + .highlight .gu { + color: #aaaaaa; } + .highlight .gt { + color: #aa0000; } + .highlight .kc { + color: #000000; + font-weight: bold; } + .highlight .kd { + color: #000000; + font-weight: bold; } + .highlight .kp { + color: #000000; + font-weight: bold; } + .highlight .kr { + color: #000000; + font-weight: bold; } + .highlight .kt { + color: #445588; } + .highlight .m { + color: #009999; } + .highlight .s { + color: #d14; } + .highlight .na { + color: #008080; } + .highlight .nb { + color: #0086B3; } + .highlight .nc { + color: #445588; + font-weight: bold; } + .highlight .no { + color: #008080; } + .highlight .ni { + color: #800080; } + .highlight .ne { + color: #990000; + font-weight: bold; } + .highlight .nf { + color: #990000; } + .highlight .nn { + color: #555555; } + .highlight .nt { + color: #000080; } + .highlight .nv { + color: #008080; } + .highlight .ow { + color: #000000; + font-weight: bold; } + .highlight .w { + color: #bbbbbb; } + .highlight .mf { + color: #009999; } + .highlight .mh { + color: #009999; } + .highlight .mi { + color: #009999; } + .highlight .mo { + color: #009999; } + .highlight .sb { + color: #d14; } + .highlight .sc { + color: #d14; } + .highlight .sd { + color: #d14; } + .highlight .s2 { + color: #d14; } + .highlight .se { + color: #d14; } + .highlight .sh { + color: #d14; } + .highlight .si { + color: #d14; } + .highlight .sx { + color: #d14; } + .highlight .sr { + color: #009926; } + .highlight .s1 { + color: #d14; } + .highlight .ss { + color: #990073; } + .highlight .bp { + color: #999999; } + .highlight .vc { + color: #008080; } + .highlight .vg { + color: #008080; } + .highlight .vi { + color: #008080; } + .highlight .il { + color: #009999; } diff --git a/documentation/api-reference/css/jazzy.css b/documentation/api-reference/css/jazzy.css new file mode 100644 index 0000000..b1d61a4 --- /dev/null +++ b/documentation/api-reference/css/jazzy.css @@ -0,0 +1,412 @@ +html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td { + background: transparent; + border: 0; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; } + +body { + background-color: #fff; + font-family: -apple-system, Helvetica, freesans, Arial, sans-serif; + font-size: 16px; + line-height: 1.6; + -webkit-font-smoothing: subpixel-antialiased; + word-wrap: break-word; + min-height: 100vh; } + +h1, h2, h3 { + margin-top: 0.8em; + margin-bottom: 0.3em; + font-weight: 400; + color: black; } + +h1 { + font-size: 2.5em; } + +h2 { + font-size: 2em; + border-bottom: 1px solid #e2e2e2; } + +h4 { + font-size: 13px; + line-height: 1.5; + margin-top: 21px; } + +h5 { + font-size: 1.1em; } + +h6 { + font-size: 1.1em; + color: #777; } + +@media screen and (max-width: 767px) { + h1 { + font-size: 1.75em; } + h2 { + font-size: 1.4em; } } + +pre, code { + font-family: "SF Mono", Menlo, monospace; + font-size: 0.95em; + color: #777; + word-wrap: normal; } + +pre { + line-height: 1.6; } + +a { + color: #0088cc; + text-decoration: none; } + a code { + color: inherit; } + +ul { + padding-left: 15px; } + +li { + line-height: 1.8em; } + +img { + max-width: 100%; } + +blockquote { + margin-left: 0; + padding: 0 10px; + border-left: 4px solid #ccc; } + +hr { + height: 1px; + border: none; + background-color: #e2e2e2; } + +.footnote-ref { + display: inline-block; + scroll-margin-top: 87px; } + +.footnote-def { + scroll-margin-top: 87px; } + +.content-wrapper { + margin: 0 auto; + width: calc(100% - 32px); + max-width: 980px; } + +.wrapper { + display: flex; + flex-direction: column; + min-height: inherit; + overflow: auto; } + +.article-wrapper > *, +.nav-wrapper > *, +.footer-wrapper > * { + margin: 0 auto; + width: calc(100% - 32px); + max-width: 980px; } + +.article-wrapper { + flex: 1; + background-color: #fff; } + +.nav-wrapper { + background-color: #fafafa; } + +.footer-wrapper { + background-color: #f2f2f2; } + +header { + line-height: 48px; + background-color: #2C2C2C; + position: fixed; + width: 100%; + z-index: 3; } + header img { + padding-right: 6px; + vertical-align: -4px; + height: 16px; } + header a { + color: #fff; } + header p { + float: left; + color: #999; } + header .header-right { + float: right; + margin-left: 16px; } + +#breadcrumbs-container { + background-color: #2C2C2C; + position: fixed; + z-index: 2; + width: 100%; } + +#breadcrumbs { + color: rgba(255, 255, 255, 0.6); + height: 29px; + padding-bottom: 10px; + width: 100%; + margin-top: 48px; + white-space: nowrap; + overflow-x: scroll; } + #breadcrumbs #carat { + height: 10px; + margin: 0 5px; } + #breadcrumbs a { + color: white; } + +@media screen and (max-width: 767px) { + #breadcrumbs { + color: white; } } + +.nav-groups { + list-style-type: none; + padding-left: 0; } + +.nav-group-name { + font-size: 1.5rem; + font-weight: 500; + padding: 20px 0; } + .nav-group-name:not(:last-child) { + border-bottom: 1px solid #e2e2e2; } + .nav-group-name > a { + color: #333; } + +.nav-group-tasks { + column-count: 2; + list-style: none; + padding: 0; + margin-top: 5px; } + +.nav-group-task { + font-size: 1.1rem; + font-weight: 400; } + .nav-group-task a { + color: #888; } + +@media screen and (max-width: 767px) { + .nav-group-tasks { + column-count: 1; } } + +.main-content { + overflow: hidden; + padding-bottom: 60px; + margin-top: 87px; } + .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote { + margin-bottom: 1em; } + .main-content p { + line-height: 1.5; } + .main-content section { + max-width: 750px; } + .main-content section .section:first-child { + margin-top: 0; + padding-top: 0; } + .main-content section .task-group-section .task-group:first-of-type { + padding-top: 10px; } + .main-content section .task-group-section .task-group:first-of-type .section-name { + padding-top: 15px; } + .main-content section .heading:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + .main-content .section-name p { + margin-bottom: inherit; + line-height: inherit; } + .main-content .section-name code { + color: inherit; } + +.highlight { + background-color: #eee; + padding: 10px 12px; + border: 1px solid #e2e2e2; + border-radius: 4px; + overflow-x: auto; } + +.declaration .highlight { + overflow-x: initial; + padding: 0 40px 40px 0; + margin-bottom: -25px; + background-color: transparent; + border: none; } + +.section-name { + font-size: 1.5rem; + font-weight: 500; + margin: 0; } + +.task-group-section { + margin-top: 10px; + border-top: 1px solid #e2e2e2; } + +.task-group { + padding-top: 0px; } + .task-group > ul { + padding-left: 0; } + +.task-name-container a[name]:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + +.section-name-container { + position: relative; + display: inline-block; } + .section-name-container .section-name-link { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin-bottom: 0; } + .section-name-container .section-name { + position: relative; + pointer-events: none; + z-index: 1; } + .section-name-container .section-name a { + pointer-events: auto; } + +.item { + padding-top: 8px; + width: 100%; + list-style-type: none; } + .item a[name]:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + .item code { + background-color: transparent; + padding: 0; } + .item .token, .item .direct-link { + display: inline-block; + text-indent: -20px; + padding-left: 3px; + margin-left: 55px; + transition: all 300ms; } + .item .discouraged { + text-decoration: line-through; } + .item .token-open { + margin-left: 45px; } + .item .declaration-note { + font-size: .85em; + color: gray; + font-style: italic; } + +.pointer-container { + left: -23px; + padding-bottom: 13px; + position: relative; + width: 110%; } + +.pointer { + background: #f9f9f9; + border-left: 1px solid #e2e2e2; + border-top: 1px solid #e2e2e2; + height: 12px; + left: 21px; + top: -7px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + width: 12px; } + +.height-container { + display: none; + position: relative; + width: 100%; + overflow: hidden; } + .height-container .section { + position: relative; + background: #f9f9f9; + width: 100%; + padding: 10px 25px; + border: 1px solid #e2e2e2; + border-radius: 8px; + box-sizing: border-box; } + +.aside, .language { + padding: 6px 12px; + margin: 12px 0; + border-left: 5px solid #dddddd; + overflow-y: hidden; } + .aside .aside-title, .language .aside-title { + font-size: 12px; + font-weight: 600; + letter-spacing: 2px; + text-transform: uppercase; + padding-bottom: 0; + margin: 0; + color: #aaa; + -webkit-user-select: none; } + .aside p:last-child, .language p:last-child { + margin-bottom: 0; } + +.language { + border-left: 5px solid #cde9f4; } + .language .aside-title { + color: #4b8afb; } + +.aside-warning, .aside-deprecated, .aside-unavailable { + border-left: 5px solid #ff6666; } + .aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title { + color: #ff0000; } + +.graybox { + border-collapse: collapse; + width: 100%; } + .graybox p { + margin: 0; + word-break: break-word; + min-width: 50px; } + .graybox td { + border: 1px solid #e2e2e2; + padding: 5px 25px 5px 10px; + vertical-align: middle; } + .graybox tr td:first-of-type { + text-align: right; + padding: 7px; + vertical-align: top; + word-break: normal; + width: 40px; } + +.slightly-smaller { + font-size: 0.9em; } + +#footer { + padding: 25px 0; + box-sizing: border-box; } + #footer p { + margin: 0; + color: #aaa; + font-size: 0.8em; } + +html.dash header, html.dash #breadcrumbs { + display: none; } + +html.dash .main-content { + width: calc(100% - 32px); + max-width: 980px; + margin-left: 0; + border: none; + width: 100%; + top: 0; + padding-bottom: 0; } + +html.dash .height-container { + display: block; } + +html.dash .item .token { + margin-left: 0; } + +html.dash .content-wrapper { + width: auto; } + +html.dash #footer { + position: static; } + +@media screen and (max-width: 767px) { + .no-mobile { + display: none; } } diff --git a/documentation/api-reference/dir_3429d7ca3cc00bc309a2ec9474a0a508.html b/documentation/api-reference/dir_3429d7ca3cc00bc309a2ec9474a0a508.html new file mode 100644 index 0000000..d761f11 --- /dev/null +++ b/documentation/api-reference/dir_3429d7ca3cc00bc309a2ec9474a0a508.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Sparkle Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Sparkle Directory Reference
+
+
+ + +

+Directories

+
+ + + + diff --git a/documentation/api-reference/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html b/documentation/api-reference/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html new file mode 100644 index 0000000..a5e3a1f --- /dev/null +++ b/documentation/api-reference/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Sparkle/Autoupdate Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Autoupdate Directory Reference
+
+
+
+ + + + diff --git a/documentation/api-reference/dir_e955798b210d66193b03eac1f9f3f1d5.html b/documentation/api-reference/dir_e955798b210d66193b03eac1f9f3f1d5.html new file mode 100644 index 0000000..132c842 --- /dev/null +++ b/documentation/api-reference/dir_e955798b210d66193b03eac1f9f3f1d5.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgress Directory Reference
+
+
+
+ + + + diff --git a/documentation/api-reference/doc.png b/documentation/api-reference/doc.png new file mode 100644 index 0000000..17edabf Binary files /dev/null and b/documentation/api-reference/doc.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Info.plist b/documentation/api-reference/docsets/Sparkle.docset/Contents/Info.plist new file mode 100644 index 0000000..fbc6050 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleIdentifier + com.jazzy.sparkle + CFBundleName + Sparkle + DocSetPlatformFamily + sparkle + isDashDocset + + dashIndexFilePath + index.html + isJavaScriptEnabled + + DashDocSetFamily + dashtoc + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUDownloadData.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUDownloadData.html new file mode 100644 index 0000000..bdf3473 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUDownloadData.html @@ -0,0 +1,364 @@ + + + + SPUDownloadData Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUDownloadData

+
+
+

Objective-C

+
@interface SPUDownloadData : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SPUDownloadData : NSObject, NSSecureCoding
+ +
+
+

A class for containing downloaded data along with some information about it.

+ +
+
+
+
    +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The raw data that was downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSData *_Nonnull data;
    + +
    +
    +

    Swift

    +
    var data: Data { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + URL + +
    +
    +
    +
    +
    +
    +

    The URL that was fetched from.

    + +

    This may be different from the URL in the request if there were redirects involved.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSURL *_Nonnull URL;
    + +
    +
    +

    Swift

    +
    var url: URL { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + textEncodingName + +
    +
    +
    +
    +
    +
    +

    The IANA charset encoding name if available. Eg: “utf-8”

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSString *textEncodingName;
    + +
    +
    +

    Swift

    +
    var textEncodingName: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + MIMEType + +
    +
    +
    +
    +
    +
    +

    The MIME type if available. Eg: “text/plain”

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSString *MIMEType;
    + +
    +
    +

    Swift

    +
    var mimeType: String? { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUpdaterController.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUpdaterController.html new file mode 100644 index 0000000..7f3d5ee --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUpdaterController.html @@ -0,0 +1,549 @@ + + + + SPUStandardUpdaterController Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUpdaterController

+
+
+

Objective-C

+
@interface SPUStandardUpdaterController : NSObject
+ +
+
+

Swift

+
class SPUStandardUpdaterController : NSObject
+ +
+
+

A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

+ +

This class can be instantiated in a nib or created programatically using -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

+ +

The controller’s updater targets the application’s main bundle and uses Sparkle’s standard user interface. +Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

+ +

The controller creates an SPUUpdater instance using a SPUStandardUserDriver and allows hooking up the check for updates action and handling menu item validation. +It also allows hooking up the updater’s and user driver’s delegates.

+ +

If you need more control over what bundle you want to update, or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

+ +
+
+
+
    +
  • +
    + + + + updaterDelegate + +
    +
    +
    +
    +
    +
    +

    Interface builder outlet for the updater’s delegate.

    + +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<SPUUpdaterDelegate> updaterDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userDriverDelegate + +
    +
    +
    +
    +
    +
    +

    Interface builder outlet for the user driver’s delegate.

    + +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<SPUStandardUserDriverDelegate> userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updater + +
    +
    +
    +
    +
    +
    +

    Accessible property for the updater. Some properties on the updater can be binded via KVO

    + +

    When instantiated from a nib, don’t perform update checks before the application has finished launching in a MainMenu nib (i.e applicationDidFinishLaunching:) or before the corresponding window/view controller has been loaded (i.e, windowDidLoad or viewDidLoad). The updater is not guaranteed to be started yet before these points.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUUpdater *_Nonnull updater;
    + +
    +
    +

    Swift

    +
    var updater: SPUUpdater { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userDriver + +
    +
    +
    +
    +
    +
    +

    Accessible property for the updater’s user driver.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUStandardUserDriver *_Nonnull userDriver;
    + +
    +
    +

    Swift

    +
    var userDriver: SPUStandardUserDriver { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Create a new SPUStandardUpdaterController from a nib.

    + +

    You cannot call this initializer directly. You must instantiate a SPUStandardUpdaterController inside of a nib (typically the MainMenu nib) to use it.

    + +

    To create a SPUStandardUpdaterController programatically, use -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate: instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new SPUStandardUpdaterController programmatically.

    + +

    The updater is started automatically. See -startUpdater for more information.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithUpdaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate
    +         userDriverDelegate:
    +             (nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

    + +

    You can specify whether or not you want to start the updater immediately. +If you do not start the updater, you must invoke -startUpdater at a later time to start it.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithStartingUpdater:(BOOL)startUpdater
    +            updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate
    +         userDriverDelegate:
    +             (nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -startUpdater + +
    +
    +
    +
    +
    +
    +

    Starts the updater if it has not already been started.

    + +

    You should only call this method yourself if you opted out of starting the updater on initialization. +Hence, do not call this yourself if you are instantiating this controller from a nib.

    + +

    This invokes -[SPUUpdater startUpdater:]. If the application is misconfigured with Sparkle, an error is logged and an alert is shown to the user (after a few seconds) to contact the developer. +If you want more control over this behavior, you can create your own SPUUpdater instead of using SPUStandardUpdaterController.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)startUpdater;
    + +
    +
    +

    Swift

    +
    func startUpdater()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates: + +
    +
    +
    +
    +
    +
    +

    Explicitly checks for updates and displays a progress dialog while doing so.

    + +

    This method is meant for a main menu item. +Connect any NSMenuItem to this action in Interface Builder or programmatically, +and Sparkle will check for updates and report back its findings verbosely when it is invoked.

    + +

    When the target/action of the menu item is set to this controller and this method, +this controller also handles enabling/disabling the menu item by checking +-[SPUUpdater canCheckForUpdates]

    + +

    This action checks updates by invoking -[SPUUpdater checkForUpdates]

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates:(nullable id)sender;
    + +
    +
    +

    Swift

    +
    @IBAction func checkForUpdates(_ sender: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUserDriver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUserDriver.html new file mode 100644 index 0000000..3b7de4b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUStandardUserDriver.html @@ -0,0 +1,325 @@ + + + + SPUStandardUserDriver Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUserDriver

+
+
+

Objective-C

+
@interface SPUStandardUserDriver : NSObject <SPUUserDriver>
+ +
+
+

Swift

+
class SPUStandardUserDriver : NSObject, SPUUserDriver
+ +
+
+

Sparkle’s standard built-in user driver for updater interactions

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a Sparkle’s standard user driver for user update interactions

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)
    +    initWithHostBundle:(nonnull NSBundle *)hostBundle
    +              delegate:(nullable id<SPUStandardUserDriverDelegate>)delegate;
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + hostBundle + + +
    +

    The target bundle of the host that is being updated.

    +
    +
    + + delegate + + +
    +

    The optional delegate to this user driver.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Use initWithHostBundle:delegate: instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdatePermissionRequest.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdatePermissionRequest.html new file mode 100644 index 0000000..de7af8a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdatePermissionRequest.html @@ -0,0 +1,318 @@ + + + + SPUUpdatePermissionRequest Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdatePermissionRequest

+
+
+

Objective-C

+
@interface SPUUpdatePermissionRequest : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SPUUpdatePermissionRequest : NSObject, NSSecureCoding
+ +
+
+

This class represents information needed to make a permission request for checking updates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new update permission request instance.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)initWithSystemProfile:
    +    (nonnull NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfile;
    + +
    +
    +

    Swift

    +
    init(systemProfile: [[String : String]])
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + systemProfile + + +
    +

    The system profile information.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + systemProfile + +
    +
    +
    +
    +
    +
    +

    A read-only property for the user’s system profile.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *_Nonnull systemProfile;
    + +
    +
    +

    Swift

    +
    var systemProfile: [[String : String]] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdater.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdater.html new file mode 100644 index 0000000..d672f91 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdater.html @@ -0,0 +1,1055 @@ + + + + SPUUpdater Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdater

+
+
+

Objective-C

+
@interface SPUUpdater : NSObject
+ +
+
+

Swift

+
class SPUUpdater : NSObject
+ +
+
+

The main API in Sparkle for controlling the update mechanism.

+ +

This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

+ +

For convenience, you can create a standard or nib instantiable updater by using SPUStandardUpdaterController.

+ +

Prefer to set initial properties in your bundle’s Info.plist as described in Customizing Sparkle.

+ +

Otherwise only if you need dynamic behavior (eg. for user preferences) should you set properties on the updater such as:

+ +
    +
  • automaticallyChecksForUpdates
  • +
  • updateCheckInterval
  • +
  • automaticallyDownloadsUpdates
  • +
  • feedURL
  • +
+ +

Please view the documentation on each of these properties for more detail if you are to configure them dynamically.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new SPUUpdater instance

    + +

    This creates an updater, but to start it and schedule update checks -startUpdater: needs to be invoked first.

    + +

    Related: See SPUStandardUpdaterController which wraps a SPUUpdater instance and is suitable for instantiating inside of nib files.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)initWithHostBundle:(nonnull NSBundle *)hostBundle
    +                         applicationBundle:(nonnull NSBundle *)applicationBundle
    +                                userDriver:(nonnull id<SPUUserDriver>)userDriver
    +                                  delegate:
    +                                      (nullable id<SPUUpdaterDelegate>)delegate;
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + + + +
    + + hostBundle + + +
    +

    The bundle that should be targetted for updating.

    +
    +
    + + applicationBundle + + +
    +

    The application bundle that should be waited for termination and relaunched (unless overridden). Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle.

    +
    +
    + + userDriver + + +
    +

    The user driver that Sparkle uses for user update interaction.

    +
    +
    + + delegate + + +
    +

    The delegate for SPUUpdater.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

    + +

    If you want to drop an updater into a nib, use SPUStandardUpdaterController.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -startUpdater: + +
    +
    +
    +
    +
    +
    +

    Starts the updater.

    + +

    This method first checks if Sparkle is configured properly. A valid feed URL should be set before this method is invoked.

    + +

    If the configuration is valid, an update cycle is started in the next main runloop cycle. +During this cycle, a permission prompt may be brought up (if needed) for checking if the user wants automatic update checking. +Otherwise if automatic update checks are enabled, a scheduled update alert may be brought up if enough time has elapsed since the last check. +See automaticallyChecksForUpdates for more information.

    + +

    After starting the updater and before the next runloop cycle, one of -checkForUpdates, -checkForUpdatesInBackground, or -checkForUpdateInformation can be invoked. +This may be useful if you want to check for updates immediately or without showing a potential permission prompt.

    + +

    If the updater cannot be started (i.e, due to a configuration issue in the application), you may want to fall back appropriately. +For example, the standard updater controller (SPUStandardUpdaterController) alerts the user that the app is misconfigured and to contact the developer.

    + +

    This must be called on the main thread.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)startUpdater:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    func start() throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + error + + +
    +

    The error that is populated if this method fails. Pass NULL if not interested in the error information.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater started otherwise NO with a populated error

    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates + +
    +
    +
    +
    +
    +
    +

    Checks for updates, and displays progress while doing so if needed.

    + +

    This is meant for users initiating a new update check or checking the current update progress.

    + +

    If an update hasn’t started, the user may be shown that a new check for updates is occurring. +If an update has already been downloaded or begun installing from a previous session, the user may be presented to install that update. +If the user is already being presented with an update, that update will be shown to the user in active focus.

    + +

    This will find updates that the user has previously opted into skipping.

    + +

    See canCheckForUpdates property which can determine when this method may be invoked.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates;
    + +
    +
    +

    Swift

    +
    func checkForUpdates()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Checks for updates, but does not display any UI unless an update is found.

    + +

    This is meant for programmatically initating a check for updates. +That is, it will display no UI unless it finds an update, in which case it proceeds as usual. +This will not find updates that the user has opted into skipping.

    + +

    Note if there is no resumable update found, and automated updating is turned on, +the update will be downloaded in the background without disrupting the user.

    + +

    This method does not do anything if there is a sessionInProgress.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdatesInBackground;
    + +
    +
    +

    Swift

    +
    func checkForUpdatesInBackground()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Begins a “probing” check for updates which will not actually offer to +update to that version.

    + +

    However, the delegate methods +-[SPUUpdaterDelegate updater:didFindValidUpdate:] and +-[SPUUpdaterDelegate updaterDidNotFindUpdate:] will be called, +so you can use that information in your UI.

    + +

    -[SPUUpdaterDelegate updater:didFinishUpdateCycleForUpdateCheck:error:] will be called when +this probing check is completed.

    + +

    Updates that have been skipped by the user will not be found.

    + +

    This method does not do anything if there is a sessionInProgress.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdateInformation;
    + +
    +
    +

    Swift

    +
    func checkForUpdateInformation()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + canCheckForUpdates + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not updates can be checked by the user.

    + +

    An update check can be made by the user when an update session isn’t in progress, or when an update or its progress is being shown to the user.

    + +

    This property is suitable to use for menu item validation for seeing if -checkForUpdates can be invoked.

    + +

    Note this property does not reflect whether or not an update session is in progress. Please see sessionInProgress property instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL canCheckForUpdates;
    + +
    +
    +

    Swift

    +
    var canCheckForUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sessionInProgress + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not an update session is in progress.

    + +

    An update session is in progress when the appcast is being downloaded, an update is being downloaded, +an update is being shown, update permission is being requested, or the installer is being started.

    + +

    An active session is when Sparkle’s fired scheduler is running.

    + +

    Note an update session may not be running even though Sparkle’s installer (ran as a separate process) may be running, +or even though the update has been downloaded but the installation has been deferred. In both of these cases, a new update session +may be activated with the update resumed at a later point (automatically or manually).

    + +

    See also:

    + + + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sessionInProgress;
    + +
    +
    +

    Swift

    +
    var sessionInProgress: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A property indicating whether or not to check for updates automatically.

    + +

    By default, Sparkle asks users on second launch for permission if they want automatic update checks enabled +and sets this property based on their response. If SUEnableAutomaticChecks is set in the Info.plist, +this permission request is not performed however.

    + +

    Setting this property will persist in the host bundle’s user defaults.

    + +

    The update schedule cycle will be reset in a short delay after the property’s new value is set. +This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    A property indicating the current automatic update check interval in seconds.

    + +

    Setting this property will persist in the host bundle’s user defaults. +For this reason, only set this property if you need dynamic behavior (eg user preferences). +Otherwise prefer to set SUScheduledCheckInterval directly in your Info.plist.

    + +

    The update schedule cycle will be reset in a short delay after the property’s new value is set. +This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A property indicating whether or not updates can be automatically downloaded in the background.

    + +

    By default, updates are not automatically downloaded.

    + +

    Note that the developer can disallow automatic downloading of updates from being enabled. +In this case, this property will return NO regardless of how this property is set.

    + +

    Setting this property will persist in the host bundle’s user defaults. +For this reason, only set this property if you need dynamic behavior (eg user preferences). +Otherwise prefer to set SUAutomaticallyUpdate directly in your Info.plist.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + feedURL + +
    +
    +
    +
    +
    +
    +

    The URL of the appcast used to download update information.

    + +

    If the updater’s delegate implements -[SPUUpdaterDelegate feedURLStringForUpdater:], this will return that feed URL. +Otherwise if the feed URL has been set before, the feed URL returned will be retrieved from the host bundle’s user defaults. +Otherwise the feed URL in the host bundle’s Info.plist will be returned. +If no feed URL can be retrieved, returns nil.

    + +

    This property must be called on the main thread; calls from background threads will return nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly, nullable) NSURL *feedURL;
    + +
    +
    +

    Swift

    +
    var feedURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hostBundle + +
    +
    +
    +
    +
    +
    +

    The host bundle that is being updated.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *_Nonnull hostBundle;
    + +
    +
    +

    Swift

    +
    var hostBundle: Bundle { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userAgentString + +
    +
    +
    +
    +
    +
    +

    The user agent used when checking for updates.

    + +

    By default the user agent string returned is in the format: +$(BundleDisplayName)/$(BundleDisplayVersion) Sparkle/$(SparkleDisplayVersion)

    + +

    BundleDisplayVersion is derived from the application Info.plist’s CFBundleShortVersionString.

    + +

    This default implementation can be overrided.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *_Nonnull userAgentString;
    + +
    +
    +

    Swift

    +
    var userAgentString: String { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + httpHeaders + +
    +
    +
    +
    +
    +
    +

    The HTTP headers used when checking for updates, downloading release notes, and downloading updates.

    + +

    The keys of this dictionary are HTTP header fields and values are corresponding values.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, nullable) NSDictionary<NSString *, NSString *> *httpHeaders;
    + +
    +
    +

    Swift

    +
    var httpHeaders: [String : String]? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    A property indicating whether or not the user’s system profile information is sent when checking for updates.

    + +

    Setting this property will persist in the host bundle’s user defaults.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lastUpdateCheckDate + +
    +
    +
    +
    +
    +
    +

    The date of the last update check or nil if no check has been performed yet.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly, nullable) NSDate *lastUpdateCheckDate;
    + +
    +
    +

    Swift

    +
    var lastUpdateCheckDate: Date? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -resetUpdateCycle + +
    +
    +
    +
    +
    +
    +

    Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

    + +

    This call does not change the date of the next check, but only the internal timer.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)resetUpdateCycle;
    + +
    +
    +

    Swift

    +
    func resetUpdateCycle()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + systemProfileArray + +
    +
    +
    +
    +
    +
    +

    The system profile information that is sent when checking for updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *_Nonnull systemProfileArray;
    + +
    +
    +

    Swift

    +
    var systemProfileArray: [[String : String]] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdaterSettings.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdaterSettings.html new file mode 100644 index 0000000..5488c33 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUpdaterSettings.html @@ -0,0 +1,432 @@ + + + + SPUUpdaterSettings Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdaterSettings

+
+
+

Objective-C

+
@interface SPUUpdaterSettings : NSObject
+ +
+
+

Swift

+
class SPUUpdaterSettings : NSObject
+ +
+
+

This class can be used for reading certain updater settings.

+ +

It retrieves the settings by first looking into the host’s user defaults. +If the setting is not found in there, then the host’s Info.plist file is looked at.

+ +
+
+
+
    +
  • +
    + + + + -initWithHostBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initWithHostBundle:(NSBundle *)hostBundle;
    + +
    +
    +

    Swift

    +
    init(hostBundle: Bundle)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatic update checks are enabled.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    The regular update check interval.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatically downloading updates is allowed to be turned on by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL allowsAutomaticUpdates;
    + +
    +
    +

    Swift

    +
    var allowsAutomaticUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not automatically downloading updates is enabled by the user or developer.

    + +

    Note this does not indicate whether or not automatic downloading of updates is allowable. + See -allowsAutomaticUpdates property for that.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not anonymous system profile information is sent when checking for updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUserUpdateState.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUserUpdateState.html new file mode 100644 index 0000000..44f3f52 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SPUUserUpdateState.html @@ -0,0 +1,331 @@ + + + + SPUUserUpdateState Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateState

+
+
+

Objective-C

+
@interface SPUUserUpdateState : NSObject
+ +
+
+

Swift

+
class SPUUserUpdateState : NSObject
+ +
+
+

This represents the user’s current update state.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stage + +
    +
    +
    +
    +
    +
    +

    The current update stage.

    + +

    This stage indicates if data has been already downloaded or not, or if an update is currently being installed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) SPUUserUpdateStage stage;
    + +
    +
    +

    Swift

    +
    var stage: SPUUserUpdateStage { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userInitiated + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update check was initiated by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL userInitiated;
    + +
    +
    +

    Swift

    +
    var userInitiated: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcast.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcast.html new file mode 100644 index 0000000..8a04165 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcast.html @@ -0,0 +1,299 @@ + + + + SUAppcast Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUAppcast

+
+
+

Objective-C

+
@interface SUAppcast : NSObject
+ +
+
+

Swift

+
class SUAppcast : NSObject
+ +
+
+

The appcast representing a collection of SUAppcastItem items in the feed.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + items + +
    +
    +
    +
    +
    +
    +

    The collection of update items.

    + +

    These SUAppcastItem items are in the same order as specified in the appcast XML feed and are thus not sorted by version.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSArray<SUAppcastItem *> *_Nonnull items;
    + +
    +
    +

    Swift

    +
    var items: [SUAppcastItem] { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcastItem.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcastItem.html new file mode 100644 index 0000000..cefb2fa --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUAppcastItem.html @@ -0,0 +1,1406 @@ + + + + SUAppcastItem Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUAppcastItem

+
+
+

Objective-C

+
@interface SUAppcastItem : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SUAppcastItem : NSObject, NSSecureCoding
+ +
+
+

The appcast item describing an update in the application’s appcast feed.

+ +

An appcast item represents a single update item in the SUAppcast contained within the <item> element.

+ +

Every appcast item must have a versionString, and either a fileURL or an infoURL. +All the remaining properties describing an update to the application are optional.

+ +

Extended documentation and examples on using appcast item features are available at: +https://sparkle-project.org/documentation/publishing/

+ +
+
+
+
    +
  • +
    + + + + versionString + +
    +
    +
    +
    +
    +
    +

    The version of the update item.

    + +

    Sparkle uses this property to compare update items and determine the best available update item in the SUAppcast.

    + +

    This corresponds to the application update’s CFBundleVersion

    + +

    This is extracted from the <sparkle:version> element, or the sparkle:version attribute from the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSString *_Nonnull versionString;
    + +
    +
    +

    Swift

    +
    var versionString: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + displayVersionString + +
    +
    +
    +
    +
    +
    +

    The human-readable display version of the update item if provided.

    + +

    This is the version string shown to the user when they are notified of a new update.

    + +

    This corresponds to the application update’s CFBundleShortVersionString

    + +

    This is extracted from the <sparkle:shortVersionString> element, or the sparkle:shortVersionString attribute from the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *displayVersionString;
    + +
    +
    +

    Swift

    +
    var displayVersionString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + fileURL + +
    +
    +
    +
    +
    +
    +

    The file URL to the update item if provided.

    + +

    This download contains the actual update Sparkle will attempt to install. +In cases where a download cannot be provided, an infoURL must be provided instead.

    + +

    A file URL should have an accompanying contentLength provided.

    + +

    This is extracted from the url attribute in the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *fileURL;
    + +
    +
    +

    Swift

    +
    var fileURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + contentLength + +
    +
    +
    +
    +
    +
    +

    The content length of the download in bytes.

    + +

    This property is used as a fallback when the server doesn’t report the content length of the download. +In that case, it is used to report progress of the downloading update to the user.

    + +

    A warning is outputted if this property is not equal the server’s expected content length (if provided).

    + +

    This is extracted from the length attribute in the <enclosure> element. +It should be specified if a fileURL is provided.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) uint64_t contentLength;
    + +
    +
    +

    Swift

    +
    var contentLength: UInt64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + infoURL + +
    +
    +
    +
    +
    +
    +

    The info URL to the update item if provided.

    + +

    This informational link is used to direct the user to learn more about an update they cannot download/install directly from within the application. +The link should point to the product’s web page.

    + +

    The informational link will be used if informationOnlyUpdate is YES

    + +

    This is extracted from the <link> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *infoURL;
    + +
    +
    +

    Swift

    +
    var infoURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + informationOnlyUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is only informational and has no download.

    + +

    If infoURL is not present, this is NO

    + +

    If fileURL is not present, this is YES

    + +

    Otherwise this is determined based on the contents extracted from the <sparkle:informationalUpdate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isInformationOnlyUpdate) BOOL informationOnlyUpdate;
    + +
    +
    +

    Swift

    +
    var isInformationOnlyUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + title + +
    +
    +
    +
    +
    +
    +

    The title of the appcast item if provided.

    + +

    This is extracted from the <title> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *title;
    + +
    +
    +

    Swift

    +
    var title: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dateString + +
    +
    +
    +
    +
    +
    +

    The date string of the appcast item if provided.

    + +

    The date property is constructed from this property and expects this string to comply with the following date format: +E, dd MMM yyyy HH:mm:ss Z

    + +

    This is extracted from the <pubDate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *dateString;
    + +
    +
    +

    Swift

    +
    var dateString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + date + +
    +
    +
    +
    +
    +
    +

    The date constructed from the dateString property if provided.

    + +

    Sparkle by itself only uses this property for phased group rollouts specified via phasedRolloutInterval, but clients may query this property too.

    + +

    This date is constructed using the en_US locale.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSDate *date;
    + +
    +
    +

    Swift

    +
    var date: Date? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + releaseNotesURL + +
    +
    +
    +
    +
    +
    +

    The release notes URL of the appcast item if provided.

    + +

    This external link points to an HTML file that Sparkle downloads and renders to show the user a new or old update item’s changelog.

    + +

    An alternative to using an external release notes link is providing an embedded itemDescription.

    + +

    This is extracted from the <sparkle:releaseNotesLink> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, nullable) NSURL *releaseNotesURL;
    + +
    +
    +

    Swift

    +
    var releaseNotesURL: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + itemDescription + +
    +
    +
    +
    +
    +
    +

    The description of the appcast item if provided.

    + +

    A description may be provided for inline/embedded release notes for new updates using <![CDATA[...]]> +This is an alternative to providing a releaseNotesURL.

    + +

    This is extracted from the <description> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *itemDescription;
    + +
    +
    +

    Swift

    +
    var itemDescription: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + minimumSystemVersion + +
    +
    +
    +
    +
    +
    +

    The required minimum system operating version string for this update if provided.

    + +

    This version string should contain three period-separated components.

    + +

    Example: 10.12.0

    + +

    Use minimumOperatingSystemVersionIsOK property to test if the current running system passes this requirement.

    + +

    This is extracted from the <sparkle:minimumSystemVersion> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *minimumSystemVersion;
    + +
    +
    +

    Swift

    +
    var minimumSystemVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not the current running system passes the minimumSystemVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
    + +
    +
    +

    Swift

    +
    var minimumOperatingSystemVersionIsOK: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maximumSystemVersion + +
    +
    +
    +
    +
    +
    +

    The required maximum system operating version string for this update if provided.

    + +

    A maximum system operating version requirement should only be made in unusual scenarios.

    + +

    This version string should contain three period-separated components.

    + +

    Example: 10.13.0

    + +

    Use maximumOperatingSystemVersionIsOK property to test if the current running system passes this requirement.

    + +

    This is extracted from the <sparkle:maximumSystemVersion> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *maximumSystemVersion;
    + +
    +
    +

    Swift

    +
    var maximumSystemVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Indicates whether or not the current running system passes the maximumSystemVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
    + +
    +
    +

    Swift

    +
    var maximumOperatingSystemVersionIsOK: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channel + +
    +
    +
    +
    +
    +
    +

    The channel the update item is on if provided.

    + +

    An update item may specify a custom channel name (such as beta) that can only be found by updaters that filter for that channel. +If no channel is provided, the update item is assumed to be on the default channel.

    + +

    This is extracted from the <sparkle:channel> element. +Old applications must be using Sparkle 2 or later to interpret the channel element and to ignore unmatched channels.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly, nullable) NSString *channel;
    + +
    +
    +

    Swift

    +
    var channel: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + installationType + +
    +
    +
    +
    +
    +
    +

    The installation type of the update at fileURL

    + +

    This may be:

    + +
      +
    • application - indicates this is a regular application update.
    • +
    • package - indicates this is a guided package installer update.
    • +
    • interactive-package - indicates this is an interactive package installer update (deprecated; use “package” instead)
    • +
    + +

    This is extracted from the sparkle:installationType attribute in the <enclosure> element.

    + +

    If no installation type is provided in the enclosure, the installation type is inferred from the fileURL file extension instead.

    + +

    If the file extension is pkg or mpkg, the installation type is package otherwise it is application

    + +

    Hence, the installation type in the enclosure element only needs to be specified for package based updates distributed inside of a zip or other archive format.

    + +

    Old applications must be using Sparkle 1.26 or later to support downloading bare package updates (pkg or mpkg) that are not additionally archived inside of a zip or other archive format.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSString *_Nonnull installationType;
    + +
    +
    +

    Swift

    +
    var installationType: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + phasedRolloutInterval + +
    +
    +
    +
    +
    +
    +

    The phased rollout interval of the update item in seconds if provided.

    + +

    This is the interval between when different groups of users are notified of a new update.

    + +

    For this property to be used by Sparkle, the published date on the update item must be present as well.

    + +

    After each interval after the update item’s date, a new group of users become eligible for being notified of the new update.

    + +

    This is extracted from the <sparkle:phasedRolloutInterval> element.

    + +

    Old applications must be using Sparkle 1.25 or later to support phased rollout intervals, otherwise they may assume updates are immediately available.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSNumber *phasedRolloutInterval;
    + +
    +
    +

    Swift

    +
    @NSCopying var phasedRolloutInterval: NSNumber? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The minimum bundle version string this update requires for automatically downloading and installing updates if provided.

    + +

    If an application’s bundle version meets this version requirement, it can install the new update item in the background automatically.

    + +

    Otherwise if the requirement is not met, the user is always prompted to install the update. In this case, the update is assumed to be a majorUpgrade.

    + +

    If the update is a majorUpgrade and the update is skipped by the user, other future update alerts with the same minimumAutoupdateVersion will also be skipped.

    + +

    This version string corresponds to the application’s CFBundleVersion

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *minimumAutoupdateVersion;
    + +
    +
    +

    Swift

    +
    var minimumAutoupdateVersion: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + majorUpgrade + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is a major upgrade.

    + +

    An update is a major upgrade if the application’s bundle version doesn’t meet the minimumAutoupdateVersion requirement.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isMajorUpgrade) BOOL majorUpgrade;
    + +
    +
    +

    Swift

    +
    var isMajorUpgrade: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + criticalUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is critical.

    + +

    Critical updates are shown to the user more promptly. Sparkle’s standard user interface also does not allow them to be skipped.

    + +

    This is determined and extracted from a top-level <sparkle:criticalUpdate> element or a sparkle:criticalUpdate element inside of a sparkle:tags element.

    + +

    Old applications must be using Sparkle 2 or later to support the top-level <sparkle:criticalUpdate> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isCriticalUpdate) BOOL criticalUpdate;
    + +
    +
    +

    Swift

    +
    var isCriticalUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + osString + +
    +
    +
    +
    +
    +
    +

    Specifies the operating system the download update is available for if provided.

    + +

    If this property is not provided, then the supported operating system is assumed to be macOS.

    + +

    Known potential values for this string are macos and windows

    + +

    Sparkle on Mac ignores update items that are for other operating systems. +This is only useful for sharing appcasts between Sparkle on Mac and Sparkle on other operating systems.

    + +

    Use macOsUpdate property to test if this update item is for macOS.

    + +

    This is extracted from the sparkle:os attribute in the <enclosure> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSString *osString;
    + +
    +
    +

    Swift

    +
    var osString: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + macOsUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not this update item is for macOS.

    + +

    This is determined from the osString property.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isMacOsUpdate) BOOL macOsUpdate;
    + +
    +
    +

    Swift

    +
    var isMacOsUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + deltaUpdates + +
    +
    +
    +
    +
    +
    +

    The delta updates for this update item.

    + +

    Sparkle uses these to download and apply a smaller update based on the version the user is updating from.

    + +

    The key is based on the sparkle:version of the update. +The value is an update item that will have deltaUpdate be YES

    + +

    Clients typically should not need to examine the contents of the delta updates.

    + +

    This is extracted from the <sparkle:deltas> element.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly, nullable) NSDictionary<NSString *, SUAppcastItem *> *deltaUpdates;
    + +
    +
    +

    Swift

    +
    var deltaUpdates: [String : SUAppcastItem]? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + deltaUpdate + +
    +
    +
    +
    +
    +
    +

    Indicates whether or not the update item is a delta update.

    + +

    An update item is a delta update if it is in the deltaUpdates of another update item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, getter=isDeltaUpdate) BOOL deltaUpdate;
    + +
    +
    +

    Swift

    +
    var isDeltaUpdate: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + propertiesDictionary + +
    +
    +
    +
    +
    +
    +

    The dictionary representing the entire appcast item.

    + +

    This is useful for querying custom extensions or elements from the appcast item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy, readonly) NSDictionary *_Nonnull propertiesDictionary;
    + +
    +
    +

    Swift

    +
    var propertiesDictionary: [AnyHashable : Any] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +emptyAppcastItem + +
    +
    +
    +
    +
    +
    +

    An empty appcast item.

    + +

    This may be used as a potential return value in -[SPUUpdaterDelegate bestValidUpdateInAppcast:forUpdater:]

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (nonnull instancetype)emptyAppcastItem;
    + +
    +
    +

    Swift

    +
    class func empty() -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -initWithDictionary: + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any])
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any], failureReason error: AutoreleasingUnsafeMutablePointer<NSString?>?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
    + +
    +
    +

    Swift

    +
    init?(dictionary dict: [AnyHashable : Any], relativeTo appcastURL: URL?, failureReason error: AutoreleasingUnsafeMutablePointer<NSString?>?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUStandardVersionComparator.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUStandardVersionComparator.html new file mode 100644 index 0000000..5223321 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUStandardVersionComparator.html @@ -0,0 +1,374 @@ + + + + SUStandardVersionComparator Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUStandardVersionComparator

+
+
+

Objective-C

+
@interface SUStandardVersionComparator : NSObject <SUVersionComparison>
+ +
+
+

Swift

+
class SUStandardVersionComparator : NSObject, SUVersionComparison
+ +
+
+

Sparkle’s default version comparator.

+ +

This comparator is adapted from MacPAD, by Kevin Ballard. +It’s “dumb” in that it does essentially string comparison, +in components split by character type.

+ +
+
+
+
    +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Initializes a new instance of the standard version comparator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull instancetype)init;
    + +
    +
    +

    Swift

    +
    init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultComparator + +
    +
    +
    +
    +
    +
    +

    A singleton instance of the comparator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (class, nonatomic, readonly) SUStandardVersionComparator *_Nonnull defaultComparator;
    + +
    +
    +

    Swift

    +
    class var `default`: SUStandardVersionComparator { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Compares two version strings through textual analysis.

    + +

    These version strings should be in the format of x, x.y, or x.y.z where each component is a number. +For example, valid version strings include “1.5.3”, “500”, or “4000.1” +These versions that are compared correspond to the CFBundleVersion values of the updates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (NSComparisonResult)compareVersion:(nonnull NSString *)versionA
    +                           toVersion:(nonnull NSString *)versionB;
    + +
    +
    +

    Swift

    +
    func compareVersion(_ versionA: String, toVersion versionB: String) -> ComparisonResult
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + versionA + + +
    +

    The first version string to compare.

    +
    +
    + + versionB + + +
    +

    The second version string to compare.

    +
    +
    +
    +
    +

    Return Value

    +

    A comparison result between versionA and versionB

    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdatePermissionResponse.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdatePermissionResponse.html new file mode 100644 index 0000000..8ef84bd --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdatePermissionResponse.html @@ -0,0 +1,393 @@ + + + + SUUpdatePermissionResponse Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdatePermissionResponse

+
+
+

Objective-C

+
@interface SUUpdatePermissionResponse : NSObject <NSSecureCoding>
+ +
+
+

Swift

+
class SUUpdatePermissionResponse : NSObject, NSSecureCoding
+ +
+
+

This class represents a response for permission to check updates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Initializes a new update permission response instance.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks
    +                            sendSystemProfile:(BOOL)sendSystemProfile;
    + +
    +
    +

    Swift

    +
    init!(automaticUpdateChecks: Bool, sendSystemProfile: Bool)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + automaticUpdateChecks + + +
    +

    Flag for whether to allow automatic update checks.

    +
    +
    + + sendSystemProfile + + +
    +

    Flag for if system profile information should be sent to the server hosting the appcast.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -init + +
    +
    +
    +
    +
    +
    +

    Unavailable

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)init NS_UNAVAILABLE;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + automaticUpdateChecks + +
    +
    +
    +
    +
    +
    +

    A read-only property indicating whether automatic update checks are allowed or not.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL automaticUpdateChecks;
    + +
    +
    +

    Swift

    +
    var automaticUpdateChecks: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendSystemProfile + +
    +
    +
    +
    +
    +
    +

    A read-only property indicating if system profile should be sent or not.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL sendSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendSystemProfile: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdater.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdater.html new file mode 100644 index 0000000..ad994a1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Classes/SUUpdater.html @@ -0,0 +1,911 @@ + + + + SUUpdater Class Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdater

+
+

Deprecated

+

Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

+ +
+
+
+

Objective-C

+

+@interface SUUpdater : NSObject
+ +
+
+

Swift

+
class SUUpdater : NSObject
+ +
+
+

The legacy API in Sparkle for controlling the update mechanism.

+ +

This class is now deprecated and acts as a thin wrapper around SPUUpdater and SPUStandardUserDriver.

+ +

If you are migrating to Sparkle 2, use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

+ +
+
+
+
    +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) IBOutlet id<SUUpdaterDelegate> delegate
    + +
    +
    +

    Swift

    +
    @IBOutlet unowned(unsafe) var delegate: SUUpdaterDelegate! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +sharedUpdater + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (SUUpdater *)sharedUpdater;
    + +
    +
    +

    Swift

    +
    class func shared() -> SUUpdater!
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + +updaterForBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (SUUpdater *)updaterForBundle:(NSBundle *)bundle;
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -initForBundle: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (instancetype)initForBundle:(NSBundle *)bundle;
    + +
    +
    +

    Swift

    +
    init!(for bundle: Bundle!)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -checkForUpdates: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdates:(id)sender;
    + +
    +
    +

    Swift

    +
    @IBAction func checkForUpdates(_ sender: Any!)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -validateMenuItem: + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)validateMenuItem:(NSMenuItem *)menuItem;
    + +
    +
    +

    Swift

    +
    func validate(_ menuItem: NSMenuItem!) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdatesInBackground;
    + +
    +
    +

    Swift

    +
    func checkForUpdatesInBackground()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyChecksForUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyChecksForUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL automaticallyDownloadsUpdates;
    + +
    +
    +

    Swift

    +
    var automaticallyDownloadsUpdates: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateCheckInterval + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) NSTimeInterval updateCheckInterval;
    + +
    +
    +

    Swift

    +
    var updateCheckInterval: TimeInterval { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)checkForUpdateInformation;
    + +
    +
    +

    Swift

    +
    func checkForUpdateInformation()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + feedURL + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSURL *feedURL;
    + +
    +
    +

    Swift

    +
    var feedURL: URL! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hostBundle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *hostBundle;
    + +
    +
    +

    Swift

    +
    var hostBundle: Bundle! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sparkleBundle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) NSBundle *sparkleBundle;
    + +
    +
    +

    Swift

    +
    var sparkleBundle: Bundle! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + userAgentString + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *userAgentString;
    + +
    +
    +

    Swift

    +
    var userAgentString: String! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + httpHeaders + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (copy) NSDictionary<NSString *, NSString *> *httpHeaders;
    + +
    +
    +

    Swift

    +
    var httpHeaders: [String : String]! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sendsSystemProfile + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic) BOOL sendsSystemProfile;
    + +
    +
    +

    Swift

    +
    var sendsSystemProfile: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + decryptionPassword + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy) NSString *decryptionPassword;
    + +
    +
    +

    Swift

    +
    var decryptionPassword: String! { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lastUpdateCheckDate + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, copy, readonly) NSDate *lastUpdateCheckDate;
    + +
    +
    +

    Swift

    +
    var lastUpdateCheckDate: Date! { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + -resetUpdateCycle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)resetUpdateCycle;
    + +
    +
    +

    Swift

    +
    func resetUpdateCycle()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + updateInProgress + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, readonly) BOOL updateInProgress;
    + +
    +
    +

    Swift

    +
    var updateInProgress: Bool { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Constants.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Constants.html new file mode 100644 index 0000000..6dc5d7e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Constants.html @@ -0,0 +1,894 @@ + + + + Constants Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Constants

+

The following constants are available globally.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidFinishLoadingAppCast: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidFindValidUpdateNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidFindValidUpdate: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterDidNotFindUpdateNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterDidNotFindUpdate: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterWillRestartNotification
    + +
    +
    +

    Swift

    +
    static let SUUpdaterWillRestart: NSNotification.Name
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterAppcastItemNotificationKey
    + +
    +
    +

    Swift

    +
    let SUUpdaterAppcastItemNotificationKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUUpdaterAppcastNotificationKey
    + +
    +
    +

    Swift

    +
    let SUUpdaterAppcastNotificationKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerApplicationNameKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerApplicationNameKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerApplicationVersionKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerApplicationVersionKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPU64bitKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPU64bitKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUCountKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUCountKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUFrequencyKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUFrequencyKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUTypeKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUTypeKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerCPUSubtypeKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerCPUSubtypeKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerHardwareModelKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerHardwareModelKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerMemoryKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerMemoryKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerOperatingSystemVersionKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerOperatingSystemVersionKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSystemProfilerPreferredLanguageKey
    + +
    +
    +

    Swift

    +
    let SUSystemProfilerPreferredLanguageKey: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUSparkleErrorDomain + +
    +
    +
    +
    +
    +
    +

    Error domain used by Sparkle

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SUSparkleErrorDomain
    + +
    +
    +

    Swift

    +
    let SUSparkleErrorDomain: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPUNoUpdateFoundReasonKey
    + +
    +
    +

    Swift

    +
    let SPUNoUpdateFoundReasonKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPULatestAppcastItemFoundKey
    + +
    +
    +

    Swift

    +
    let SPULatestAppcastItemFoundKey: String
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    extern NSString *const SPUNoUpdateFoundUserInitiatedKey
    + +
    +
    +

    Swift

    +
    let SPUNoUpdateFoundUserInitiatedKey: String
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums.html new file mode 100644 index 0000000..7bf7e8c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums.html @@ -0,0 +1,427 @@ + + + + Enumerations Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Enumerations

+

The following enumerations are available globally.

+ +
+
+
+
    +
  • +
    + + + + SPUUpdateCheck + +
    +
    +
    +
    +
    +
    +

    Describes the type of update check being performed.

    + +

    Each update check corresponds to an update check method on SPUUpdater.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUpdateCheck : NSInteger {}
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateChoice + +
    +
    +
    +
    +
    +
    +

    A choice made by the user when prompted with a new update.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUserUpdateChoice : NSInteger {}
    + +
    +
    +

    Swift

    +
    enum SPUUserUpdateChoice : Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateStage + +
    +
    +
    +
    +
    +
    +

    Describes the current stage an update is undergoing.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUUserUpdateStage : NSInteger {}
    + +
    +
    +

    Swift

    +
    enum SPUUserUpdateStage : Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    NS_ENUM(OSStatus, SUError) {
    +    // Configuration phase errors
    +    SUNoPublicDSAFoundError = 0001,
    +    SUInsufficientSigningError = 0002,
    +    SUInsecureFeedURLError = 0003,
    +    SUInvalidFeedURLError = 0004,
    +    SUInvalidUpdaterError = 0005,
    +    SUInvalidHostBundleIdentifierError = 0006,
    +    SUInvalidHostVersionError = 0007,
    +    
    +    // Appcast phase errors.
    +    SUAppcastParseError = 1000,
    +    SUNoUpdateError = 1001,
    +    SUAppcastError = 1002,
    +    SURunningFromDiskImageError = 1003,
    +    SUResumeAppcastError = 1004,
    +    SURunningTranslocated = 1005,
    +    SUWebKitTerminationError = 1006,
    +
    +    // Download phase errors.
    +    SUTemporaryDirectoryError = 2000,
    +    SUDownloadError = 2001,
    +
    +    // Extraction phase errors.
    +    SUUnarchivingError = 3000,
    +    SUSignatureError = 3001,
    +    SUValidationError = 3002,
    +    
    +    // Installation phase errors.
    +    SUFileCopyFailure = 4000,
    +    SUAuthenticationFailure = 4001,
    +    SUMissingUpdateError = 4002,
    +    SUMissingInstallerToolError = 4003,
    +    SURelaunchError = 4004,
    +    SUInstallationError = 4005,
    +    SUDowngradeError = 4006,
    +    SUInstallationCanceledError = 4007,
    +    SUInstallationAuthorizeLaterError = 4008,
    +    SUNotValidUpdateError = 4009,
    +    SUAgentInvalidationError = 4010,
    +    
    +    // API misuse errors.
    +    SUIncorrectAPIUsageError = 5000
    +}
    + +
    +
    +

    Swift

    +
    enum SUError : OSStatus
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The reason why a new update is not available.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    enum SPUNoUpdateFoundReason : OSStatus {}
    + +
    +
    +

    Swift

    +
    enum SPUNoUpdateFoundReason : OSStatus
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUNoUpdateFoundReason.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUNoUpdateFoundReason.html new file mode 100644 index 0000000..3794bae --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUNoUpdateFoundReason.html @@ -0,0 +1,394 @@ + + + + SPUNoUpdateFoundReason Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUNoUpdateFoundReason

+
+
+

Objective-C

+
enum SPUNoUpdateFoundReason : OSStatus {}
+ +
+
+

Swift

+
enum SPUNoUpdateFoundReason : OSStatus
+ +
+
+

The reason why a new update is not available.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable for an unknown reason.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonUnknown
    + +
    +
    +

    Swift

    +
    case unknown = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user is on the latest known version in the appcast feed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonOnLatestVersion
    + +
    +
    +

    Swift

    +
    case onLatestVersion = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonOnNewerThanLatestVersion
    + +
    +
    +

    Swift

    +
    case onNewerThanLatestVersion = 2
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user’s operating system version is too old for the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonSystemIsTooOld
    + +
    +
    +

    Swift

    +
    case systemIsTooOld = 3
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A new update is unavailable because the user’s operating system version is too new for the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUNoUpdateFoundReasonSystemIsTooNew
    + +
    +
    +

    Swift

    +
    case systemIsTooNew = 4
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUpdateCheck.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUpdateCheck.html new file mode 100644 index 0000000..87c8977 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUpdateCheck.html @@ -0,0 +1,312 @@ + + + + SPUUpdateCheck Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdateCheck

+
+
+ +
enum SPUUpdateCheck : NSInteger {}
+ +
+
+

Describes the type of update check being performed.

+ +

Each update check corresponds to an update check method on SPUUpdater.

+ +
+
+
+ +
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateChoice.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateChoice.html new file mode 100644 index 0000000..9ab81cc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateChoice.html @@ -0,0 +1,330 @@ + + + + SPUUserUpdateChoice Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateChoice

+
+
+

Objective-C

+
enum SPUUserUpdateChoice : NSInteger {}
+ +
+
+

Swift

+
enum SPUUserUpdateChoice : Int
+ +
+
+

A choice made by the user when prompted with a new update.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Dismisses the update and skips being notified of it in the future.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceSkip
    + +
    +
    +

    Swift

    +
    case skip = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Downloads (if needed) and installs the update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceInstall
    + +
    +
    +

    Swift

    +
    case install = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dismisses the update until Sparkle reminds the user of it at a later time.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateChoiceDismiss
    + +
    +
    +

    Swift

    +
    case dismiss = 2
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateStage.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateStage.html new file mode 100644 index 0000000..e7b72a9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SPUUserUpdateStage.html @@ -0,0 +1,330 @@ + + + + SPUUserUpdateStage Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserUpdateStage

+
+
+

Objective-C

+
enum SPUUserUpdateStage : NSInteger {}
+ +
+
+

Swift

+
enum SPUUserUpdateStage : Int
+ +
+
+

Describes the current stage an update is undergoing.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The update has not been downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageNotDownloaded
    + +
    +
    +

    Swift

    +
    case notDownloaded = 0
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The update has already been downloaded but not begun installing.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageDownloaded
    + +
    +
    +

    Swift

    +
    case downloaded = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The update has already been downloaded and began installing in the background.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SPUUserUpdateStageInstalling
    + +
    +
    +

    Swift

    +
    case installing = 2
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SUError.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SUError.html new file mode 100644 index 0000000..75f2bf3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Enums/SUError.html @@ -0,0 +1,1269 @@ + + + + SUError Enumeration Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUError

+
+
+

Objective-C

+
NS_ENUM(OSStatus, SUError) {
+    // Configuration phase errors
+    SUNoPublicDSAFoundError = 0001,
+    SUInsufficientSigningError = 0002,
+    SUInsecureFeedURLError = 0003,
+    SUInvalidFeedURLError = 0004,
+    SUInvalidUpdaterError = 0005,
+    SUInvalidHostBundleIdentifierError = 0006,
+    SUInvalidHostVersionError = 0007,
+    
+    // Appcast phase errors.
+    SUAppcastParseError = 1000,
+    SUNoUpdateError = 1001,
+    SUAppcastError = 1002,
+    SURunningFromDiskImageError = 1003,
+    SUResumeAppcastError = 1004,
+    SURunningTranslocated = 1005,
+    SUWebKitTerminationError = 1006,
+
+    // Download phase errors.
+    SUTemporaryDirectoryError = 2000,
+    SUDownloadError = 2001,
+
+    // Extraction phase errors.
+    SUUnarchivingError = 3000,
+    SUSignatureError = 3001,
+    SUValidationError = 3002,
+    
+    // Installation phase errors.
+    SUFileCopyFailure = 4000,
+    SUAuthenticationFailure = 4001,
+    SUMissingUpdateError = 4002,
+    SUMissingInstallerToolError = 4003,
+    SURelaunchError = 4004,
+    SUInstallationError = 4005,
+    SUDowngradeError = 4006,
+    SUInstallationCanceledError = 4007,
+    SUInstallationAuthorizeLaterError = 4008,
+    SUNotValidUpdateError = 4009,
+    SUAgentInvalidationError = 4010,
+    
+    // API misuse errors.
+    SUIncorrectAPIUsageError = 5000
+}
+ +
+
+

Swift

+
enum SUError : OSStatus
+ +
+
+

Undocumented

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNoPublicDSAFoundError = 0001
    + +
    +
    +

    Swift

    +
    case noPublicDSAFoundError = 1
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInsufficientSigningError = 0002
    + +
    +
    +

    Swift

    +
    case insufficientSigningError = 2
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInsecureFeedURLError = 0003
    + +
    +
    +

    Swift

    +
    case insecureFeedURLError = 3
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInvalidFeedURLError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidFeedURLError = 0004
    + +
    +
    +

    Swift

    +
    case invalidFeedURLError = 4
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInvalidUpdaterError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidUpdaterError = 0005
    + +
    +
    +

    Swift

    +
    case invalidUpdaterError = 5
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidHostBundleIdentifierError = 0006
    + +
    +
    +

    Swift

    +
    case invalidHostBundleIdentifierError = 6
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInvalidHostVersionError = 0007
    + +
    +
    +

    Swift

    +
    case invalidHostVersionError = 7
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastParseError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAppcastParseError = 1000
    + +
    +
    +

    Swift

    +
    case appcastParseError = 1000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUNoUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNoUpdateError = 1001
    + +
    +
    +

    Swift

    +
    case noUpdateError = 1001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAppcastError = 1002
    + +
    +
    +

    Swift

    +
    case appcastError = 1002
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURunningFromDiskImageError = 1003
    + +
    +
    +

    Swift

    +
    case runningFromDiskImageError = 1003
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUResumeAppcastError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUResumeAppcastError = 1004
    + +
    +
    +

    Swift

    +
    case resumeAppcastError = 1004
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SURunningTranslocated + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURunningTranslocated = 1005
    + +
    +
    +

    Swift

    +
    case runningTranslocated = 1005
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUWebKitTerminationError = 1006
    + +
    +
    +

    Swift

    +
    case webKitTerminationError = 1006
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUTemporaryDirectoryError = 2000
    + +
    +
    +

    Swift

    +
    case temporaryDirectoryError = 2000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUDownloadError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUDownloadError = 2001
    + +
    +
    +

    Swift

    +
    case downloadError = 2001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUnarchivingError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUUnarchivingError = 3000
    + +
    +
    +

    Swift

    +
    case unarchivingError = 3000
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUSignatureError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUSignatureError = 3001
    + +
    +
    +

    Swift

    +
    case signatureError = 3001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUValidationError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUValidationError = 3002
    + +
    +
    +

    Swift

    +
    case validationError = 3002
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUFileCopyFailure + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUFileCopyFailure = 4000
    + +
    +
    +

    Swift

    +
    case fileCopyFailure = 4000
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAuthenticationFailure = 4001
    + +
    +
    +

    Swift

    +
    case authenticationFailure = 4001
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUMissingUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUMissingUpdateError = 4002
    + +
    +
    +

    Swift

    +
    case missingUpdateError = 4002
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUMissingInstallerToolError = 4003
    + +
    +
    +

    Swift

    +
    case missingInstallerToolError = 4003
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SURelaunchError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SURelaunchError = 4004
    + +
    +
    +

    Swift

    +
    case relaunchError = 4004
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUInstallationError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationError = 4005
    + +
    +
    +

    Swift

    +
    case installationError = 4005
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUDowngradeError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUDowngradeError = 4006
    + +
    +
    +

    Swift

    +
    case downgradeError = 4006
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationCanceledError = 4007
    + +
    +
    +

    Swift

    +
    case installationCanceledError = 4007
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUInstallationAuthorizeLaterError = 4008
    + +
    +
    +

    Swift

    +
    case installationAuthorizeLaterError = 4008
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUNotValidUpdateError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUNotValidUpdateError = 4009
    + +
    +
    +

    Swift

    +
    case notValidUpdateError = 4009
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUAgentInvalidationError = 4010
    + +
    +
    +

    Swift

    +
    case agentInvalidationError = 4010
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    SUIncorrectAPIUsageError = 5000
    + +
    +
    +

    Swift

    +
    case incorrectAPIUsageError = 5000
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols.html new file mode 100644 index 0000000..27ae1ab --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols.html @@ -0,0 +1,432 @@ + + + + Protocols Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Protocols

+

The following protocols are available globally.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    A protocol for Sparkle’s standard user driver’s delegate

    + +

    This includes methods related to UI interactions

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUStandardUserDriverDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUStandardUserDriverDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdaterDelegate + +
    +
    +
    +
    +
    +
    +

    Provides delegation methods to control the behavior of an SPUUpdater object.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUUpdaterDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUUpdaterDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserDriver + +
    +
    +
    +
    +
    +
    +

    The API in Sparkle for controlling the user interaction.

    + +

    This protocol is used for implementing a user interface for the Sparkle updater. Sparkle’s internal drivers tell +an object that implements this protocol what actions to take and show to the user.

    + +

    Every method in this protocol can be assumed to be called from the main thread.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SPUUserDriver <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SPUUserDriver : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUpdaterDelegate + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Deprecated in Sparkle 2. See SPUUpdaterDelegate instead

    + +
    +
    +

    Undocumented

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUUpdaterDelegate <NSObject>
    + +
    +
    +

    Swift

    +
    protocol SUUpdaterDelegate : NSObjectProtocol
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUVersionComparison + +
    +
    +
    +
    +
    +
    +

    Provides version comparison facilities for Sparkle.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUVersionComparison
    + +
    +
    +

    Swift

    +
    protocol SUVersionComparison
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUVersionDisplay + +
    +
    +
    +
    +
    +
    +

    Applies special display formatting to version numbers.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @protocol SUVersionDisplay
    + +
    +
    +

    Swift

    +
    protocol SUVersionDisplay
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUStandardUserDriverDelegate.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUStandardUserDriverDelegate.html new file mode 100644 index 0000000..9382d80 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUStandardUserDriverDelegate.html @@ -0,0 +1,330 @@ + + + + SPUStandardUserDriverDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUStandardUserDriverDelegate

+
+
+

Objective-C

+
@protocol SPUStandardUserDriverDelegate <NSObject>
+ +
+
+

Swift

+
protocol SPUStandardUserDriverDelegate : NSObjectProtocol
+ +
+
+

A protocol for Sparkle’s standard user driver’s delegate

+ +

This includes methods related to UI interactions

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Called before showing a modal alert window, +to give the opportunity to hide attached windows that may get in the way.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)standardUserDriverWillShowModalAlert;
    + +
    +
    +

    Swift

    +
    optional func standardUserDriverWillShowModalAlert()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after showing a modal alert window, +to give the opportunity to hide attached windows that may get in the way.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)standardUserDriverDidShowModalAlert;
    + +
    +
    +

    Swift

    +
    optional func standardUserDriverDidShowModalAlert()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an object that formats version numbers for display to the user. +If you don’t implement this method or return nil, the standard version formatter will be used.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (id<SUVersionDisplay> _Nullable)standardUserDriverRequestsVersionDisplayer;
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUpdaterDelegate.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUpdaterDelegate.html new file mode 100644 index 0000000..84ef51c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUpdaterDelegate.html @@ -0,0 +1,2379 @@ + + + + SPUUpdaterDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUpdaterDelegate

+
+
+

Objective-C

+
@protocol SPUUpdaterDelegate <NSObject>
+ +
+
+

Swift

+
protocol SPUUpdaterDelegate : NSObjectProtocol
+ +
+
+

Provides delegation methods to control the behavior of an SPUUpdater object.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Returns whether to allow Sparkle to check for updates.

    + +

    For example, this may be used to prevent Sparkle from interrupting a setup assistant. +Alternatively, you may want to consider starting the updater after eg: the setup assistant finishes

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    mayPerformUpdateCheck:(SPUUpdateCheck)updateCheck
    +                    error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, mayPerform updateCheck: SPUUpdateCheck) throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateCheck + + +
    +

    The type of update check that will be performed if the updater is allowed to check for updates.

    +
    +
    + + error + + +
    +

    The (optionally) populated error object if the updater may not perform a new update check.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater is allowed to check for updates, otherwise NO

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    + +

    An appcast item can specify a channel the update is posted to. Without specifying a channel, the appcast item is posted to the default channel. +For instance:

    +
    <item>
    +   <sparkle:version>2.0 Beta 1</sparkle:version>
    +   <sparkle:channel>beta</sparkle:channel>
    +</item>
    +
    + +

    This example posts an update to the beta channel, so only updaters that are allowed to use the beta channel can find this update.

    + +

    If the <sparkle:channel> element is not present, the update item is posted to the default channel and can be found by any updater.

    + +

    You can pick any name you’d like for the channel. The valid characters for channel names are letters, numbers, dashes, underscores, and periods.

    + +

    Note to use this feature, all app versions that your users may update from in your feed must use a version of Sparkle that supports this feature. +This feature was added in Sparkle 2.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull NSSet<NSString *> *)allowedChannelsForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func allowedChannels(for updater: SPUUpdater) -> Set<String>
    + +
    +
    +
    +

    Return Value

    +

    The set of channel names the updater is allowed to find new updates in. An empty set is the default behavior, + which means the updater will only look for updates in the default channel.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns a custom appcast URL used for checking for new updates.

    + +

    Override this to dynamically specify the feed URL.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSString *)feedURLStringForUpdater:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func feedURLString(for updater: SPUUpdater) -> String?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    An appcast feed URL to check for new updates in, or nil for the default behavior and if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns additional parameters to append to the appcast URL’s query string.

    + +

    This is potentially based on whether or not Sparkle will also be sending along the system profile.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nonnull NSArray<NSDictionary<NSString *, NSString *> *> *)
    +    feedParametersForUpdater:(nonnull SPUUpdater *)updater
    +        sendingSystemProfile:(BOOL)sendingProfile;
    + +
    +
    +

    Swift

    +
    optional func feedParameters(for updater: SPUUpdater, sendingSystemProfile sendingProfile: Bool) -> [[String : String]]
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + sendingProfile + + +
    +

    Whether the system profile will also be sent.

    +
    +
    +
    +
    +

    Return Value

    +

    An array of dictionaries with keys: key, value, displayKey, displayValue, the latter two being specifically for display to the user.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether Sparkle should prompt the user about checking for new updates automatically.

    + +

    Use this to override the default behavior.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterShouldPromptForPermissionToCheck(forUpdates updater: SPUUpdater) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should prompt for permission to check for new updates automatically, otherwise NO

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an allowed list of system profile keys to be appended to the appcast URL’s query string.

    + +

    By default all keys will be included. This method allows overriding which keys should only be allowed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSArray<NSString *> *)allowedSystemProfileKeysForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func allowedSystemProfileKeys(for updater: SPUUpdater) -> [String]?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    An array of system profile keys to include in the appcast URL’s query string. Elements must be one of the SUSystemProfiler*Key constants. Return nil for the default behavior and if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after Sparkle has downloaded the appcast from the remote server.

    + +

    Implement this if you want to do some special handling with the appcast once it finishes loading.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFinishLoadingAppcast:(nonnull SUAppcast *)appcast;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFinishLoading appcast: SUAppcast)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + appcast + + +
    +

    The appcast that was downloaded from the remote server.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a new valid update is found by the update driver.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFindValidUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFindValidUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a valid new update is not found.

    + +

    There are various reasons a new update is unavailable and can’t be installed.

    + +

    The userInfo dictionary on the error is populated with three keys:

    + + + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterDidNotFindUpdate:(nonnull SPUUpdater *)updater
    +                          error:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updaterDidNotFindUpdate(_ updater: SPUUpdater, error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + error + + +
    +

    An error containing information on why a new valid update was not found

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a valid new update is not found.

    + +

    If more information is needed on why an update was not found, use -[SPUUpdaterDelegate updaterDidNotFindUpdate:error:] instead.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterDidNotFindUpdate:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterDidNotFindUpdate(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the item in the appcast corresponding to the update that should be installed.

    + +

    Please consider using or migrating to other supported features before adopting this method. +Specifically:

    + +
      +
    • If you want to filter out certain tagged updates (like beta updates), consider -[SPUUpdaterDelegate allowedChannelsForUpdater:] instead.
    • +
    • If you want to treat certain updates as informational-only, consider supplying <sparkle:informationalUpdate> with a set of affected versions users are updating from.
    • +
    + +

    If you’re using special logic or extensions in your appcast, implement this to use your own logic for finding a valid update, if any, in the given appcast.

    + +

    Do not base your logic by filtering out items with a minimum or maximum OS version or minimum autoupdate version +because Sparkle already has logic for determining whether or not those items should be filtered out.

    + +

    Also do not return a non-top level item from the appcast such as a delta item. Delta items will be ignored. +Sparkle picks the delta item from your selection if the appropriate one is available.

    + +

    This method will not be invoked with an appcast that has zero items. Pick the best item from the appcast. +If an item is available that has the same version as the application or bundle to update, do not pick an item that is worse than that version.

    + +

    This method may be called multiple times for different selections and filters. This method should be efficient.

    + +

    Return +[SUAppcastItem emptyAppcastItem] if no appcast item is valid.

    + +

    Return nil if you don’t want to be delegated this task and want to let Sparkle handle picking the best valid update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable SUAppcastItem *)
    +    bestValidUpdateInAppcast:(nonnull SUAppcast *)appcast
    +                  forUpdater:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func bestValidUpdate(in appcast: SUAppcast, for updater: SPUUpdater) -> SUAppcastItem?
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + appcast + + +
    +

    The appcast that was downloaded from the remote server.

    +
    +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The best valid appcast item.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether or not the updater should proceed with the new chosen update from the appcast.

    + +

    By default, the updater will always proceed with the best selected update found in an appcast. Override this to override this behavior.

    + +

    If you return NO and populate the error, the user is not shown this updateItem nor is the update downloaded or installed.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldProceedWithUpdate:(nonnull SUAppcastItem *)updateItem
    +                updateCheck:(SPUUpdateCheck)updateCheck
    +                      error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldProceedWithUpdate updateItem: SUAppcastItem, updateCheck: SPUUpdateCheck) throws
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateItem + + +
    +

    The selected update item to proceed with.

    +
    +
    + + updateCheck + + +
    +

    The type of update check that would be performed if proceeded.

    +
    +
    + + error + + +
    +

    An error object that must be populated by the delegate if the updater should not proceed with the update.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should proceed with updateItem, otherwise NO if the updater should not proceed with the update with an error populated.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when an update is skipped by the user.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    userDidSkipThisVersion:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, userDidSkipThisVersion item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that the user skipped.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    + +

    This is specifically for the <releaseNotesLink> element in the appcast item.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldDownloadReleaseNotesForUpdate:(nonnull SUAppcastItem *)updateItem;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldDownloadReleaseNotesForUpdate updateItem: SUAppcastItem) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateItem + + +
    +

    The update item to download and show release notes from.

    +
    +
    +
    +
    +

    Return Value

    +

    YES to download and show the release notes if available, otherwise NO. The default behavior is YES.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before downloading the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willDownloadUpdate:(nonnull SUAppcastItem *)item
    +           withRequest:(nonnull NSMutableURLRequest *)request;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willDownloadUpdate item: SUAppcastItem, with request: NSMutableURLRequest)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be downloaded.

    +
    +
    + + request + + +
    +

    The mutable URL request that will be used to download the update.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately after succesfull download of the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didDownloadUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didDownloadUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that has been downloaded.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the specified update failed to download.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    failedToDownloadUpdate:(nonnull SUAppcastItem *)item
    +                     error:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, failedToDownloadUpdate item: SUAppcastItem, error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that failed to download.

    +
    +
    + + error + + +
    +

    The error generated by the failed download.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when the user cancels an update while it is being downloaded.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)userDidCancelDownload:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func userDidCancelDownload(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before extracting the specified downloaded update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willExtractUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willExtractUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be extracted.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately after extracting the specified downloaded update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didExtractUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didExtractUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The SUUpdater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that has been extracted.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before installing the specified update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willInstallUpdate:(nonnull SUAppcastItem *)item;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willInstallUpdate item: SUAppcastItem)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the relaunch should be delayed in order to perform other tasks.

    + +

    This is not called if the user didn’t relaunch on the previous update, +in that case it will immediately restart.

    + +

    This may also not be called if the application is not going to relaunch after it terminates.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +    shouldPostponeRelaunchForUpdate:(nonnull SUAppcastItem *)item
    +                 untilInvokingBlock:(nonnull void (^)(void))installHandler;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, shouldPostponeRelaunchForUpdate item: SUAppcastItem, untilInvokingBlock installHandler: @escaping () -> Void) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    + + installHandler + + +
    +

    The install handler that must be completed before continuing with the relaunch.

    +
    +
    +
    +
    +

    Return Value

    +

    YES to delay the relaunch until installHandler is invoked.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns whether the application should be relaunched at all.

    + +

    Some apps cannot be relaunched under certain circumstances. +This method can be used to explicitly prevent a relaunch.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterShouldRelaunchApplication:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterShouldRelaunchApplication(_ updater: SPUUpdater) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the updater should be relaunched, otherwise NO if it shouldn’t.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called immediately before relaunching.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterWillRelaunchApplication:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterWillRelaunchApplication(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    + +

    This method allows you to provide a custom version comparator. +If you don’t implement this method or return nil, +the standard version comparator will be used.

    + +

    Note that the standard version comparator may be used during installation for preventing a downgrade, +even if you provide a custom comparator here.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable id<SUVersionComparison>)versionComparatorForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The custom version comparator or nil if you don’t want to be delegated this task.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when a background update will be scheduled after a delay.

    + +

    Automatic update checks need to be enabled for this to trigger.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    willScheduleUpdateCheckAfterDelay:(NSTimeInterval)delay;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willScheduleUpdateCheckAfterDelay delay: TimeInterval)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + delay + + +
    +

    The delay in seconds until the next scheduled update will occur.

    +
    +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when no update checks will be scheduled in the future.

    + +

    This may later change if automatic update checks become enabled.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updaterWillNotScheduleUpdateCheck:(nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func updaterWillNotScheduleUpdateCheck(_ updater: SPUUpdater)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    + +

    Return nil if no password should be used.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (nullable NSString *)decryptionPasswordForUpdater:
    +    (nonnull SPUUpdater *)updater;
    + +
    +
    +

    Swift

    +
    optional func decryptionPassword(for updater: SPUUpdater) -> String?
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    +
    +
    +

    Return Value

    +

    The password used for decrypting the archive, or nil if no password should be used.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    + +

    If the updater is given responsibility, it can later remind the user an update is available if they have not terminated the application for a long time.

    + +

    Also if the updater is given responsibility and the update item is marked critical, the new update will be presented to the user immediately after.

    + +

    Even if the immediateInstallHandler is not invoked, the installer will attempt to install the update on termination.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updater:(nonnull SPUUpdater *)updater
    +       willInstallUpdateOnQuit:(nonnull SUAppcastItem *)item
    +    immediateInstallationBlock:(nonnull void (^)(void))immediateInstallHandler;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, willInstallUpdateOnQuit item: SUAppcastItem, immediateInstallationBlock immediateInstallHandler: @escaping () -> Void) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + item + + +
    +

    The appcast item corresponding to the update that is proposed to be installed.

    +
    +
    + + immediateInstallHandler + + +
    +

    The install handler to immediately install the update. No UI interaction will be shown and the application will be relaunched after installation.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if the delegate will handle installing the update or NO if the updater should be given responsibility.

    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the update driver aborts due to an error.

    + +

    The update driver runs when checking for updates. This delegate method is called an error occurs during this process.

    + +

    Some special possible values of error.code are:

    + +
      +
    • SUNoUpdateError: No new update was found.
    • +
    • SUInstallationCanceledError: The user canceled installing the update when requested for authorization.

    • +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didAbortWithError:(nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didAbortWithError error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + error + + +
    +

    The error that caused the update driver to abort.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Called after the update driver finishes.

    + +

    The update driver runs when checking for updates. This delegate method is called when that check is finished.

    + +

    An update may be scheduled to be installed during the update cycle, or no updates may be found, or an available update may be dismissed or skipped (which is the same as no error).

    + +

    If the error is nil, no error has occurred.

    + +

    Some special possible values of error.code are:

    + +
      +
    • SUNoUpdateError: No new update was found.
    • +
    • SUInstallationCanceledError: The user canceled installing the update when requested for authorization.

    • +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)updater:(nonnull SPUUpdater *)updater
    +    didFinishUpdateCycleForUpdateCheck:(SPUUpdateCheck)updateCheck
    +                                 error:(nullable NSError *)error;
    + +
    +
    +

    Swift

    +
    optional func updater(_ updater: SPUUpdater, didFinishUpdateCycleFor updateCheck: SPUUpdateCheck, error: Error?)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + updater + + +
    +

    The updater instance.

    +
    +
    + + updateCheck + + +
    +

    The type of update check was performed.

    +
    +
    + + error + + +
    +

    The error that caused the update driver to abort. This is nil if the update driver finished normally and there is no error.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Please use -[SPUUpdaterDelegate updater:mayPerformUpdateCheck:error:] instead.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (BOOL)updaterMayCheckForUpdates:(SPUUpdater *)updater __deprecated_msg("Please use -[SPUUpdaterDelegate updater:mayPerformUpdateCheck:error:] instead.");
    + +
    +
    +

    Swift

    +
    optional func updaterMayCheck(forUpdates updater: SPUUpdater) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUserDriver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUserDriver.html new file mode 100644 index 0000000..c80c5d6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SPUUserDriver.html @@ -0,0 +1,1368 @@ + + + + SPUUserDriver Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SPUUserDriver

+
+
+

Objective-C

+
@protocol SPUUserDriver <NSObject>
+ +
+
+

Swift

+
protocol SPUUserDriver : NSObjectProtocol
+ +
+
+

The API in Sparkle for controlling the user interaction.

+ +

This protocol is used for implementing a user interface for the Sparkle updater. Sparkle’s internal drivers tell +an object that implements this protocol what actions to take and show to the user.

+ +

Every method in this protocol can be assumed to be called from the main thread.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Show an updater permission request to the user

    + +

    Ask the user for their permission regarding update checks. + This is typically only called once per app installation.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)
    +    showUpdatePermissionRequest:(nonnull SPUUpdatePermissionRequest *)request
    +                          reply:(nonnull void (^)(
    +                                    SUUpdatePermissionResponse *_Nonnull))reply;
    + +
    +
    +

    Swift

    +
    func show(_ request: SPUUpdatePermissionRequest) async -> SUUpdatePermissionResponse
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + request + + +
    +

    The update permission request.

    +
    +
    + + reply + + +
    +

    A reply with a update permission response.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user initating an update check

    + +

    Respond to the user initiating an update check. Sparkle uses this to show the user a window with an indeterminate progress bar.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUserInitiatedUpdateCheckWithCancellation:
    +    (nonnull void (^)(void))cancellation;
    + +
    +
    +

    Swift

    +
    func showUserInitiatedUpdateCheck(cancellation: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + cancellation + + +
    +

    Invoke this cancellation block to cancel the update check before the update check is completed.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user a new update is found.

    + +

    Let the user know a new update is found and ask them what they want to do. + Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    + +

    state.userInitiated indicates if the update was initiated by the user or if it was automatically scheduled in the background.

    + +

    Additionally, these properties on the appcastItem are of importance:

    + +

    appcastItem.informationOnlyUpdate indicates if the update is only informational and should not be downloaded. You can direct the user to the infoURL property of the appcastItem in their web browser. Sometimes information only updates are used as a fallback in case a bad update is shipped, so you’ll want to support this case.

    + +

    appcastItem.majorUpgrade indicates if the update is a major or paid upgrade.

    + +

    appcastItem.criticalUpdate indicates if the update is a critical update.

    + +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update for the time being. The user may be reminded of the update at a later point. + If the state.stage is SPUUserUpdateStateDownloaded, the downloaded update is kept after dismissing until the next time an update is shown to the user. + If the state.stage is SPUUserUpdateStateInstalling, the installing update is also preserved after dismissing. In this state however, the update will also still be installed after the application is terminated.

    + +

    A reply of SPUUserUpdateChoiceSkip skips this particular version and won’t notify the user again, unless they initiate an update check themselves. + If appcastItem.majorUpgrade is YES, the major update and any future minor updates to that major release are skipped. + If the state.stage is SPUUpdateStateInstalling, the installation is also canceled when the update is skipped.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateFoundWithAppcastItem:(nonnull SUAppcastItem *)appcastItem
    +                                 state:(nonnull SPUUserUpdateState *)state
    +                                 reply:(nonnull void (^)(SPUUserUpdateChoice))
    +                                           reply;
    + +
    +
    +

    Swift

    +
    func showUpdateFound(with appcastItem: SUAppcastItem, state: SPUUserUpdateState) async -> SPUUserUpdateChoice
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + +
    + + appcastItem + + +
    +

    The Appcast Item containing information that reflects the new update.

    +
    +
    + + state + + +
    +

    The current state of the user update. +The state.stage values are: +SPUUpdateStateNotDownloaded - Update has not been downloaded yet. +SPUUpdateStateDownloaded - Update has already been downloaded but not started installing yet. +SPUUpdateStateInstalling - Update has been downloaded and already started installing.

    +
    +
    + + reply + + +
    +

    A reply of SPUUserUpdateChoiceInstall begins or resumes downloading or installing the update. +If the state.stage is SPUUserUpdateStateInstalling, this may send a quit event to the application and relaunch it immediately (in this state, this behaves as a fast “install and Relaunch”). Do not use this reply if appcastItem.informationOnlyUpdate is YES.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user the release notes for the new update

    + +

    Display the release notes to the user. This will be called after showing the new update. + This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateReleaseNotesWithDownloadData:
    +    (nonnull SPUDownloadData *)downloadData;
    + +
    +
    +

    Swift

    +
    func showUpdateReleaseNotes(with downloadData: SPUDownloadData)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + downloadData + + +
    +

    The data for the release notes that was downloaded from the new update’s appcast.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the new update’s release notes could not be downloaded

    + +

    This will be called after showing the new update. + This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. + That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateReleaseNotesFailedToDownloadWithError:
    +    (nonnull NSError *)error;
    + +
    +
    +

    Swift

    +
    func showUpdateReleaseNotesFailedToDownloadWithError(_ error: Error)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + error + + +
    +

    The error associated with why the new update’s release notes could not be downloaded.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user a new update was not found

    + +

    Let the user know a new update was not found after they tried initiating an update check. + Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    + +

    The userInfo dictionary is also populated with two keys:

    + +

    SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found.

    + +

    SPUNoUpdateFoundReasonKey: if available, this will provide the SUNoUpdateFoundReason. For example the reason could be because + the latest version in the feed requires a newer OS version or could be because the user is already on the latest version.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateNotFoundWithError:(nonnull NSError *)error
    +                    acknowledgement:(nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdateNotFoundWithError(_ error: Error, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + error + + +
    +

    The error associated with why a new update was not found. +There are various reasons a new update is unavailable and can’t be installed. +This error object is populated with recovery and suggestion strings suitable to be shown in an alert.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that no update found error was shown.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user an update error occurred

    + +

    Let the user know that the updater failed with an error. This will not be invoked without the user having been + aware that an update was in progress.

    + +

    Before this point, any of the non-error user driver methods may have been invoked.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdaterError:(nonnull NSError *)error
    +         acknowledgement:(nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdaterError(_ error: Error, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + error + + +
    +

    The error associated with what update error occurred.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that the error was shown.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that downloading the new update initiated

    + +

    Let the user know that downloading the new update started.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadInitiatedWithCancellation:
    +    (nonnull void (^)(void))cancellation;
    + +
    +
    +

    Swift

    +
    func showDownloadInitiated(cancellation: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + cancellation + + +
    +

    Invoke this cancellation block to cancel the download at any point before -showDownloadDidStartExtractingUpdate is invoked.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user the content length of the new update that will be downloaded

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidReceiveExpectedContentLength:
    +    (uint64_t)expectedContentLength;
    + +
    +
    +

    Swift

    +
    func showDownloadDidReceiveExpectedContentLength(_ expectedContentLength: UInt64)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + expectedContentLength + + +
    +

    The expected content length of the new update being downloaded. +An implementor should be able to handle if this value is invalid (more or less than actual content length downloaded). +Additionally, this method may be called more than once for the same download in rare scenarios.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update download received more data

    + +

    This may be an appropriate time to advance a visible progress indicator of the download

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidReceiveDataOfLength:(uint64_t)length;
    + +
    +
    +

    Swift

    +
    func showDownloadDidReceiveData(ofLength length: UInt64)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + length + + +
    +

    The length of the data that was just downloaded

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update finished downloading and started extracting

    + +

    Sparkle uses this to show an indeterminate progress bar.

    + +

    Note that an update can resume at this point after having been downloaded before, + so this may be called without any of the download callbacks being invoked prior.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showDownloadDidStartExtractingUpdate;
    + +
    +
    +

    Swift

    +
    func showDownloadDidStartExtractingUpdate()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update is extracting with progress

    + +

    Let the user know how far along the update extraction is.

    + +

    Before this point, -showDownloadDidStartExtractingUpdate is called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showExtractionReceivedProgress:(double)progress;
    + +
    +
    +

    Swift

    +
    func showExtractionReceivedProgress(_ progress: Double)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + progress + + +
    +

    The progress of the extraction from a 0.0 to 1.0 scale

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -showInstallingUpdate + +
    +
    +
    +
    +
    +
    +

    Show the user that the update is installing

    + +

    Let the user know that the update is currently installing. Sparkle uses this to show an indeterminate progress bar.

    + +

    Before this point, -showExtractionReceivedProgress: may be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showInstallingUpdate;
    + +
    +
    +

    Swift

    +
    func showInstallingUpdate()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update is ready to install & relaunch

    + +

    Let the user know that the update is ready to install and relaunch, and ask them whether they want to proceed. + Note if the target application has already terminated, this method may not be invoked.

    + +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update installation for the time being. Note the update may still be installed automatically after the application terminates.

    + +

    A reply of SPUUserUpdateChoiceSkip cancels the current update that has begun installing and dismisses the update. In this circumstance, the update is canceled but this update version is not skipped in the future.

    + +

    Before this point, -showInstallingUpdate will be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showReadyToInstallAndRelaunch:
    +    (nonnull void (^)(SPUUserUpdateChoice))reply;
    + +
    +
    +

    Swift

    +
    func showReadyToInstallAndRelaunch() async -> SPUUserUpdateChoice
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + reply + + +
    +

    A reply of SPUUserUpdateChoiceInstall installs the update the new update immediately. The application is relaunched only if it is still running by the time this reply is invoked. If the application terminates on its own, Sparkle will attempt to automatically install the update.

    +
    +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle’s installer

    + +

    Terminating and relaunching the application (if requested to be relaunched) may happen quickly, + or it may take some time to perform the final installation, or the termination signal can be canceled or delayed by the application or user.

    + +

    It is up to the implementor whether or not to decide to continue showing installation progress + or dismissing UI that won’t remain obscuring other parts of the user interface.

    + +

    This will not be invoked if the application that is being updated is already terminated.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showSendingTerminationSignal;
    + +
    +
    +

    Swift

    +
    func showSendingTerminationSignal()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Show the user that the update installation finished

    + +

    Let the user know that the update finished installing.

    + +

    This will only be invoked if the updater process is still alive, which is typically not the case if + the updater’s lifetime is tied to the application it is updating. This implementation must not try to reference + the old bundle prior to the installation, which will no longer be around.

    + +

    Before this point, -showSendingTerminationSignal or -showReadyToInstallAndRelaunch: may be called.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched
    +                         acknowledgement:
    +                             (nonnull void (^)(void))acknowledgement;
    + +
    +
    +

    Swift

    +
    func showUpdateInstalledAndRelaunched(_ relaunched: Bool, acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + relaunched + + +
    +

    Indicates if the update was relaunched.

    +
    +
    + + acknowledgement + + +
    +

    Acknowledge to the updater that the finished installation was shown.

    +
    +
    +
    +
    +
    +
  • +
  • +
    + + + + -showUpdateInFocus + +
    +
    +
    +
    +
    +
    +

    Show the user the current presented update or its progress in utmost focus

    + +

    The user wishes to check for updates while the user is being shown update progress. + Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc).

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInFocus;
    + +
    +
    +

    Swift

    +
    func showUpdateInFocus()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dismiss the current update installation

    + +

    Stop and tear down everything. + Dismiss all update windows, alerts, progress, etc from the user. + Basically, stop everything that could have been started. Sparkle may invoke this when aborting or finishing an update.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)dismissUpdateInstallation;
    + +
    +
    +

    Swift

    +
    func dismissUpdateInstallation()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Implement -showUpdateNotFoundWithError:acknowledgement: instead

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateNotFoundWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateNotFoundWithError:acknowledgement: instead");
    + +
    +
    +

    Swift

    +
    optional func showUpdateNotFound(acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)showUpdateInstallationDidFinishWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead");
    + +
    +
    +

    Swift

    +
    optional func showUpdateInstallationDidFinish(acknowledgement: @escaping () -> Void)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Deprecated

    +

    Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.

    + +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)dismissUserInitiatedUpdateCheck __deprecated_msg("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.");
    + +
    +
    +

    Swift

    +
    optional func dismissUserInitiatedUpdateCheck()
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUUpdaterDelegate.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUUpdaterDelegate.html new file mode 100644 index 0000000..5306e96 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUUpdaterDelegate.html @@ -0,0 +1,1220 @@ + + + + SUUpdaterDelegate Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUUpdaterDelegate

+
+

Deprecated

+

Deprecated in Sparkle 2. See SPUUpdaterDelegate instead

+ +
+
+
+

Objective-C

+
@protocol SUUpdaterDelegate <NSObject>
+ +
+
+

Swift

+
protocol SUUpdaterDelegate : NSObjectProtocol
+ +
+
+

Undocumented

+ +
+
+
+ +
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionComparison.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionComparison.html new file mode 100644 index 0000000..be424f7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionComparison.html @@ -0,0 +1,270 @@ + + + + SUVersionComparison Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUVersionComparison

+
+
+

Objective-C

+
@protocol SUVersionComparison
+ +
+
+

Swift

+
protocol SUVersionComparison
+ +
+
+

Provides version comparison facilities for Sparkle.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    An abstract method to compare two version strings.

    + +

    Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, +and NSOrderedSame if they are equivalent.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (NSComparisonResult)compareVersion:(nonnull NSString *)versionA
    +                           toVersion:(nonnull NSString *)versionB;
    + +
    +
    +

    Swift

    +
    func compareVersion(_ versionA: String, toVersion versionB: String) -> ComparisonResult
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionDisplay.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionDisplay.html new file mode 100644 index 0000000..e608885 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/Protocols/SUVersionDisplay.html @@ -0,0 +1,270 @@ + + + + SUVersionDisplay Protocol Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

SUVersionDisplay

+
+
+

Objective-C

+
@protocol SUVersionDisplay
+ +
+
+

Swift

+
protocol SUVersionDisplay
+ +
+
+

Applies special display formatting to version numbers.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Formats two version strings.

    + +

    Both versions are provided so that important distinguishing information +can be displayed while also leaving out unnecessary/confusing parts.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)formatVersion:(NSString *_Nonnull *_Nonnull)inOutVersionA
    +           andVersion:(NSString *_Nonnull *_Nonnull)inOutVersionB;
    + +
    +
    +

    Swift

    +
    func formatVersion(_ inOutVersionA: AutoreleasingUnsafeMutablePointer<NSString>, andVersion inOutVersionB: AutoreleasingUnsafeMutablePointer<NSString>)
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_app_kit_prevention_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_app_kit_prevention_8h_source.html new file mode 100644 index 0000000..a6ec97f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_app_kit_prevention_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/AppKitPrevention.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
AppKitPrevention.h
+
+
+
1 //
+
2 // AppKitPrevention.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/17/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 // #include (not #import) this header to prevent AppKit from being imported
+
10 // Note this should be your LAST #include in your implementation file
+
11 
+
12 // If this error is triggered, you can have Xcode indicate to you which source file including this header caused the issue
+
13 
+
14 #ifdef _APPKITDEFINES_H
+
15 #error This is a core or daemon-safe module and should NOT import AppKit
+
16 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_app_controller_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_app_controller_8h_source.html new file mode 100644 index 0000000..84c80f2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_app_controller_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/InstallerProgressAppController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgressAppController.h
+
+
+
1 //
+
2 // InstallerProgressAppController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Cocoa/Cocoa.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 @interface InstallerProgressAppController : NSObject <NSApplicationDelegate>
+
16 
+
17 - (instancetype)initWithApplication:(NSApplication *)application arguments:(NSArray<NSString *> *)arguments delegate:(id<InstallerProgressDelegate>)delegate;
+
18 
+
19 - (void)run;
+
20 
+
21 - (void)cleanupAndExitWithStatus:(int)status error:(NSError * _Nullable)error __attribute__((noreturn));
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
Definition: InstallerProgressAppController.h:15
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_delegate_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_delegate_8h_source.html new file mode 100644 index 0000000..365ab95 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_installer_progress_delegate_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/InstallerProgressDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgressDelegate.h
+
+
+
1 //
+
2 // InstallerProgressDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @protocol InstallerProgressDelegate <NSObject>
+
16 
+
17 - (void)installerProgressShouldDisplayWithHost:(SUHost *)host;
+
18 - (void)installerProgressShouldStop;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_8h_source.html new file mode 100644 index 0000000..75af479 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemState.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemState.h
+
+
+
1 //
+
2 // SPUAppcastItemState.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/31/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 // Appcast Item state that contains properties that depends on a host
+
14 @interface SPUAppcastItemState : NSObject
+
15 
+
16 - (instancetype)init NS_UNAVAILABLE;
+
17 
+
18 - (instancetype)initWithMajorUpgrade:(BOOL)majorUpgrade criticalUpdate:(BOOL)criticalUpdate informationalUpdate:(BOOL)informationalUpdate minimumOperatingSystemVersionIsOK:(BOOL)minimumOperatingSystemVersionIsOK maximumOperatingSystemVersionIsOK:(BOOL)maximumOperatingSystemVersionIsOK;
+
19 
+
20 @property (nonatomic, readonly) BOOL majorUpgrade;
+
21 @property (nonatomic, readonly) BOOL criticalUpdate;
+
22 @property (nonatomic, readonly) BOOL informationalUpdate;
+
23 @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
+
24 @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
+
25 
+
26 @end
+
27 
+
28 NS_ASSUME_NONNULL_END
+
Definition: SPUAppcastItemState.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html new file mode 100644 index 0000000..69d586d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_09_private_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemStateResolver+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemStateResolver+Private.h
+
+
+
1 //
+
2 // SPUAppcastItemStateResolver+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/20/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUAppcastItemStateResolver_Private_h
+
10 #define SPUAppcastItemStateResolver_Private_h
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @interface SPUAppcastItemStateResolver ()
+
15 
+
16 - (SPUAppcastItemState *)resolveStateWithInformationalUpdateVersions:(NSSet<NSString *> * _Nullable)informationalUpdateVersions minimumOperatingSystemVersion:(NSString * _Nullable)minimumOperatingSystemVersion maximumOperatingSystemVersion:(NSString * _Nullable)maximumOperatingSystemVersion minimumAutoupdateVersion:(NSString * _Nullable)minimumAutoupdateVersion criticalUpdateDictionary:(NSDictionary * _Nullable)criticalUpdateDictionary;
+
17 
+
18 + (BOOL)isMinimumAutoupdateVersionOK:(NSString * _Nullable)minimumAutoupdateVersion hostVersion:(NSString *)hostVersion versionComparator:(id<SUVersionComparison>)versionComparator;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif /* SPUAppcastItemStateResolver_Private_h */
+
Definition: SPUAppcastItemState.h:15
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_8h_source.html new file mode 100644 index 0000000..2e77ab0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_appcast_item_state_resolver_8h_source.html @@ -0,0 +1,118 @@ + + + + + + + +Sparkle: Sparkle/SPUAppcastItemStateResolver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAppcastItemStateResolver.h
+
+
+
1 //
+
2 // SPUAppcastItemStateResolver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/31/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #import <Sparkle/SUExport.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+ +
23 @protocol SUVersionComparison;
+
24 
+
29 SU_EXPORT @interface SPUAppcastItemStateResolver : NSObject
+
30 
+
31 - (instancetype)init NS_UNAVAILABLE;
+
32 
+
33 - (instancetype)initWithHostVersion:(NSString *)hostVersion applicationVersionComparator:(id<SUVersionComparison>)applicationVersionComparator standardVersionComparator:(SUStandardVersionComparator *)standardVersionComparator;
+
34 
+
35 @end
+
36 
+
37 NS_ASSUME_NONNULL_END
+
Definition: SPUAppcastItemState.h:15
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Sparkle's default version comparator.
Definition: SUStandardVersionComparator.h:42
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_automatic_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_automatic_update_driver_8h_source.html new file mode 100644 index 0000000..ceb1fe7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_automatic_update_driver_8h_source.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: Sparkle/SPUAutomaticUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUAutomaticUpdateDriver.h
+
+
+
1 //
+
2 // SPUAutomaticUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+ +
16 
+ +
18 
+
19 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUAutomaticUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_basic_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_basic_update_driver_8h_source.html new file mode 100644 index 0000000..fc239f8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_basic_update_driver_8h_source.html @@ -0,0 +1,132 @@ + + + + + + + +Sparkle: Sparkle/SPUBasicUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUBasicUpdateDriver.h
+
+
+
1 //
+
2 // SPUBasicUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost, SUAppcastItem;
+
15 @protocol SPUUpdaterDelegate;
+
16 
+
17 @protocol SPUBasicUpdateDriverDelegate <NSObject>
+
18 
+
19 - (void)basicDriverDidFindUpdateWithAppcastItem:(SUAppcastItem *)appcastItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem systemDomain:(NSNumber * _Nullable)systemDomain;
+
20 
+
21 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
22 
+
23 @optional
+
24 
+
25 - (void)basicDriverDidFinishLoadingAppcast;
+
26 
+
27 @end
+
28 
+
29 @interface SPUBasicUpdateDriver : NSObject
+
30 
+
31 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id <SPUBasicUpdateDriverDelegate>)delegate;
+
32 
+
33 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
34 
+
35 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
36 
+
37 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
38 
+
39 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
40 
+
41 - (void)abortUpdateAndShowNextUpdateImmediately:(BOOL)shouldSignalShowingUpdate resumableUpdate:(id<SPUResumableUpdate> _Nullable)resumableUpdate error:(nullable NSError *)error;
+
42 
+
43 @end
+
44 
+
45 NS_ASSUME_NONNULL_END
+
Definition: SPUBasicUpdateDriver.h:30
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUBasicUpdateDriver.h:17
+
Definition: SPUResumableUpdate.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_core_based_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_core_based_update_driver_8h_source.html new file mode 100644 index 0000000..b34173e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_core_based_update_driver_8h_source.html @@ -0,0 +1,165 @@ + + + + + + + +Sparkle: Sparkle/SPUCoreBasedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUCoreBasedUpdateDriver.h
+
+
+
1 //
+
2 // SPUCoreBasedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 #import "SPUUserUpdateState.h"
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost, SUAppcastItem;
+
16 @protocol SPUUpdaterDelegate;
+
17 
+ +
19 
+
20 - (void)basicDriverDidFindUpdateWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem;
+
21 
+
22 - (void)installerDidFinishPreparationAndWillInstallImmediately:(BOOL)willInstallImmediately silently:(BOOL)willInstallSilently;
+
23 
+
24 - (void)coreDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
25 
+
26 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
27 
+
28 @optional
+
29 
+
30 - (void)basicDriverDidFinishLoadingAppcast;
+
31 
+
32 - (void)downloadDriverWillBeginDownload;
+
33 
+
34 - (void)downloadDriverDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
35 
+
36 - (void)downloadDriverDidReceiveDataOfLength:(uint64_t)length;
+
37 
+
38 - (void)coreDriverDidStartExtractingUpdate;
+
39 
+
40 - (void)installerDidStartInstalling;
+
41 
+
42 - (void)installerDidExtractUpdateWithProgress:(double)progress;
+
43 
+
44 - (void)installerIsSendingAppTerminationSignal;
+
45 
+
46 - (void)installerDidFinishInstallationAndRelaunched:(BOOL)relaunched acknowledgement:(void(^)(void))acknowledgement;
+
47 
+
48 @end
+
49 
+
50 @interface SPUCoreBasedUpdateDriver : NSObject
+
51 
+
52 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id<SPUCoreBasedUpdateDriverDelegate>)delegate;
+
53 
+
54 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
55 
+
56 - (void)preflightForUpdatePermissionPreventingInstallerInteraction:(BOOL)preventsInstallerInteraction reply:(void (^)(NSError * _Nullable))reply;
+
57 
+
58 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background requiresSilentInstall:(BOOL)silentInstall;
+
59 
+
60 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
61 
+
62 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
63 
+
64 - (void)downloadUpdateFromAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryUpdateItem inBackground:(BOOL)background;
+
65 
+
66 - (void)deferInformationalUpdate:(SUAppcastItem *)updateItem secondaryUpdate:(SUAppcastItem * _Nullable)secondaryUpdateItem;
+
67 
+
68 - (void)extractDownloadedUpdate;
+
69 
+
70 - (void)clearDownloadedUpdate;
+
71 
+
72 - (void)finishInstallationWithResponse:(SPUUserUpdateChoice)installUpdateStatus displayingUserInterface:(BOOL)displayingUserInterface;
+
73 
+
74 - (void)abortUpdateAndShowNextUpdateImmediately:(BOOL)shouldShowUpdateImmediately error:(nullable NSError *)error;
+
75 
+
76 @end
+
77 
+
78 NS_ASSUME_NONNULL_END
+
Definition: SPUCoreBasedUpdateDriver.h:51
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUCoreBasedUpdateDriver.h:18
+
Definition: SPUResumableUpdate.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_data_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_data_8h_source.html new file mode 100644 index 0000000..442d71a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_data_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadData.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadData.h
+
+
+
1 //
+
2 // SPUDownloadData.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #ifdef BUILDING_SPARKLE_DOWNLOADER_SERVICE
+
19 // Ignore incorrect warning
+
20 #pragma clang diagnostic push
+
21 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
22 #import "SUExport.h"
+
23 #pragma clang diagnostic pop
+
24 #else
+
25 #import <Sparkle/SUExport.h>
+
26 #endif
+
27 
+
28 NS_ASSUME_NONNULL_BEGIN
+
29 
+
33 SU_EXPORT @interface SPUDownloadData : NSObject <NSSecureCoding>
+
34 
+
35 - (instancetype)initWithData:(NSData *)data URL:(NSURL *)URL textEncodingName:(NSString * _Nullable)textEncodingName MIMEType:(NSString * _Nullable)MIMEType;
+
36 
+
40 @property (nonatomic, readonly) NSData *data;
+
41 
+
47 @property (nonatomic, readonly, copy) NSURL *URL;
+
48 
+
52 @property (nonatomic, readonly, nullable, copy) NSString *textEncodingName;
+
53 
+
57 @property (nonatomic, readonly, nullable, copy) NSString *MIMEType;
+
58 
+
59 @end
+
60 
+
61 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
NSString * MIMEType
The MIME type if available.
Definition: SPUDownloadData.h:57
+
NSURL * URL
The URL that was fetched from.
Definition: SPUDownloadData.h:47
+
NSString * textEncodingName
The IANA charset encoding name if available.
Definition: SPUDownloadData.h:52
+
NSData * data
The raw data that was downloaded.
Definition: SPUDownloadData.h:40
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_driver_8h_source.html new file mode 100644 index 0000000..36c408f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_download_driver_8h_source.html @@ -0,0 +1,143 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadDriver.h
+
+
+
1 //
+
2 // SPUDownloadDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 @protocol SPUDownloadDriverDelegate <NSObject>
+
16 
+
17 - (void)downloadDriverDidFailToDownloadFileWithError:(NSError *)error;
+
18 
+
19 @optional
+
20 
+
21 - (void)downloadDriverWillBeginDownload;
+
22 
+
23 // For persitent update downloads
+
24 - (void)downloadDriverDidDownloadUpdate:(SPUDownloadedUpdate *)downloadedUpdate;
+
25 
+
26 // For temporary downloads
+
27 - (void)downloadDriverDidDownloadData:(SPUDownloadData *)downloadData;
+
28 
+
29 // Only for persistent downloads
+
30 - (void)downloadDriverDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
31 
+
32 // Only for persistent downloads
+
33 - (void)downloadDriverDidReceiveDataOfLength:(uint64_t)length;
+
34 
+
35 @end
+
36 
+
37 @interface SPUDownloadDriver : NSObject
+
38 
+
39 - (instancetype)initWithRequestURL:(NSURL *)requestURL host:(SUHost *)host userAgent:(NSString * _Nullable)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background delegate:(id<SPUDownloadDriverDelegate>)delegate;
+
40 
+
41 - (instancetype)initWithUpdateItem:(SUAppcastItem *)updateItem secondaryUpdateItem:(SUAppcastItem * _Nullable)secondaryUpdateItem host:(SUHost *)host userAgent:(NSString * _Nullable)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background delegate:(id<SPUDownloadDriverDelegate>)delegate;
+
42 
+
43 - (instancetype)initWithHost:(SUHost *)host;
+
44 
+
45 - (void)downloadFile;
+
46 
+
47 - (void)removeDownloadedUpdate:(SPUDownloadedUpdate *)downloadedUpdate;
+
48 
+
49 @property (nonatomic, readonly) NSMutableURLRequest *request;
+
50 @property (nonatomic, readonly) BOOL inBackground;
+
51 
+
52 - (void)cleanup:(void (^)(void))completionHandler;
+
53 
+
54 @end
+
55 
+
56 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
Definition: SPUDownloadDriver.h:38
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUDownloadDriver.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_downloaded_update_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_downloaded_update_8h_source.html new file mode 100644 index 0000000..5c716ce --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_downloaded_update_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SPUDownloadedUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUDownloadedUpdate.h
+
+
+
1 //
+
2 // SPUDownloadedUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/8/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUResumableUpdate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @interface SPUDownloadedUpdate : NSObject <SPUResumableUpdate>
+
15 
+
16 - (instancetype)initWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryItem downloadName:(NSString *)downloadName temporaryDirectory:(NSString *)temporaryDirectory;
+
17 
+
18 @property (nonatomic, copy, readonly) NSString *downloadName;
+
19 @property (nonatomic, copy, readonly) NSString *temporaryDirectory;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_informational_update_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_informational_update_8h_source.html new file mode 100644 index 0000000..4737b99 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_informational_update_8h_source.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: Sparkle/SPUInformationalUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInformationalUpdate.h
+
+
+
1 //
+
2 // SPUInformationalUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 1/8/17.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUResumableUpdate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+ +
15 
+
16 - (instancetype)initWithAppcastItem:(SUAppcastItem *)updateItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryUpdateItem;
+
17 
+
18 @end
+
19 
+
20 NS_ASSUME_NONNULL_END
+
Definition: SPUInformationalUpdate.h:14
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installation_type_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installation_type_8h_source.html new file mode 100644 index 0000000..358d236 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installation_type_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SPUInstallationType.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallationType.h
+
+
+
1 //
+
2 // SPUInstallationType.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUInstallationType_h
+
10 #define SPUInstallationType_h
+
11 
+
12 #define SPUInstallationTypeApplication @"application" // the default installation type for ordinary application updates
+
13 #define SPUInstallationTypeGuidedPackage @"package" // the preferred installation type for package installations
+
14 #define SPUInstallationTypeInteractivePackage @"interactive-package" // the deprecated installation type; use guided package instead
+
15 
+
16 #define SPUInstallationTypesArray (@[SPUInstallationTypeApplication, SPUInstallationTypeGuidedPackage, SPUInstallationTypeInteractivePackage])
+
17 #define SPUValidInstallationType(x) ((x != nil) && [SPUInstallationTypesArray containsObject:(NSString * _Nonnull)x])
+
18 
+
19 #endif /* SPUInstallationType_h */
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_agent_protocol_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_agent_protocol_8h_source.html new file mode 100644 index 0000000..266ab86 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_agent_protocol_8h_source.html @@ -0,0 +1,111 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/SPUInstallerAgentProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallerAgentProtocol.h
+
+
+
1 //
+
2 // SPUInstallerAgentProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 
+
15 - (void)registerApplicationBundlePath:(NSString *)applicationBundlePath reply:(void (^)(NSNumber * _Nullable processIdentifier))reply;
+
16 
+
17 - (void)registerInstallationInfoData:(NSData *)installationInfoData;
+
18 
+
19 - (void)sendTerminationSignal;
+
20 
+
21 - (void)showProgress;
+
22 
+
23 - (void)stopProgress;
+
24 
+
25 - (void)relaunchApplication;
+
26 
+
27 @end
+
28 
+
29 NS_ASSUME_NONNULL_END
+
Definition: SPUInstallerAgentProtocol.h:13
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_driver_8h_source.html new file mode 100644 index 0000000..9ce510a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_installer_driver_8h_source.html @@ -0,0 +1,136 @@ + + + + + + + +Sparkle: Sparkle/SPUInstallerDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUInstallerDriver.h
+
+
+
1 //
+
2 // SPUInstallerDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterDelegate;
+ +
15 
+
16 @protocol SPUInstallerDriverDelegate <NSObject>
+
17 
+
18 - (void)installerDidStartInstalling;
+
19 - (void)installerDidStartExtracting;
+
20 - (void)installerDidExtractUpdateWithProgress:(double)progress;
+
21 - (void)installerDidFinishPreparationAndWillInstallImmediately:(BOOL)willInstallImmediately silently:(BOOL)willInstallSilently;
+
22 - (void)installerIsSendingAppTerminationSignal;
+
23 - (void)installerWillFinishInstallationAndRelaunch:(BOOL)relaunch;
+
24 - (void)installerDidFinishInstallationAndRelaunched:(BOOL)relaunch acknowledgement:(void(^)(void))acknowledgement;
+
25 
+
26 - (void)installerIsRequestingAbortInstallWithError:(nullable NSError *)error;
+
27 - (void)installerDidFailToApplyDeltaUpdate;
+
28 
+
29 @end
+
30 
+
31 @interface SPUInstallerDriver : NSObject
+
32 
+
33 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate delegate:(nullable id<SPUInstallerDriverDelegate>)delegate;
+
34 
+
35 - (void)resumeInstallingUpdateWithUpdateItem:(SUAppcastItem *)updateItem systemDomain:(BOOL)systemDomain;
+
36 
+
37 - (void)checkIfApplicationInstallationRequiresAuthorizationWithReply:(void (^)(BOOL requiresAuthorization))reply;
+
38 
+
39 - (void)extractDownloadedUpdate:(SPUDownloadedUpdate *)downloadedUpdate silently:(BOOL)silently preventsInstallerInteraction:(BOOL)preventsInstallerInteraction completion:(void (^)(NSError * _Nullable))completionHandler;
+
40 
+
41 - (void)installWithToolAndRelaunch:(BOOL)relaunch displayingUserInterface:(BOOL)showUI;
+
42 
+
43 - (void)cancelUpdate;
+
44 
+
45 - (void)abortInstall;
+
46 
+
47 @end
+
48 
+
49 NS_ASSUME_NONNULL_END
+
Definition: SPUDownloadedUpdate.h:14
+
Definition: SPUInstallerDriver.h:32
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Definition: SPUInstallerDriver.h:16
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_local_cache_directory_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_local_cache_directory_8h_source.html new file mode 100644 index 0000000..17818ef --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_local_cache_directory_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPULocalCacheDirectory.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPULocalCacheDirectory.h
+
+
+
1 //
+
2 // SULocalCacheDirectory.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/23/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @interface SPULocalCacheDirectory : NSObject
+
14 
+
15 // Returns a path to a suitable cache directory to create specifically for Sparkle
+
16 // Intermediate directories to this path may not exist yet
+
17 // This path may depend on the type of running process,
+
18 // such that sandboxed vs non-sandboxed processes could yield different paths
+
19 // The caller should create a subdirectory from the path that is returned here so they don't have files that
+
20 // conflict with other callers. Once that subdirectory name is decided, the caller can remove old items inside it (using +removeOldItemsInDirectory:)
+
21 // and then create a unique temporary directory inside it (using +createUniqueDirectoryInDirectory:)
+
22 + (NSString *)cachePathForBundleIdentifier:(NSString *)bundleIdentifier;
+
23 
+
24 // Remove old files inside a directory
+
25 // A caller may want to invoke this on a directory they own rather than remove and re-create an entire directory
+
26 // This does nothing if the supplied directory does not exist yet
+
27 + (void)removeOldItemsInDirectory:(NSString *)directory;
+
28 
+
29 // Create a unique directory inside a parent directory
+
30 // The parent directory doesn't have to exist yet. If it doesn't exist, intermediate directories will be created.
+
31 + (NSString * _Nullable)createUniqueDirectoryInDirectory:(NSString *)directory;
+
32 
+
33 @end
+
34 
+
35 NS_ASSUME_NONNULL_END
+
Definition: SPULocalCacheDirectory.h:14
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probe_install_status_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probe_install_status_8h_source.html new file mode 100644 index 0000000..1ae7661 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probe_install_status_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SPUProbeInstallStatus.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUProbeInstallStatus.h
+
+
+
1 //
+
2 // SPUProbeInstallStatus.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/20/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SPUInstallationInfo;
+
14 
+
15 @interface SPUProbeInstallStatus : NSObject
+
16 
+
17 + (void)probeInstallerInProgressForHostBundleIdentifier:(NSString *)hostBundleIdentifier completion:(void (^)(BOOL))completionHandler;
+
18 
+
19 // completionHandler may not be sent on main queue
+
20 // additionally, it may be possible that the installer is in progress but we get a nil installation info back
+
21 + (void)probeInstallerUpdateItemForHostBundleIdentifier:(NSString *)hostBundleIdentifier completion:(void (^)(SPUInstallationInfo * _Nullable))completionHandler;
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
Definition: SPUProbeInstallStatus.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probing_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probing_update_driver_8h_source.html new file mode 100644 index 0000000..56d9aa1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_probing_update_driver_8h_source.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: Sparkle/SPUProbingUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUProbingUpdateDriver.h
+
+
+
1 //
+
2 // SPUProbingUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+
15 @protocol SPUUpdaterDelegate;
+
16 
+
17 @interface SPUProbingUpdateDriver : NSObject <SPUUpdateDriver>
+
18 
+
19 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUProbingUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_resumable_update_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_resumable_update_8h_source.html new file mode 100644 index 0000000..4c1c26a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_resumable_update_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SPUResumableUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUResumableUpdate.h
+
+
+
1 //
+
2 // SPUResumableUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUAppcastItem;
+
14 
+
15 @protocol SPUResumableUpdate <NSObject>
+
16 
+
17 @property (nonatomic, readonly) SUAppcastItem *updateItem;
+
18 @property (nonatomic, readonly, nullable) SUAppcastItem *secondaryUpdateItem;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUAppcastItem.h:36
+
Definition: SPUResumableUpdate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_scheduled_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_scheduled_update_driver_8h_source.html new file mode 100644 index 0000000..a849ea5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_scheduled_update_driver_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SPUScheduledUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUScheduledUpdateDriver.h
+
+
+
1 //
+
2 // SPUScheduledUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 #import "SPUUIBasedUpdateDriver.h"
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost;
+ +
17 
+ +
19 
+
20 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
21 
+
22 @end
+
23 
+
24 NS_ASSUME_NONNULL_END
+
Definition: SPUScheduledUpdateDriver.h:18
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_secure_coding_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_secure_coding_8h_source.html new file mode 100644 index 0000000..9f23f01 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_secure_coding_8h_source.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Sparkle/SPUSecureCoding.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUSecureCoding.h
+
+
+
1 //
+
2 // SPUSecureCoding.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 // If we are using XPC without using XPC Services, our custom classes will not be (de)serialized automatically,
+
12 // hence needing functions to archive/unarchive NSSecureCoding objects.
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 NSData * _Nullable SPUArchiveRootObjectSecurely(id<NSSecureCoding> rootObject);
+
17 
+
18 id<NSSecureCoding> _Nullable SPUUnarchiveRootObjectSecurely(NSData *data, Class klass);
+
19 
+
20 NS_ASSUME_NONNULL_END
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_skipped_update_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_skipped_update_8h_source.html new file mode 100644 index 0000000..5662d51 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_skipped_update_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SPUSkippedUpdate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUSkippedUpdate.h
+
+
+
1 //
+
2 // SPUSkippedUpdate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/8/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost, SUAppcastItem;
+
14 
+
15 /*
+
16  A skipped update tracks an optional minor version and an optional major version the user may skip.
+
17  The minor and major versions are independent versions, so the user can choose to skip at most two separate versions.
+
18  The intent is when the user is faced with a major upgrade, they can skip a major version.
+
19  Otherwise they can choose to skip a minor version.
+
20  */
+
21 @interface SPUSkippedUpdate : NSObject
+
22 
+
23 + (nullable SPUSkippedUpdate *)skippedUpdateForHost:(SUHost *)host;
+
24 
+
25 + (void)clearSkippedUpdateForHost:(SUHost *)host;
+
26 
+
27 + (void)skipUpdate:(SUAppcastItem *)updateItem host:(SUHost *)host;
+
28 
+
29 // At least one of minorVersion or majorVersion should be non-nil
+
30 - (instancetype)initWithMinorVersion:(nullable NSString *)minorVersion majorVersion:(nullable NSString *)majorVersion;
+
31 
+
32 // At least one of these version properties will be non-nil
+
33 @property (nonatomic, readonly, nullable) NSString *minorVersion;
+
34 @property (nonatomic, readonly, nullable) NSString *majorVersion;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
Definition: SPUSkippedUpdate.h:22
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_updater_controller_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_updater_controller_8h_source.html new file mode 100644 index 0000000..bfa5cb4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_updater_controller_8h_source.html @@ -0,0 +1,141 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUpdaterController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUpdaterController.h
+
+
+
1 //
+
2 // SPUStandardUpdaterController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
21 @class SPUUpdater;
+ +
23 @class NSMenuItem;
+ +
25 
+
39 SU_EXPORT @interface SPUStandardUpdaterController : NSObject
+
40 
+
46 @property (nonatomic, weak, nullable) IBOutlet id<SPUUpdaterDelegate> updaterDelegate;
+
47 
+
53 @property (nonatomic, weak, nullable) IBOutlet id<SPUStandardUserDriverDelegate> userDriverDelegate;
+
54 
+
60 @property (nonatomic, readonly) SPUUpdater *updater;
+
61 
+
65 @property (nonatomic, readonly) SPUStandardUserDriver *userDriver;
+
66 
+
74 - (instancetype)init NS_UNAVAILABLE;
+
75 
+
81 - (instancetype)initWithUpdaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate userDriverDelegate:(nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
+
82 
+
89 - (instancetype)initWithStartingUpdater:(BOOL)startUpdater updaterDelegate:(nullable id<SPUUpdaterDelegate>)updaterDelegate userDriverDelegate:(nullable id<SPUStandardUserDriverDelegate>)userDriverDelegate;
+
90 
+
100 - (void)startUpdater;
+
101 
+
116 - (IBAction)checkForUpdates:(nullable id)sender;
+
117 
+
118 @end
+
119 
+
120 NS_ASSUME_NONNULL_END
+
A controller class that instantiates a SPUUpdater and allows binding UI to it.
Definition: SPUStandardUpdaterController.h:40
+
void startUpdater()
Starts the updater if it has not already been started.
+
SPUStandardUserDriver * userDriver
Accessible property for the updater's user driver.
Definition: SPUStandardUpdaterController.h:65
+
instancetype NS_UNAVAILABLE()
Create a new SPUStandardUpdaterController from a nib.
+
IBOutlet id< SPUStandardUserDriverDelegate > userDriverDelegate
Interface builder outlet for the user driver's delegate.
Definition: SPUStandardUpdaterController.h:53
+
IBOutlet id< SPUUpdaterDelegate > updaterDelegate
Interface builder outlet for the updater's delegate.
Definition: SPUStandardUpdaterController.h:46
+
SPUUpdater * updater
Accessible property for the updater.
Definition: SPUStandardUpdaterController.h:60
+
Sparkle's standard built-in user driver for updater interactions.
Definition: SPUStandardUserDriver.h:27
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_8h_source.html new file mode 100644 index 0000000..7e1601f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUserDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUserDriver.h
+
+
+
1 //
+
2 // SPUStandardUserDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SPUUserDriver.h>
+
18 #import <Sparkle/SUExport.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+ +
23 
+
27 SU_EXPORT @interface SPUStandardUserDriver : NSObject <SPUUserDriver>
+
28 
+
35 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle delegate:(nullable id<SPUStandardUserDriverDelegate>)delegate;
+
36 
+
40 - (instancetype)init NS_UNAVAILABLE;
+
41 
+
42 @end
+
43 
+
44 NS_ASSUME_NONNULL_END
+
Sparkle's standard built-in user driver for updater interactions.
Definition: SPUStandardUserDriver.h:27
+
instancetype NS_UNAVAILABLE()
Use initWithHostBundle:delegate: instead.
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_delegate_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_delegate_8h_source.html new file mode 100644 index 0000000..f5e4957 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_standard_user_driver_delegate_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SPUStandardUserDriverDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUStandardUserDriverDelegate.h
+
+
+
1 //
+
2 // SPUStandardUserDriverDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/3/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 @protocol SUVersionDisplay;
+
20 
+
26 SU_EXPORT @protocol SPUStandardUserDriverDelegate <NSObject>
+
27 
+
28 @optional
+
29 
+ +
35 
+ +
41 
+ +
48 
+
49 @end
+
A protocol for Sparkle's standard user driver's delegate.
Definition: SPUStandardUserDriverDelegate.h:26
+
void standardUserDriverDidShowModalAlert()
Called after showing a modal alert window, to give the opportunity to hide attached windows that may ...
+
void standardUserDriverWillShowModalAlert()
Called before showing a modal alert window, to give the opportunity to hide attached windows that may...
+
_Nullable id< SUVersionDisplay > standardUserDriverRequestsVersionDisplayer()
Returns an object that formats version numbers for display to the user.
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_i_based_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_i_based_update_driver_8h_source.html new file mode 100644 index 0000000..3b4a185 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_i_based_update_driver_8h_source.html @@ -0,0 +1,135 @@ + + + + + + + +Sparkle: Sparkle/SPUUIBasedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUIBasedUpdateDriver.h
+
+
+
1 //
+
2 // SPUUIBasedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @protocol SPUUIBasedUpdateDriverDelegate <NSObject>
+
15 
+
16 - (void)basicDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
17 - (void)coreDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
18 - (void)uiDriverIsRequestingAbortUpdateWithError:(nullable NSError *)error;
+
19 
+
20 @optional
+
21 
+
22 - (void)uiDriverDidShowUpdate;
+
23 - (void)basicDriverDidFinishLoadingAppcast;
+
24 
+
25 @end
+
26 
+
27 @class SUHost;
+ +
29 
+
30 @interface SPUUIBasedUpdateDriver : NSObject
+
31 
+
32 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver userInitiated:(BOOL)userInitiated updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(id<SPUUIBasedUpdateDriverDelegate>)delegate;
+
33 
+
34 - (void)prepareCheckForUpdatesWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
35 
+
36 - (void)preflightForUpdatePermissionPreventingInstallerInteraction:(BOOL)preventsInstallerInteraction reply:(void (^)(NSError * _Nullable))reply;
+
37 
+
38 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
39 
+
40 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
41 
+
42 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
43 
+
44 - (void)abortUpdateWithError:(nullable NSError *)error;
+
45 
+
46 @end
+
47 
+
48 NS_ASSUME_NONNULL_END
+
Definition: SPUUIBasedUpdateDriver.h:31
+
Definition: SUHost.h:15
+
Definition: SPUResumableUpdate.h:15
+
Definition: SPUUIBasedUpdateDriver.h:14
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_r_l_request_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_r_l_request_8h_source.html new file mode 100644 index 0000000..b49fd11 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_u_r_l_request_8h_source.html @@ -0,0 +1,113 @@ + + + + + + + +Sparkle: Sparkle/SPUURLRequest.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUURLRequest.h
+
+
+
1 //
+
2 // SPUURLRequest.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/19/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 // A class that wraps NSURLRequest and implements NSSecureCoding
+
14 // This class exists because NSURLRequest did not support NSSecureCoding in macOS 10.8
+
15 // I have not verified if NSURLRequest in 10.9 implements NSSecureCoding or not
+
16 @interface SPUURLRequest : NSObject <NSSecureCoding>
+
17 
+
18 // Creates a new URL request
+
19 // Only these properties are currently tracked:
+
20 // * URL
+
21 // * Cache policy
+
22 // * Timeout interval
+
23 // * HTTP header fields
+
24 // * networkServiceType
+
25 + (instancetype)URLRequestWithRequest:(NSURLRequest *)request;
+
26 
+
27 @property (nonatomic, readonly) NSURLRequest *request;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
Definition: SPUURLRequest.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_driver_8h_source.html new file mode 100644 index 0000000..92fca2b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_driver_8h_source.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdateDriver.h
+
+
+
1 //
+
2 // SPUUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/15/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 NS_ASSUME_NONNULL_BEGIN
+
10 
+
11 @protocol SPUResumableUpdate;
+
12 
+
13 typedef void (^SPUUpdateDriverCompletion)(BOOL shouldShowUpdateImmediately, id<SPUResumableUpdate> _Nullable resumableUpdate);
+
14 
+
15 // This protocol describes an update driver that drives updates
+
16 // An update driver may have multiple levels of other controller components (eg: basic update driver, core based update driver, ui based update driver, appcast driver, etc)
+
17 // The update driver and the components the driver has communicates via parameter passing and delegation..
+
18 // The old Sparkle architecture communicated via subclassing and method overriding, but this lead to bugs due to high coupling, and complexity of not being aware of methods being executed.
+
19 // The newer architecture is still complex but should be more reliable to maintain and extend.
+
20 @protocol SPUUpdateDriver <NSObject>
+
21 
+
22 - (void)checkForUpdatesAtAppcastURL:(NSURL *)appcastURL withUserAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders preventingInstallerInteraction:(BOOL)preventsInstallerInteraction completion:(SPUUpdateDriverCompletion)completionBlock;
+
23 
+
24 - (void)resumeInstallingUpdateWithCompletion:(SPUUpdateDriverCompletion)completionBlock;
+
25 
+
26 - (void)resumeUpdate:(id<SPUResumableUpdate>)resumableUpdate completion:(SPUUpdateDriverCompletion)completionBlock;
+
27 
+
28 @property (nonatomic, readonly) BOOL showingUpdate;
+
29 
+
30 // A likely implementation of -abortUpdate is invoking -abortUpdateWithError: by passing nil
+
31 - (void)abortUpdate;
+
32 
+
33 // This should be invoked on the update driver to finish the update driver's work
+
34 - (void)abortUpdateWithError:(NSError * _Nullable)error;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
Definition: SPUResumableUpdate.h:15
+
Definition: SPUUpdateDriver.h:20
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_permission_request_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_permission_request_8h_source.html new file mode 100644 index 0000000..3e1a739 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_update_permission_request_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdatePermissionRequest.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdatePermissionRequest.h
+
+
+
1 //
+
2 // SPUUpdatePermissionRequest.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
24 SU_EXPORT @interface SPUUpdatePermissionRequest : NSObject<NSSecureCoding>
+
25 
+
31 - (instancetype)initWithSystemProfile:(NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfile;
+
32 
+
36 @property (nonatomic, readonly) NSArray<NSDictionary<NSString *, NSString *> *> *systemProfile;
+
37 
+
38 @end
+
39 
+
40 NS_ASSUME_NONNULL_END
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
NSArray< NSDictionary< NSString *, NSString * > * > * systemProfile
A read-only property for the user's system profile.
Definition: SPUUpdatePermissionRequest.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_8h_source.html new file mode 100644 index 0000000..cf10582 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_8h_source.html @@ -0,0 +1,181 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdater.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdater.h
+
+
+
1 //
+
2 // SPUUpdater.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/4/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 #import <Sparkle/SPUUserDriver.h>
+
19 
+
20 NS_ASSUME_NONNULL_BEGIN
+
21 
+
22 @class SUAppcastItem, SUAppcast;
+
23 
+
24 @protocol SPUUpdaterDelegate;
+
25 
+
32 SU_EXPORT @interface SPUUpdater : NSObject
+
33 
+
49 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle applicationBundle:(NSBundle *)applicationBundle userDriver:(id <SPUUserDriver>)userDriver delegate:(id<SPUUpdaterDelegate> _Nullable)delegate;
+
50 
+
56 - (instancetype)init NS_UNAVAILABLE;
+
57 
+
79 - (BOOL)startUpdater:(NSError * __autoreleasing *)error;
+
80 
+
94 - (void)checkForUpdates;
+
95 
+ +
107 
+ +
120 
+
130 @property (nonatomic, readonly) BOOL canCheckForUpdates;
+
131 
+
145 @property (nonatomic, readonly) BOOL sessionInProgress;
+
146 
+
154 @property (nonatomic) BOOL automaticallyChecksForUpdates;
+
155 
+
163 @property (nonatomic) NSTimeInterval updateCheckInterval;
+
164 
+
173 @property (nonatomic) BOOL automaticallyDownloadsUpdates;
+
174 
+
185 @property (nonatomic, readonly, nullable) NSURL *feedURL;
+
186 
+
200 - (void)setFeedURL:(NSURL * _Nullable)feedURL;
+
201 
+
205 @property (nonatomic, readonly) NSBundle *hostBundle;
+
206 
+
210 @property (nonatomic, readonly) NSBundle *sparkleBundle;
+
211 
+
217 @property (nonatomic, copy) NSString *userAgentString;
+
218 
+
224 #if __has_feature(objc_generics)
+
225 @property (nonatomic, copy, nullable) NSDictionary<NSString *, NSString *> *httpHeaders;
+
226 #else
+
227 @property (nonatomic, copy, nullable) NSDictionary *httpHeaders;
+
228 #endif
+
229 
+
235 @property (nonatomic) BOOL sendsSystemProfile;
+
236 
+
242 @property (nonatomic, readonly, copy, nullable) NSDate *lastUpdateCheckDate;
+
243 
+
251 - (void)resetUpdateCycle;
+
252 
+
253 
+
257 @property (nonatomic, readonly, copy) NSArray<NSDictionary<NSString *, NSString *> *> *systemProfileArray;
+
258 
+
259 @end
+
260 
+
261 NS_ASSUME_NONNULL_END
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
NSTimeInterval updateCheckInterval
A property indicating the current automatic update check interval.
Definition: SPUUpdater.h:163
+
NSDate * lastUpdateCheckDate
Returns the date of last update check.
Definition: SPUUpdater.h:242
+
void checkForUpdatesInBackground()
Checks for updates, but does not display any UI unless an update is found.
+
NSDictionary * httpHeaders
The HTTP headers used when checking for updates.
Definition: SPUUpdater.h:227
+
BOOL sendsSystemProfile
A property indicating whether or not the user's system profile information is sent when checking for ...
Definition: SPUUpdater.h:235
+
NSString * userAgentString
The user agent used when checking for updates.
Definition: SPUUpdater.h:217
+
void checkForUpdates()
Checks for updates, and displays progress while doing so if needed.
+
NSArray< NSDictionary< NSString *, NSString * > * > * systemProfileArray
The system profile information that is sent when checking for updates.
Definition: SPUUpdater.h:257
+
BOOL automaticallyChecksForUpdates
A property indicating whether or not to check for updates automatically.
Definition: SPUUpdater.h:154
+
NSBundle * sparkleBundle
The bundle this class (SPUUpdater) is loaded into.
Definition: SPUUpdater.h:210
+
BOOL automaticallyDownloadsUpdates
A property indicating whether or not updates can be automatically downloaded in the background.
Definition: SPUUpdater.h:173
+
BOOL canCheckForUpdates
A property indicating whether or not updates can be checked by the user.
Definition: SPUUpdater.h:130
+
instancetype NS_UNAVAILABLE()
Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standa...
+
void checkForUpdateInformation()
Begins a "probing" check for updates which will not actually offer to update to that version.
+
NSBundle * hostBundle
The host bundle that is being updated.
Definition: SPUUpdater.h:205
+
BOOL sessionInProgress
A property indicating whether or not an update session is in progress.
Definition: SPUUpdater.h:145
+
void resetUpdateCycle()
Appropriately schedules or cancels the update checking timer according to the preferences for time in...
+
NSURL * feedURL
The URL of the appcast used to download update information.
Definition: SPUUpdater.h:185
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_cycle_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_cycle_8h_source.html new file mode 100644 index 0000000..dc0d451 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_cycle_8h_source.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterCycle.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterCycle.h
+
+
+
1 //
+
2 // SPUUpdaterCycle.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 6/11/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterCycleDelegate <NSObject>
+
14 
+
15 - (void)resetUpdateCycle;
+
16 
+
17 @end
+
18 
+
19 // This notifies the updater for (re-)starting and canceling update cycles
+
20 // This class is used so that an updater instance isn't kept alive by a pending update cycle
+
21 @interface SPUUpdaterCycle : NSObject
+
22 
+
23 // This delegate is weakly referenced
+
24 - (instancetype)initWithDelegate:(id<SPUUpdaterCycleDelegate>)delegate;
+
25 
+
26 - (void)resetUpdateCycleAfterDelay;
+
27 
+
28 - (void)cancelNextUpdateCycle;
+
29 
+
30 @end
+
31 
+
32 NS_ASSUME_NONNULL_END
+
Definition: SPUUpdaterCycle.h:22
+
Definition: SPUUpdaterCycle.h:13
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_delegate_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_delegate_8h_source.html new file mode 100644 index 0000000..793b9cf --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_delegate_8h_source.html @@ -0,0 +1,225 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterDelegate.h
+
+
+
1 //
+
2 // SPUUpdaterDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 @protocol SUVersionComparison;
+ +
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 // -----------------------------------------------------------------------------
+
25 // SUUpdater Notifications for events that might be interesting to more than just the delegate
+
26 // The updater will be the notification object
+
27 // -----------------------------------------------------------------------------
+
28 SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification;
+
29 SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification;
+
30 SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification;
+
31 SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification;
+
32 #define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification;
+
33 #define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification;
+
34 
+
35 // Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo
+
36 SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey;
+
37 // Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo
+
38 SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey;
+
39 
+
40 // -----------------------------------------------------------------------------
+
41 // System Profile Keys
+
42 // -----------------------------------------------------------------------------
+
43 
+
44 SU_EXPORT extern NSString *const SUSystemProfilerApplicationNameKey;
+
45 SU_EXPORT extern NSString *const SUSystemProfilerApplicationVersionKey;
+
46 SU_EXPORT extern NSString *const SUSystemProfilerCPU64bitKey;
+
47 SU_EXPORT extern NSString *const SUSystemProfilerCPUCountKey;
+
48 SU_EXPORT extern NSString *const SUSystemProfilerCPUFrequencyKey;
+
49 SU_EXPORT extern NSString *const SUSystemProfilerCPUTypeKey;
+
50 SU_EXPORT extern NSString *const SUSystemProfilerCPUSubtypeKey;
+
51 SU_EXPORT extern NSString *const SUSystemProfilerHardwareModelKey;
+
52 SU_EXPORT extern NSString *const SUSystemProfilerMemoryKey;
+
53 SU_EXPORT extern NSString *const SUSystemProfilerOperatingSystemVersionKey;
+
54 SU_EXPORT extern NSString *const SUSystemProfilerPreferredLanguageKey;
+
55 
+
56 // -----------------------------------------------------------------------------
+
57 // SPUUpdater Delegate:
+
58 // -----------------------------------------------------------------------------
+
59 
+
60 typedef NS_ENUM(NSInteger, SPUUpdateCheck)
+
61 {
+
62  SPUUpdateCheckUserInitiated = 0,
+
63  SPUUpdateCheckBackgroundScheduled = 1
+
64 };
+
65 
+
69 @protocol SPUUpdaterDelegate <NSObject>
+
70 @optional
+
71 
+
81 - (void)updater:(SPUUpdater *)updater willScheduleUpdateCheckAfterDelay:(NSTimeInterval)delay;
+
82 
+
90 - (void)updaterWillIdleSchedulingUpdates:(SPUUpdater *)updater;
+
91 
+
100 - (BOOL)updaterMayCheckForUpdates:(SPUUpdater *)updater;
+
101 
+
112 #if __has_feature(objc_generics)
+
113 - (NSArray<NSDictionary<NSString *, NSString *> *> *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
114 #else
+
115 - (NSArray *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
116 #endif
+
117 
+
127 #if __has_feature(objc_generics)
+
128 - (NSArray<NSString *> *)allowedSystemProfileKeysForUpdater:(SPUUpdater *)updater;
+
129 #else
+
130 - (NSArray *)allowedSystemProfileKeysForUpdater:(SPUUpdater *)updater;
+
131 #endif
+
132 
+
142 - (nullable NSString *)feedURLStringForUpdater:(SPUUpdater *)updater;
+
143 
+
151 - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SPUUpdater *)updater;
+
152 
+
161 - (void)updater:(SPUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
+
162 
+
185 - (NSSet<NSString *> *)allowedChannelsForUpdater:(SPUUpdater *)updater;
+
186 
+
215 - (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SPUUpdater *)updater;
+
216 
+
223 - (void)updater:(SPUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item;
+
224 
+
237 - (void)updaterDidNotFindUpdate:(SPUUpdater *)updater error:(NSError *)error;
+
238 
+
244 - (void)updaterDidNotFindUpdate:(SPUUpdater *)updater;
+
245 
+
252 - (void)updater:(SPUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item;
+
253 
+
263 - (BOOL)updaterShouldDownloadReleaseNotes:(SPUUpdater *)updater;
+
264 
+
272 - (void)updater:(SPUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request;
+
273 
+
280 - (void)updater:(SPUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item;
+
281 
+
289 - (void)updater:(SPUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error;
+
290 
+
296 - (void)userDidCancelDownload:(SPUUpdater *)updater;
+
297 
+
304 - (void)updater:(SPUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item;
+
305 
+
312 - (void)updater:(SPUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item;
+
313 
+
320 - (void)updater:(SPUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item;
+
321 
+
336 - (BOOL)updater:(SPUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvokingBlock:(void (^)(void))installHandler;
+
337 
+
347 - (BOOL)updaterShouldRelaunchApplication:(SPUUpdater *)updater;
+
348 
+
354 - (void)updaterWillRelaunchApplication:(SPUUpdater *)updater;
+
355 
+
370 - (nullable id<SUVersionComparison>)versionComparatorForUpdater:(SPUUpdater *)updater;
+
371 
+
389 - (BOOL)updater:(SPUUpdater *)updater shouldAllowInstallerInteractionForUpdateCheck:(SPUUpdateCheck)updateCheck;
+
390 
+
399 - (nullable NSString *)decryptionPasswordForUpdater:(SPUUpdater *)updater;
+
400 
+
413 - (BOOL)updater:(SPUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))immediateInstallHandler;
+
414 
+
421 - (void)updater:(SPUUpdater *)updater didAbortWithError:(NSError *)error;
+
422 
+
423 @end
+
424 
+
425 NS_ASSUME_NONNULL_END
+
The main API in Sparkle for controlling the update mechanism.
Definition: SPUUpdater.h:33
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_settings_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_settings_8h_source.html new file mode 100644 index 0000000..2a13e77 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_settings_8h_source.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterSettings.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterSettings.h
+
+
+
1 //
+
2 // SPUUpdaterSettings.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/27/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
19 NS_ASSUME_NONNULL_BEGIN
+
20 
+
27 SU_EXPORT @interface SPUUpdaterSettings : NSObject
+
28 
+
29 - (instancetype)initWithHostBundle:(NSBundle *)hostBundle;
+
30 
+
34 @property (readonly, nonatomic) BOOL automaticallyChecksForUpdates;
+
35 
+
39 @property (readonly, nonatomic) NSTimeInterval updateCheckInterval;
+
40 
+
44 @property (readonly, nonatomic) BOOL allowsAutomaticUpdates;
+
45 
+
52 @property (readonly, nonatomic) BOOL automaticallyDownloadsUpdates;
+
53 
+
57 @property (readonly, nonatomic) BOOL sendsSystemProfile;
+
58 
+
59 @end
+
60 
+
61 NS_ASSUME_NONNULL_END
+
This class can be used for reading certain updater settings.
Definition: SPUUpdaterSettings.h:28
+
BOOL automaticallyChecksForUpdates
Indicates whether or not automatic update checks are enabled.
Definition: SPUUpdaterSettings.h:34
+
BOOL sendsSystemProfile
Indicates whether or not anonymous system profile information is sent when checking for updates.
Definition: SPUUpdaterSettings.h:57
+
BOOL allowsAutomaticUpdates
Indicates whether or not automatically downloading updates is allowed to be turned on by the user.
Definition: SPUUpdaterSettings.h:44
+
BOOL automaticallyDownloadsUpdates
Indicates whether or not automatically downloading updates is enabled by the user or developer.
Definition: SPUUpdaterSettings.h:52
+
NSTimeInterval updateCheckInterval
The regular update check interval.
Definition: SPUUpdaterSettings.h:39
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_timer_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_timer_8h_source.html new file mode 100644 index 0000000..befd956 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_updater_timer_8h_source.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Sparkle/SPUUpdaterTimer.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUpdaterTimer.h
+
+
+
1 //
+
2 // SPUUpdaterTimer.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 8/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SPUUpdaterTimerDelegate <NSObject>
+
14 
+
15 - (void)updaterTimerDidFire;
+
16 
+
17 @end
+
18 
+
19 // This notifies the updater for scheduled update checks
+
20 // This class is used so that an updater instance isn't kept alive by a scheduled update check
+
21 @interface SPUUpdaterTimer : NSObject
+
22 
+
23 - (instancetype)initWithDelegate:(id<SPUUpdaterTimerDelegate>)delegate;
+
24 
+
25 - (void)startAndFireAfterDelay:(NSTimeInterval)delay;
+
26 
+
27 - (void)invalidate;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
Definition: SPUUpdaterTimer.h:22
+
Definition: SPUUpdaterTimer.h:13
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_driver_8h_source.html new file mode 100644 index 0000000..24b4e38 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_driver_8h_source.html @@ -0,0 +1,173 @@ + + + + + + + +Sparkle: Sparkle/SPUUserDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserDriver.h
+
+
+
1 //
+
2 // SPUUserDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/14/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 #import <Sparkle/SPUUserUpdateState.h>
+
19 #import <Sparkle/SUExport.h>
+
20 
+
21 NS_ASSUME_NONNULL_BEGIN
+
22 
+ +
24 
+
33 SU_EXPORT @protocol SPUUserDriver <NSObject>
+
34 
+
44 - (void)showUpdatePermissionRequest:(SPUUpdatePermissionRequest *)request reply:(void (^)(SUUpdatePermissionResponse *))reply;
+
45 
+
53 - (void)showUserInitiatedUpdateCheckWithCancellation:(void (^)(void))cancellation;
+
54 
+
88 - (void)showUpdateFoundWithAppcastItem:(SUAppcastItem *)appcastItem state:(SPUUserUpdateState *)state reply:(void (^)(SPUUserUpdateChoice))reply;
+
89 
+
99 - (void)showUpdateReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData;
+
100 
+
110 - (void)showUpdateReleaseNotesFailedToDownloadWithError:(NSError *)error;
+
111 
+
129 - (void)showUpdateNotFoundWithError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement;
+
130 
+
142 - (void)showUpdaterError:(NSError *)error acknowledgement:(void (^)(void))acknowledgement;
+
143 
+
151 - (void)showDownloadInitiatedWithCancellation:(void (^)(void))cancellation;
+
152 
+
160 - (void)showDownloadDidReceiveExpectedContentLength:(uint64_t)expectedContentLength;
+
161 
+
168 - (void)showDownloadDidReceiveDataOfLength:(uint64_t)length;
+
169 
+ +
179 
+
189 - (void)showExtractionReceivedProgress:(double)progress;
+
190 
+
198 - (void)showInstallingUpdate;
+
199 
+
215 - (void)showReadyToInstallAndRelaunch:(void (^)(SPUUserUpdateChoice))reply;
+
216 
+ +
229 
+
244 - (void)showUpdateInstalledAndRelaunched:(BOOL)relaunched acknowledgement:(void (^)(void))acknowledgement;
+
245 
+
252 - (void)showUpdateInFocus;
+
253 
+ +
262 
+
263 /*
+
264  * Below are deprecated methods that have been replaced by better alternatives.
+
265  * The deprecated methods will be used if the alternatives have not been implemented yet.
+
266  * In the future support for using these deprecated methods may be removed however.
+
267  */
+
268 @optional
+
269 
+
270 // Clients should move to non-deprecated methods
+
271 // Deprecated methods are only (temporarily) kept around for compatibility reasons
+
272 
+
273 - (void)showUpdateNotFoundWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateNotFoundWithError:acknowledgement: instead");
+
274 
+
275 - (void)showUpdateInstallationDidFinishWithAcknowledgement:(void (^)(void))acknowledgement __deprecated_msg("Implement -showUpdateInstalledAndRelaunched:acknowledgement: instead");
+
276 
+
277 - (void)dismissUserInitiatedUpdateCheck __deprecated_msg("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.");;
+
278 
+
279 @end
+
280 
+
281 NS_ASSUME_NONNULL_END
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
Definition: SPUUserUpdateState.h:38
+
Definition: SUAppcastItem.h:36
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
void showDownloadDidStartExtractingUpdate()
Show the user that the update finished downloading and started extracting.
+
void showSendingTerminationSignal()
Show or dismiss progress while a termination signal is being sent to the application from Sparkle's i...
+
void dismissUpdateInstallation()
Dismiss the current update installation.
+
void showInstallingUpdate()
Show the user that the update is installing.
+
void showUpdateInFocus()
Show the user the current presented update or its progress in utmost focus.
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_initiated_update_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_initiated_update_driver_8h_source.html new file mode 100644 index 0000000..81a43d9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_initiated_update_driver_8h_source.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: Sparkle/SPUUserInitiatedUpdateDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserInitiatedUpdateDriver.h
+
+
+
1 //
+
2 // SPUUserInitiatedUpdateDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SPUUpdateDriver.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 @class SUHost;
+ +
16 
+ +
18 
+
19 - (instancetype)initWithHost:(SUHost *)host applicationBundle:(NSBundle *)applicationBundle sparkleBundle:(NSBundle *)sparkleBundle updater:(id)updater userDriver:(id <SPUUserDriver>)userDriver updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
Definition: SPUUserInitiatedUpdateDriver.h:17
+
Definition: SUHost.h:15
+
Definition: SPUUpdateDriver.h:20
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
The API in Sparkle for controlling the user interaction.
Definition: SPUUserDriver.h:33
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_09_private_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_09_private_8h_source.html new file mode 100644 index 0000000..3f2120d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_09_private_8h_source.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Sparkle/SPUUserUpdateState+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserUpdateState+Private.h
+
+
+
1 //
+
2 // SPUUserUpdateState+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/9/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUUserUpdateState_Private_h
+
10 #define SPUUserUpdateState_Private_h
+
11 
+
12 #import "SPUUserUpdateState.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+ +
17 
+
18 - (instancetype)initWithStage:(SPUUserUpdateStage)stage userInitiated:(BOOL)userInitiated;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif /* SPUUserUpdateState_Private_h */
+
Definition: SPUUserUpdateState+Private.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_8h_source.html new file mode 100644 index 0000000..83695ab --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_user_update_state_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SPUUserUpdateState.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUUserUpdateState.h
+
+
+
1 //
+
2 // SPUUserUpdateState.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/29/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPUUserUpdateState_h
+
10 #define SPUUserUpdateState_h
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #import <Sparkle/SUExport.h>
+
22 
+
23 NS_ASSUME_NONNULL_BEGIN
+
24 
+
25 typedef NS_ENUM(NSInteger, SPUUserUpdateChoice) {
+
26  SPUUserUpdateChoiceSkip,
+
27  SPUUserUpdateChoiceInstall,
+
28  SPUUserUpdateChoiceDismiss,
+
29 };
+
30 
+
31 typedef NS_ENUM(NSInteger, SPUUserUpdateStage) {
+
32  SPUUserUpdateStageNotDownloaded,
+
33  SPUUserUpdateStageDownloaded,
+
34  SPUUserUpdateStageInstalling
+
35 };
+
36 
+
37 SU_EXPORT @interface SPUUserUpdateState : NSObject
+
38 
+
39 - (instancetype)init NS_UNAVAILABLE;
+
40 
+
41 @property (nonatomic, readonly) SPUUserUpdateStage stage;
+
42 @property (nonatomic, readonly) BOOL userInitiated;
+
43 
+
44 @end
+
45 
+
46 NS_ASSUME_NONNULL_END
+
47 
+
48 #endif /* SPUUserUpdateState_h */
+
Definition: SPUUserUpdateState.h:38
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_x_p_c_service_info_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_x_p_c_service_info_8h_source.html new file mode 100644 index 0000000..93e252e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_p_u_x_p_c_service_info_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SPUXPCServiceInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SPUXPCServiceInfo.h
+
+
+
1 //
+
2 // SPUXPCServiceInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 BOOL SPUXPCServiceExists(NSString *bundleName);
+
14 
+
15 BOOL SPUXPCValidateServiceIfBundleExists(NSString *bundleName, NSBundle *sparkleBundle, NSError * __autoreleasing *error);
+
16 
+
17 NSBundle * _Nullable SPUXPCServiceBundle(NSString *bundleName);
+
18 
+
19 NS_ASSUME_NONNULL_END
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_09_private_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_09_private_8h_source.html new file mode 100644 index 0000000..4817919 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_09_private_8h_source.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: Sparkle/SUAppcast+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcast+Private.h
+
+
+
1 //
+
2 // SUAppcast+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/30/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 
+
18 NS_ASSUME_NONNULL_BEGIN
+
19 
+ +
21 
+ +
23 
+
24 - (nullable instancetype)initWithXMLData:(NSData *)xmlData relativeToURL:(NSURL * _Nullable)relativeURL stateResolver:(SPUAppcastItemStateResolver *)stateResolver error:(NSError * __autoreleasing *)error;
+
25 
+
26 - (SUAppcast *)copyByFilteringItems:(BOOL (^)(SUAppcastItem *))filterBlock;
+
27 
+
28 @end
+
29 
+
30 NS_ASSUME_NONNULL_END
+
Definition: SUAppcast+Private.h:22
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_8h_source.html new file mode 100644 index 0000000..9f2238c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_8h_source.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: Sparkle/SUAppcast.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcast.h
+
+
+
1 //
+
2 // SUAppcast.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAPPCAST_H
+
10 #define SUAPPCAST_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 #import <Sparkle/SUExport.h>
+
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 @class SUAppcastItem;
+
25 SU_EXPORT @interface SUAppcast : NSObject
+
26 
+
27 @property (readonly, copy) NSArray<SUAppcastItem *> *items;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
32 
+
33 #endif
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_driver_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_driver_8h_source.html new file mode 100644 index 0000000..d269f85 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_driver_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastDriver.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastDriver.h
+
+
+
1 //
+
2 // SUAppcastDriver.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+ +
14 @protocol SPUUpdaterDelegate;
+
15 
+
16 @protocol SUAppcastDriverDelegate <NSObject>
+
17 
+
18 - (void)didFailToFetchAppcastWithError:(NSError *)error;
+
19 - (void)didFinishLoadingAppcast:(SUAppcast *)appcast;
+
20 - (void)didFindValidUpdateWithAppcastItem:(SUAppcastItem *)appcastItem secondaryAppcastItem:(SUAppcastItem * _Nullable)secondaryAppcastItem;
+
21 - (void)didNotFindUpdateWithLatestAppcastItem:(nullable SUAppcastItem *)latestAppcastItem hostToLatestAppcastItemComparisonResult:(NSComparisonResult)hostToLatestAppcastItemComparisonResult background:(BOOL)background;
+
22 
+
23 @end
+
24 
+
25 @interface SUAppcastDriver : NSObject
+
26 
+
27 - (instancetype)initWithHost:(SUHost *)host updater:(id)updater updaterDelegate:(nullable id <SPUUpdaterDelegate>)updaterDelegate delegate:(nullable id <SUAppcastDriverDelegate>)delegate;
+
28 
+
29 - (void)loadAppcastFromURL:(NSURL *)appcastURL userAgent:(NSString *)userAgent httpHeaders:(NSDictionary * _Nullable)httpHeaders inBackground:(BOOL)background;
+
30 
+
31 - (void)cleanup:(void (^)(void))completionHandler;
+
32 
+
33 @end
+
34 
+
35 NS_ASSUME_NONNULL_END
+
Definition: SUAppcastDriver.h:26
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Provides methods to control the behavior of an SPUUpdater object.
Definition: SPUUpdaterDelegate.h:69
+
Definition: SUAppcastDriver.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_09_private_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_09_private_8h_source.html new file mode 100644 index 0000000..155b2d0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_09_private_8h_source.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastItem+Private.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastItem+Private.h
+
+
+
1 //
+
2 // SUAppcastItem+Private.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/30/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAppcastItem_Private_h
+
10 #define SUAppcastItem_Private_h
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 NS_ASSUME_NONNULL_BEGIN
+
22 
+
23 // Available in SPUAppcastItemStateResolver.h (a private exposed header)
+ +
25 
+
26 @interface SUAppcastItem (Private) <NSSecureCoding>
+
27 
+
34 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL stateResolver:(SPUAppcastItemStateResolver *)stateResolver failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error;
+
35 
+
36 @end
+
37 
+
38 NS_ASSUME_NONNULL_END
+
39 
+
40 #endif /* SUAppcastItem_Private_h */
+
Definition: SUAppcastItem+Private.h:26
+
Private exposed class used to resolve Appcast Item properties that rely on external factors such as a...
Definition: SPUAppcastItemStateResolver.h:30
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_8h_source.html new file mode 100644 index 0000000..c31ce5d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_appcast_item_8h_source.html @@ -0,0 +1,166 @@ + + + + + + + +Sparkle: Sparkle/SUAppcastItem.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUAppcastItem.h
+
+
+
1 //
+
2 // SUAppcastItem.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUAPPCASTITEM_H
+
10 #define SUAPPCASTITEM_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TESTS
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
31 @class SUSignatures;
+
32 @class SPUAppcastItemState;
+
33 
+
34 NS_ASSUME_NONNULL_BEGIN
+
35 
+
36 SU_EXPORT @interface SUAppcastItem : NSObject<NSSecureCoding>
+
37 @property (copy, readonly, nullable) NSString *title;
+
38 @property (copy, readonly, nullable) NSString *dateString;
+
39 @property (copy, readonly, nullable) NSDate *date;
+
40 @property (copy, readonly, nullable) NSString *itemDescription;
+
41 @property (strong, readonly, nullable) NSURL *releaseNotesURL;
+
42 @property (strong, readonly, nullable) SUSignatures *signatures;
+
43 @property (copy, readonly, nullable) NSString *minimumSystemVersion;
+
44 @property (copy, readonly, nullable) NSString *maximumSystemVersion;
+
45 @property (strong, readonly, nullable) NSURL *fileURL;
+
46 @property (nonatomic, readonly) uint64_t contentLength;
+
47 @property (copy, readonly) NSString *versionString;
+
48 @property (copy, readonly, nullable) NSString *osString;
+
49 @property (copy, readonly, nullable) NSString *displayVersionString;
+
50 @property (copy, readonly, nullable) NSDictionary *deltaUpdates;
+
51 @property (strong, readonly, nullable) NSURL *infoURL;
+
52 @property (copy, readonly, nullable) NSNumber* phasedRolloutInterval;
+
53 @property (nonatomic, copy, readonly) NSString *installationType;
+
54 @property (copy, readonly, nullable) NSString *minimumAutoupdateVersion;
+
55 @property (nonatomic, readonly, nullable) NSString *channel;
+
56 
+
57 @property (getter=isDeltaUpdate, readonly) BOOL deltaUpdate;
+
58 @property (getter=isCriticalUpdate, readonly) BOOL criticalUpdate;
+
59 @property (getter=isMajorUpgrade, readonly) BOOL majorUpgrade;
+
60 @property (getter=isMacOsUpdate, readonly) BOOL macOsUpdate;
+
61 @property (getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate;
+
62 
+
63 @property (nonatomic, readonly) BOOL minimumOperatingSystemVersionIsOK;
+
64 @property (nonatomic, readonly) BOOL maximumOperatingSystemVersionIsOK;
+
65 
+
66 // Returns the dictionary representing the appcast item; this might be useful later for extensions.
+
67 @property (readonly, copy) NSDictionary *propertiesDictionary;
+
68 
+
69 - (instancetype)init NS_UNAVAILABLE;
+
70 
+
71 + (instancetype)emptyAppcastItem;
+
72 
+
73 // Deprecated initializers
+
74 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
75 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
76 - (nullable instancetype)initWithDictionary:(NSDictionary *)dict relativeToURL:(NSURL * _Nullable)appcastURL failureReason:(NSString * _Nullable __autoreleasing *_Nullable)error __deprecated_msg("Properties that depend on the system or application version are not supported when used with this initializer. The designated initializer is available in SUAppcastItem+Private.h. Please first explore other APIs or contact us to describe your use case.");
+
77 
+
78 @end
+
79 
+
80 NS_ASSUME_NONNULL_END
+
81 
+
82 #endif
+
Definition: SPUAppcastItemState.h:15
+
Definition: SUAppcastItem.h:36
+
Definition: SUSignatures.h:31
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_application_info_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_application_info_8h_source.html new file mode 100644 index 0000000..38fe751 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_application_info_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SUApplicationInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUApplicationInfo.h
+
+
+
1 //
+
2 // SUApplicationInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @class SUHost, NSImage, NSApplication;
+
16 
+
17 @interface SUApplicationInfo : NSObject
+
18 
+
19 + (BOOL)isBackgroundApplication:(NSApplication *)application;
+
20 
+
21 + (NSImage *)bestIconForHost:(SUHost *)host;
+
22 
+
23 @end
+
24 
+
25 NS_ASSUME_NONNULL_END
+
26 
+
27 #endif
+
Definition: SUApplicationInfo.h:18
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_bundle_icon_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_bundle_icon_8h_source.html new file mode 100644 index 0000000..bae2c59 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_bundle_icon_8h_source.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: Sparkle/SUBundleIcon.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUBundleIcon.h
+
+
+
1 //
+
2 // SUBundleIcon.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/24/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @interface SUBundleIcon : NSObject
+
16 
+
17 + (NSURL * _Nullable)iconURLForHost:(SUHost *)host;
+
18 
+
19 @end
+
20 
+
21 NS_ASSUME_NONNULL_END
+
Definition: SUBundleIcon.h:16
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_constants_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_constants_8h_source.html new file mode 100644 index 0000000..b7b58fe --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_constants_8h_source.html @@ -0,0 +1,185 @@ + + + + + + + +Sparkle: Sparkle/SUConstants.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUConstants.h
+
+
+
1 //
+
2 // SUConstants.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/16/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 
+
10 #ifndef SUCONSTANTS_H
+
11 #define SUCONSTANTS_H
+
12 
+
13 #import <Foundation/Foundation.h>
+
14 
+
15 // -----------------------------------------------------------------------------
+
16 // Misc:
+
17 // -----------------------------------------------------------------------------
+
18 
+
19 extern const NSTimeInterval SUDefaultUpdatePermissionPromptInterval;
+
20 extern const NSTimeInterval SUMinimumUpdateCheckInterval;
+
21 extern const NSTimeInterval SUDefaultUpdateCheckInterval;
+
22 extern const uint64_t SULeewayUpdateCheckInterval;
+
23 extern const NSTimeInterval SUImpatientUpdateCheckInterval;
+
24 
+
25 extern NSString *const SUBundleIdentifier;
+
26 
+
27 extern NSString *const SUAppcastAttributeValueMacOS;
+
28 
+
29 // -----------------------------------------------------------------------------
+
30 // Notifications:
+
31 // -----------------------------------------------------------------------------
+
32 
+
33 extern NSString *const SUTechnicalErrorInformationKey;
+
34 
+
35 // -----------------------------------------------------------------------------
+
36 // PList keys::
+
37 // -----------------------------------------------------------------------------
+
38 
+
39 extern NSString *const SUFeedURLKey;
+
40 extern NSString *const SUHasLaunchedBeforeKey;
+
41 extern NSString *const SURelaunchHostBundleKey;
+
42 extern NSString *const SUShowReleaseNotesKey;
+
43 extern NSString *const SUSkippedMinorVersionKey;
+
44 extern NSString *const SUSkippedMajorVersionKey;
+
45 extern NSString *const SUScheduledCheckIntervalKey;
+
46 extern NSString *const SULastCheckTimeKey;
+
47 extern NSString *const SUExpectsDSASignatureKey;
+
48 extern NSString *const SUExpectsEDSignatureKey;
+
49 extern NSString *const SUPublicDSAKeyKey;
+
50 extern NSString *const SUPublicDSAKeyFileKey;
+
51 extern NSString *const SUPublicEDKeyKey;
+
52 extern NSString *const SUAutomaticallyUpdateKey;
+
53 extern NSString *const SUAllowsAutomaticUpdatesKey;
+
54 extern NSString *const SUEnableAutomaticChecksKey;
+
55 extern NSString *const SUEnableSystemProfilingKey;
+
56 extern NSString *const SUSendProfileInfoKey;
+
57 extern NSString *const SUUpdateGroupIdentifierKey;
+
58 extern NSString *const SULastProfileSubmitDateKey;
+
59 extern NSString *const SUPromptUserOnFirstLaunchKey;
+
60 extern NSString *const SUDefaultsDomainKey;
+
61 extern NSString *const SUEnableJavaScriptKey;
+
62 extern NSString *const SUFixedHTMLDisplaySizeKey __attribute__((deprecated("This key is obsolete and has no effect.")));
+
63 extern NSString *const SUAppendVersionNumberKey __attribute__((deprecated("This key is obsolete. See SPARKLE_APPEND_VERSION_NUMBER.")));
+
64 extern NSString *const SUEnableAutomatedDowngradesKey __attribute__((deprecated("This key is obsolete. See SPARKLE_AUTOMATED_DOWNGRADES.")));
+
65 extern NSString *const SUNormalizeInstalledApplicationNameKey __attribute__((deprecated("This key is obsolete. SPARKLE_NORMALIZE_INSTALLED_APPLICATION_NAME.")));
+
66 extern NSString *const SURelaunchToolNameKey __attribute__((deprecated("This key is obsolete. SPARKLE_RELAUNCH_TOOL_NAME.")));
+
67 
+
68 // -----------------------------------------------------------------------------
+
69 // Appcast keys::
+
70 // -----------------------------------------------------------------------------
+
71 
+
72 extern NSString *const SUAppcastAttributeDeltaFrom;
+
73 extern NSString *const SUAppcastAttributeDSASignature;
+
74 extern NSString *const SUAppcastAttributeEDSignature;
+
75 extern NSString *const SUAppcastAttributeShortVersionString;
+
76 extern NSString *const SUAppcastAttributeVersion;
+
77 extern NSString *const SUAppcastAttributeOsType;
+
78 extern NSString *const SUAppcastAttributeInstallationType;
+
79 
+
80 extern NSString *const SUAppcastElementVersion;
+
81 extern NSString *const SUAppcastElementShortVersionString;
+
82 extern NSString *const SUAppcastElementCriticalUpdate;
+
83 extern NSString *const SUAppcastElementDeltas;
+
84 extern NSString *const SUAppcastElementMinimumAutoupdateVersion;
+
85 extern NSString *const SUAppcastElementMinimumSystemVersion;
+
86 extern NSString *const SUAppcastElementMaximumSystemVersion;
+
87 extern NSString *const SUAppcastElementReleaseNotesLink;
+
88 extern NSString *const SUAppcastElementTags;
+
89 extern NSString *const SUAppcastElementPhasedRolloutInterval;
+
90 extern NSString *const SUAppcastElementInformationalUpdate;
+
91 extern NSString *const SUAppcastElementChannel;
+
92 
+
93 extern NSString *const SURSSAttributeURL;
+
94 extern NSString *const SURSSAttributeLength;
+
95 
+
96 extern NSString *const SURSSElementDescription;
+
97 extern NSString *const SURSSElementEnclosure;
+
98 extern NSString *const SURSSElementLink;
+
99 extern NSString *const SURSSElementPubDate;
+
100 extern NSString *const SURSSElementTitle;
+
101 
+
102 extern NSString *const SUXMLLanguage;
+
103 
+
104 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_errors_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_errors_8h_source.html new file mode 100644 index 0000000..c957dab --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_errors_8h_source.html @@ -0,0 +1,171 @@ + + + + + + + +Sparkle: Sparkle/SUErrors.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUErrors.h
+
+
+
1 //
+
2 // SUErrors.h
+
3 // Sparkle
+
4 //
+
5 // Created by C.W. Betts on 10/13/14.
+
6 // Copyright (c) 2014 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUERRORS_H
+
10 #define SUERRORS_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #if defined(BUILDING_SPARKLE_TOOL) || defined(BUILDING_SPARKLE_TESTS)
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
34 SU_EXPORT extern NSString *const SUSparkleErrorDomain;
+
35 
+
36 typedef NS_ENUM(OSStatus, SUError) {
+
37  // Configuration phase errors
+
38  SUNoPublicDSAFoundError = 0001,
+
39  SUInsufficientSigningError = 0002,
+
40  SUInsecureFeedURLError = 0003,
+
41  SUInvalidFeedURLError = 0004,
+
42  SUInvalidUpdaterError = 0005,
+
43  SUInvalidHostBundleIdentifierError = 0006,
+
44  SUInvalidHostVersionError = 0007,
+
45 
+
46  // Appcast phase errors.
+
47  SUAppcastParseError = 1000,
+
48  SUNoUpdateError = 1001,
+
49  SUAppcastError = 1002,
+
50  SURunningFromDiskImageError = 1003,
+
51  SUResumeAppcastError = 1004,
+
52  SURunningTranslocated = 1005,
+
53  SUWebKitTerminationError = 1006,
+
54 
+
55  // Download phase errors.
+
56  SUTemporaryDirectoryError = 2000,
+
57  SUDownloadError = 2001,
+
58 
+
59  // Extraction phase errors.
+
60  SUUnarchivingError = 3000,
+
61  SUSignatureError = 3001,
+
62  SUValidationError = 3002,
+
63 
+
64  // Installation phase errors.
+
65  SUFileCopyFailure = 4000,
+
66  SUAuthenticationFailure = 4001,
+
67  SUMissingUpdateError = 4002,
+
68  SUMissingInstallerToolError = 4003,
+
69  SURelaunchError = 4004,
+
70  SUInstallationError = 4005,
+
71  SUDowngradeError = 4006,
+
72  SUInstallationCanceledError = 4007,
+
73  SUInstallationAuthorizeLaterError = 4008,
+
74  SUNotAllowedInteractionError = 4009,
+
75  SUAgentInvalidationError = 4010,
+
76 
+
77  // API misuse errors.
+
78  SUIncorrectAPIUsageError = 5000
+
79 };
+
80 
+
81 typedef NS_ENUM(OSStatus, SPUNoUpdateFoundReason) {
+
82  SPUNoUpdateFoundReasonUnknown,
+
83  SPUNoUpdateFoundReasonOnLatestVersion,
+
84  SPUNoUpdateFoundReasonOnNewerThanLatestVersion,
+
85  SPUNoUpdateFoundReasonSystemIsTooOld,
+
86  SPUNoUpdateFoundReasonSystemIsTooNew
+
87 };
+
88 
+
89 SU_EXPORT extern NSString *const SPUNoUpdateFoundReasonKey;
+
90 SU_EXPORT extern NSString *const SPULatestAppcastItemFoundKey;
+
91 SU_EXPORT extern NSString *const SPUNoUpdateFoundUserInitiatedKey;
+
92 
+
93 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_export_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_export_8h_source.html new file mode 100644 index 0000000..df93771 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_export_8h_source.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Sparkle/SUExport.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUExport.h
+
+
+
1 //
+
2 // SUExport.h
+
3 // Sparkle
+
4 //
+
5 // Created by Jake Petroules on 2014-08-23.
+
6 // Copyright (c) 2014 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUEXPORT_H
+
10 #define SUEXPORT_H
+
11 
+
12 #ifdef BUILDING_SPARKLE
+
13 #define SU_EXPORT __attribute__((visibility("default")))
+
14 #else
+
15 #define SU_EXPORT
+
16 #endif
+
17 
+
18 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_file_manager_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_file_manager_8h_source.html new file mode 100644 index 0000000..60a6557 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_file_manager_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: Sparkle/SUFileManager.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUFileManager.h
+
+
+
1 //
+
2 // SUFileManager.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/18/15.
+
6 // Copyright (c) 2015 zgcoder. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SUExport.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
19 @interface SUFileManager : NSObject
+
20 
+
26 - (instancetype)init;
+
27 
+
38 - (NSURL * _Nullable)makeTemporaryDirectoryWithPreferredName:(NSString *)preferredName appropriateForDirectoryURL:(NSURL *)appropriateURL error:(NSError * __autoreleasing *)error;
+
39 
+
48 - (BOOL)makeDirectoryAtURL:(NSURL *)targetURL error:(NSError **)error;
+
49 
+
60 - (BOOL)moveItemAtURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL error:(NSError **)error;
+
61 
+
73 - (BOOL)replaceItemAtURL:(NSURL *)originalItemURL withItemAtURL:(NSURL *)newItemURL error:(NSError **)error __OSX_AVAILABLE(10.13);
+
74 
+
84 - (BOOL)copyItemAtURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL error:(NSError **)error;
+
85 
+
94 - (BOOL)removeItemAtURL:(NSURL *)url error:(NSError **)error;
+
95 
+
110 - (BOOL)changeOwnerAndGroupOfItemAtRootURL:(NSURL *)targetURL toMatchURL:(NSURL *)matchURL error:(NSError **)error;
+
111 
+
123 - (BOOL)updateModificationAndAccessTimeOfItemAtURL:(NSURL *)targetURL error:(NSError **)error;
+
124 
+
137 - (BOOL)updateAccessTimeOfItemAtRootURL:(NSURL *)targetURL error:(NSError * __autoreleasing *)error;
+
138 
+
155 - (BOOL)releaseItemFromQuarantineAtRootURL:(NSURL *)rootURL error:(NSError **)error;
+
156 
+
157 @end
+
158 
+
159 NS_ASSUME_NONNULL_END
+
Definition: SUFileManager.h:20
+
instancetype init()
Definition: SUFileManager.m:56
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_host_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_host_8h_source.html new file mode 100644 index 0000000..573ca1b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_host_8h_source.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: Sparkle/SUHost.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUHost.h
+
+
+
1 //
+
2 // SUHost.h
+
3 // Sparkle
+
4 //
+
5 // Copyright 2008 Andy Matuschak. All rights reserved.
+
6 //
+
7 
+
8 #import <Foundation/Foundation.h>
+
9 
+
10 NS_ASSUME_NONNULL_BEGIN
+
11 
+
12 @class SUPublicKeys;
+
13 
+
14 @interface SUHost : NSObject
+
15 
+
16 @property (strong, readonly) NSBundle *bundle;
+
17 
+
18 - (instancetype)initWithBundle:(NSBundle *)aBundle;
+
19 
+
20 @property (readonly, copy) NSString *bundlePath;
+
21 @property (readonly, copy) NSString *name;
+
22 @property (readonly, copy) NSString *version;
+
23 @property (readonly, nonatomic) BOOL validVersion;
+
24 @property (readonly, copy) NSString *displayVersion;
+
25 @property (readonly) SUPublicKeys *publicKeys;
+
26 
+
27 @property (getter=isRunningOnReadOnlyVolume, readonly) BOOL runningOnReadOnlyVolume;
+
28 @property (getter=isRunningTranslocated, readonly) BOOL runningTranslocated;
+
29 @property (readonly, nonatomic, copy, nullable) NSString *publicDSAKeyFileKey;
+
30 
+
31 - (nullable id)objectForInfoDictionaryKey:(NSString *)key;
+
32 - (BOOL)boolForInfoDictionaryKey:(NSString *)key;
+
33 - (nullable id)objectForUserDefaultsKey:(NSString *)defaultName;
+
34 - (void)setObject:(nullable id)value forUserDefaultsKey:(NSString *)defaultName;
+
35 - (BOOL)boolForUserDefaultsKey:(NSString *)defaultName;
+
36 - (void)setBool:(BOOL)value forUserDefaultsKey:(NSString *)defaultName;
+
37 - (nullable id)objectForKey:(NSString *)key;
+
38 - (BOOL)boolForKey:(NSString *)key;
+
39 @end
+
40 
+
41 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUSignatures.h:44
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_agent_initiation_protocol_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_agent_initiation_protocol_8h_source.html new file mode 100644 index 0000000..6e894f8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_agent_initiation_protocol_8h_source.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/SUInstallerAgentInitiationProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUInstallerAgentInitiationProtocol.h
+
+
+
1 //
+
2 // SUInstallerAgentInitiationProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 7/17/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+ +
12 
+
13 - (void)connectionDidInitiateWithReply:(void (^)(void))acknowledgement;
+
14 
+
15 - (void)connectionWillInvalidateWithError:(NSError *)error;
+
16 
+
17 @end
+
Definition: SUInstallerAgentInitiationProtocol.h:11
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_protocol_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_protocol_8h_source.html new file mode 100644 index 0000000..03f78b9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_installer_protocol_8h_source.html @@ -0,0 +1,118 @@ + + + + + + + +Sparkle: Sparkle/SUInstallerProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUInstallerProtocol.h
+
+
+
1 //
+
2 // SUInstallerProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/26/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @protocol SUInstallerProtocol <NSObject>
+
14 
+
15 // Any installation work can be done prior to user application being terminated and relaunched
+
16 // Currently this is invoked after the user application is terminated, but this may change in the future.
+
17 // No UI should occur during this stage (i.e, do not show package installer apps, etc..)
+
18 // Should be able to be called from non-main thread
+
19 - (BOOL)performInitialInstallation:(NSError **)error;
+
20 
+
21 // Any installation work after the user application has been terminated. This is where the final installation work can be done.
+
22 // After this stage is done, the user application may be relaunched.
+
23 // Should be able to be called from non-main thread
+
24 - (BOOL)performFinalInstallationProgressBlock:(nullable void(^)(double))cb error:(NSError **)error;
+
25 
+
26 // Indicates whether or not this installer can install the update silently in the background, without hindering the user
+
27 // Should be thread safe
+
28 - (BOOL)canInstallSilently;
+
29 
+
30 // The destination and installation path of the bundle being updated
+
31 // Should be thread safe
+
32 - (NSString *)installationPath;
+
33 
+
34 @end
+
35 
+
36 NS_ASSUME_NONNULL_END
+
Definition: SUInstallerProtocol.h:13
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_legacy_web_view_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_legacy_web_view_8h_source.html new file mode 100644 index 0000000..a607621 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_legacy_web_view_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SULegacyWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULegacyWebView.h
+
+
+
1 //
+
2 // SULegacyWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 #import "SUWebView.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SULegacyWebView : NSObject <SUWebView>
+
17 
+
18 - (instancetype)initWithColorStyleSheetLocation:(NSURL *)colorStyleSheetLocation fontFamily:(NSString *)fontFamily fontPointSize:(int)fontPointSize javaScriptEnabled:(BOOL)javaScriptEnabled;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_localizations_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_localizations_8h_source.html new file mode 100644 index 0000000..a168384 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_localizations_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/SULocalizations.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULocalizations.h
+
+
+
1 //
+
2 // SULocalizations.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/28/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULocalizations_h
+
10 #define SULocalizations_h
+
11 
+
12 #import "SUConstants.h"
+
13 
+
14 #define SULocalizedString(key, comment) NSLocalizedStringFromTableInBundle(key, @"Sparkle", (NSBundle * _Nonnull)([NSBundle bundleWithIdentifier:SUBundleIdentifier] ? [NSBundle bundleWithIdentifier:SUBundleIdentifier] : [NSBundle mainBundle]), comment)
+
15 
+
16 #endif /* SULocalizations_h */
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_09_n_s_error_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_09_n_s_error_8h_source.html new file mode 100644 index 0000000..70b735d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_09_n_s_error_8h_source.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: Sparkle/SULog+NSError.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULog+NSError.h
+
+
+
1 //
+
2 // SULog+NSError.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/19/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULog_NSError_h
+
10 #define SULog_NSError_h
+
11 
+
12 #import <Foundation/Foundation.h>
+
13 
+
14 void SULogError(NSError *error);
+
15 
+
16 #endif /* SULog_NSError_h */
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_8h_source.html new file mode 100644 index 0000000..af48715 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_log_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SULog.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SULog.h
+
+
+
1 //
+
2 // SULog.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 5/18/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SULOG_H
+
10 #define SULOG_H
+
11 
+
12 #include <Foundation/Foundation.h>
+
13 
+
14 typedef NS_ENUM(uint8_t, SULogLevel) {
+
15  // This level is for information that *might* result a failure
+
16  // For now until other levels are added, this may serve as a level for other information as well
+
17  SULogLevelDefault,
+
18  // This level is for errors that occurred
+
19  SULogLevelError
+
20 };
+
21 
+
22 // Logging utlity function that is thread-safe
+
23 // On 10.12 or later this uses os_log
+
24 // Otherwise on older systems this uses ASL
+
25 // For debugging command line tools, you may have to use Console.app or log(1) to view log messages
+
26 // Try to keep log messages as compact/short as possible
+
27 void SULog(SULogLevel level, NSString *format, ...) NS_FORMAT_FUNCTION(2, 3);
+
28 
+
29 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_normalization_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_normalization_8h_source.html new file mode 100644 index 0000000..4975425 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_normalization_8h_source.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Sparkle/SUNormalization.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUNormalization.h
+
+
+
1 //
+
2 // SUNormalization.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/26/21.
+
6 // Copyright © 2021 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "SUHost.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+
14 NSString *SUNormalizedInstallationPath(SUHost *host);
+
15 
+
16 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_operating_system_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_operating_system_8h_source.html new file mode 100644 index 0000000..ad826a6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_operating_system_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUOperatingSystem.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUOperatingSystem.h
+
+
+
1 //
+
2 // SUOperatingSystem.h
+
3 // Sparkle
+
4 //
+
5 // Copyright © 2015 Sparkle Project. All rights reserved.
+
6 //
+
7 
+
8 #import <Foundation/Foundation.h>
+
9 
+
10 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 101000
+
11 typedef struct {
+
12  NSInteger majorVersion;
+
13  NSInteger minorVersion;
+
14  NSInteger patchVersion;
+ +
16 #endif
+
17 
+
18 @interface SUOperatingSystem : NSObject
+
19 
+
20 + (NSOperatingSystemVersion)operatingSystemVersion;
+
21 + (BOOL)isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion)version;
+
22 + (NSString *)systemVersionString;
+
23 
+
24 @end
+
Definition: SUOperatingSystem.h:19
+
Definition: SUOperatingSystem.h:11
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_phased_update_group_info_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_phased_update_group_info_8h_source.html new file mode 100644 index 0000000..15ddc0b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_phased_update_group_info_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUPhasedUpdateGroupInfo.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUPhasedUpdateGroupInfo.h
+
+
+
1 //
+
2 // SUPhasedUpdateGroupInfo.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 01/24/21.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @class SUHost;
+
14 
+
15 @interface SUPhasedUpdateGroupInfo : NSObject
+
16 
+
17 + (NSUInteger)updateGroupForHost:(SUHost*)host;
+
18 + (NSNumber*)setNewUpdateGroupIdentifierForHost:(SUHost*)host;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUPhasedUpdateGroupInfo.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_signatures_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_signatures_8h_source.html new file mode 100644 index 0000000..f9c6533 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_signatures_8h_source.html @@ -0,0 +1,140 @@ + + + + + + + +Sparkle: Sparkle/SUSignatures.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUSignatures.h
+
+
+
1 //
+
2 // SUSignatures.h
+
3 // Sparkle
+
4 //
+
5 // Created by Kornel on 15/09/2018.
+
6 // Copyright © 2018 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 1090
+ +
13 - (id)initWithBase64Encoding:(NSString *)base64String;
+
14 @end
+
15 #endif
+
16 
+
17 NS_ASSUME_NONNULL_BEGIN
+
18 
+
19 typedef NS_ENUM(uint8_t, SUSigningInputStatus) {
+
21  SUSigningInputStatusAbsent = 0,
+
22 
+
24  SUSigningInputStatusInvalid,
+
25 
+
27  SUSigningInputStatusPresent,
+
28  SUSigningInputStatusLastValidCase = SUSigningInputStatusPresent
+
29 };
+
30 
+
31 @interface SUSignatures : NSObject <NSSecureCoding> {
+
32  unsigned char ed25519_signature[64];
+
33 }
+
34 @property (strong, readonly, nullable) NSData *dsaSignature;
+
35 @property (readonly) SUSigningInputStatus dsaSignatureStatus;
+
36 
+
37 @property (readonly, nullable, nonatomic) const unsigned char *ed25519Signature;
+
38 @property (readonly) SUSigningInputStatus ed25519SignatureStatus;
+
39 
+
40 - (instancetype)initWithDsa:(NSString * _Nullable)dsa ed:(NSString * _Nullable)ed;
+
41 @end
+
42 
+
43 
+
44 @interface SUPublicKeys : NSObject {
+
45  unsigned char ed25519_public_key[32];
+
46 }
+
47 @property (strong, readonly, nullable) NSString *dsaPubKey;
+
48 @property (readonly) SUSigningInputStatus dsaPubKeyStatus;
+
49 
+
50 @property (readonly, nullable, nonatomic) const unsigned char *ed25519PubKey;
+
51 @property (readonly) SUSigningInputStatus ed25519PubKeyStatus;
+
52 
+
54 @property (readonly) BOOL hasAnyKeys;
+
55 
+
56 - (instancetype)initWithDsa:(NSString * _Nullable)dsa ed:(NSString * _Nullable)ed;
+
57 
+
58 @end
+
59 
+
60 NS_ASSUME_NONNULL_END
+
Definition: SUSignatures.h:12
+
Definition: SUSignatures.h:44
+
Definition: SUSignatures.h:31
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_standard_version_comparator_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_standard_version_comparator_8h_source.html new file mode 100644 index 0000000..8a78815 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_standard_version_comparator_8h_source.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: Sparkle/SUStandardVersionComparator.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUStandardVersionComparator.h
+
+
+
1 //
+
2 // SUStandardVersionComparator.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/21/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUSTANDARDVERSIONCOMPARATOR_H
+
10 #define SUSTANDARDVERSIONCOMPARATOR_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TOOL
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #import "SUVersionComparisonProtocol.h"
+
27 #pragma clang diagnostic pop
+
28 #else
+
29 #import <Sparkle/SUExport.h>
+
30 #import <Sparkle/SUVersionComparisonProtocol.h>
+
31 #endif
+
32 
+
33 NS_ASSUME_NONNULL_BEGIN
+
34 
+
42 SU_EXPORT @interface SUStandardVersionComparator : NSObject <SUVersionComparison>
+
43 
+
47 - (instancetype)init;
+
48 
+ +
55 
+
61 - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB;
+
62 @end
+
63 
+
64 NS_ASSUME_NONNULL_END
+
65 #endif
+
Sparkle's default version comparator.
Definition: SUStandardVersionComparator.h:42
+
SUStandardVersionComparator * defaultComparator()
Returns a singleton instance of the comparator.
Definition: SUStandardVersionComparator.m:22
+
instancetype init()
Initializes a new instance of the standard version comparator.
Definition: SUStandardVersionComparator.m:17
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_status_controller_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_status_controller_8h_source.html new file mode 100644 index 0000000..01f96e8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_status_controller_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: Sparkle/SUStatusController.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUStatusController.h
+
+
+
1 //
+
2 // SUStatusController.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/14/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #ifndef SUSTATUSCONTROLLER_H
+
12 #define SUSTATUSCONTROLLER_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 
+
16 @class SUHost;
+
17 @interface SUStatusController : NSWindowController
+
18 @property (weak) IBOutlet NSButton *actionButton;
+
19 @property (weak) IBOutlet NSProgressIndicator *progressBar;
+
20 @property (weak) IBOutlet NSTextField *statusTextField;
+
21 
+
22 @property (copy) NSString *statusText;
+
23 @property double progressValue;
+
24 @property (nonatomic) double maxProgressValue;
+
25 @property (getter=isButtonEnabled) BOOL buttonEnabled;
+
26 
+
27 - (instancetype)initWithHost:(SUHost *)host;
+
28 
+
29 // Pass 0 for the max progress value to get an indeterminate progress bar.
+
30 // Pass nil for the status text to not show it.
+
31 - (void)beginActionWithTitle:(NSString *)title maxProgressValue:(double)maxProgressValue statusText:(NSString *)statusText;
+
32 
+
33 // If isDefault is YES, the button's key equivalent will be \r.
+
34 - (void)setButtonTitle:(NSString *)buttonTitle target:(id)target action:(SEL)action isDefault:(BOOL)isDefault;
+
35 
+
36 @end
+
37 
+
38 #endif
+
39 
+
40 #endif
+
Definition: SUHost.h:15
+
Definition: SUStatusController.h:18
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_system_profiler_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_system_profiler_8h_source.html new file mode 100644 index 0000000..c3969b5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_system_profiler_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUSystemProfiler.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUSystemProfiler.h
+
+
+
1 //
+
2 // SUSystemProfiler.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/22/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUSYSTEMPROFILER_H
+
10 #define SUSYSTEMPROFILER_H
+
11 
+
12 #import <Foundation/Foundation.h>
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @class SUHost;
+
17 @interface SUSystemProfiler : NSObject
+
18 
+
19 + (NSArray<NSDictionary<NSString *, NSString *> *> *)systemProfileArrayForHost:(SUHost *)host;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
24 #endif
+
Definition: SUHost.h:15
+
Definition: SUSystemProfiler.h:18
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_button_group_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_button_group_8h_source.html new file mode 100644 index 0000000..9ef0b84 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_button_group_8h_source.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: Sparkle/SUTouchBarButtonGroup.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUTouchBarButtonGroup.h
+
+
+
1 //
+
2 // SUTouchBarButtonGroup.h
+
3 // Sparkle
+
4 //
+
5 // Created by Yuxin Wang on 05/01/2017.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS || !BUILDING_SPARKLE
+
10 
+
11 #import <Cocoa/Cocoa.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 @interface SUTouchBarButtonGroup : NSViewController
+
16 
+
17 @property (nonatomic, readonly, copy) NSArray<NSButton *> *buttons;
+
18 
+
19 - (instancetype)initByReferencingButtons:(NSArray<NSButton *> *)buttons;
+
20 
+
21 @end
+
22 
+
23 NS_ASSUME_NONNULL_END
+
24 
+
25 #endif
+
Definition: SUTouchBarButtonGroup.h:16
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_forward_declarations_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_forward_declarations_8h_source.html new file mode 100644 index 0000000..66c698b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_touch_bar_forward_declarations_8h_source.html @@ -0,0 +1,176 @@ + + + + + + + +Sparkle: Sparkle/SUTouchBarForwardDeclarations.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUTouchBarForwardDeclarations.h
+
+
+
1 //
+
2 // SUTouchBarForwardDeclarations.h
+
3 // Sparkle
+
4 //
+
5 // Created by Yuxin Wang on 18/01/2017.
+
6 // Copyright © 2017 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 // Once Sparkle no longer supports OSX 10.12.0, this file can be deleted.
+
12 
+
13 #import <Foundation/Foundation.h>
+
14 
+
15 #if __MAC_OS_X_VERSION_MAX_ALLOWED < 101201
+
16 
+
17 NS_ASSUME_NONNULL_BEGIN
+
18 
+
19 @class NSTouchBar;
+
20 @class NSTouchBarItem;
+
21 @class NSCustomTouchBarItem;
+
22 
+
23 typedef NSString * NSTouchBarItemIdentifier;
+
24 typedef NSString * NSTouchBarCustomizationIdentifier;
+
25 
+
26 @protocol NSTouchBarDelegate;
+
27 
+
28 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
29 @interface NSTouchBar : NSObject <NSCoding>
+
30 
+
31 - (instancetype)init NS_DESIGNATED_INITIALIZER;
+
32 - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_DESIGNATED_INITIALIZER;
+
33 
+
34 @property (copy, nullable) NSTouchBarCustomizationIdentifier customizationIdentifier;
+
35 @property (copy) NSArray<NSTouchBarItemIdentifier> *customizationAllowedItemIdentifiers;
+
36 @property (copy) NSArray<NSTouchBarItemIdentifier> *customizationRequiredItemIdentifiers;
+
37 @property (copy) NSArray<NSTouchBarItemIdentifier> *defaultItemIdentifiers;
+
38 @property (copy, readonly) NSArray<NSTouchBarItemIdentifier> *itemIdentifiers;
+
39 @property (copy, nullable) NSTouchBarItemIdentifier principalItemIdentifier;
+
40 @property (copy, nullable) NSTouchBarItemIdentifier escapeKeyReplacementItemIdentifier;
+
41 @property (copy) NSSet<NSTouchBarItem *> *templateItems;
+
42 @property (nullable, weak) id <NSTouchBarDelegate> delegate;
+
43 - (nullable __kindof NSTouchBarItem *)itemForIdentifier:(NSTouchBarItemIdentifier)identifier;
+
44 @property (readonly, getter=isVisible) BOOL visible;
+
45 
+
46 @end
+
47 
+
48 @protocol NSTouchBarDelegate<NSObject>
+
49 @optional
+
50 - (nullable NSTouchBarItem*)touchBar:(NSTouchBar*)touchBar
+
51  makeItemForIdentifier:(NSTouchBarItemIdentifier)identifier;
+
52 @end
+
53 
+
54 typedef float NSTouchBarItemPriority;
+
55 
+
56 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
57 @interface NSTouchBarItem : NSObject <NSCoding>
+
58 
+
59 - (instancetype)initWithIdentifier:(NSTouchBarItemIdentifier)identifier NS_DESIGNATED_INITIALIZER;
+
60 - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
+
61 - (instancetype)init NS_UNAVAILABLE;
+
62 
+
63 @property (readonly, copy) NSTouchBarItemIdentifier identifier;
+
64 @property NSTouchBarItemPriority visibilityPriority;
+
65 @property (readonly, nullable) NSView *view;
+
66 @property (readonly, nullable) NSViewController *viewController;
+
67 @property (readonly, copy) NSString *customizationLabel;
+
68 @property (readonly, getter=isVisible) BOOL visible;
+
69 
+
70 @end
+
71 
+
72 NS_CLASS_AVAILABLE_MAC(10_12_2)
+
73 @interface NSCustomTouchBarItem : NSTouchBarItem
+
74 
+
75 @property (readwrite, strong) __kindof NSView *view;
+
76 @property (readwrite, strong, nullable) __kindof NSViewController *viewController;
+
77 @property (readwrite, copy, null_resettable) NSString *customizationLabel;
+
78 
+
79 @end
+
80 
+
81 NS_ASSUME_NONNULL_END
+
82 
+
83 #else
+
84 
+
85 // When compiling against the 10.12.1 SDK or later, just provide forward
+
86 // declarations to suppress the partial availability warnings.
+
87 
+
88 @class NSTouchBar;
+
89 @protocol NSTouchBarDelegate;
+
90 @class NSTouchBarItem;
+
91 @class NSCustomTouchBarItem;
+
92 
+
93 #endif
+
94 
+
95 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_alert_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_alert_8h_source.html new file mode 100644 index 0000000..2349b22 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_alert_8h_source.html @@ -0,0 +1,126 @@ + + + + + + + +Sparkle: Sparkle/SUUpdateAlert.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdateAlert.h
+
+
+
1 //
+
2 // SUUpdateAlert.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/12/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #ifndef SUUPDATEALERT_H
+
12 #define SUUPDATEALERT_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 #import "SUVersionDisplayProtocol.h"
+
16 #import "SPUUserUpdateState.h"
+
17 
+
18 @protocol SUUpdateAlertDelegate;
+
19 
+ +
21 @interface SUUpdateAlert : NSWindowController
+
22 
+
23 @property (nonatomic, weak, readonly) id <SUVersionDisplay> versionDisplayer;
+
24 
+
25 - (instancetype)initWithAppcastItem:(SUAppcastItem *)item state:(SPUUserUpdateState *)state host:(SUHost *)aHost versionDisplayer:(id <SUVersionDisplay>)aVersionDisplayer completionBlock:(void (^)(SPUUserUpdateChoice))block;
+
26 
+
27 - (void)showUpdateReleaseNotesWithDownloadData:(SPUDownloadData *)downloadData;
+
28 - (void)showReleaseNotesFailedToDownload;
+
29 
+
30 - (IBAction)installUpdate:sender;
+
31 - (IBAction)skipThisVersion:sender;
+
32 - (IBAction)remindMeLater:sender;
+
33 
+
34 - (void)setInstallButtonFocus:(BOOL)focus;
+
35 
+
36 @end
+
37 
+
38 #endif
+
39 
+
40 #endif
+
A class for containing downloaded data along with some information about it.
Definition: SPUDownloadData.h:33
+
Definition: SPUUserUpdateState.h:38
+
Definition: SUAppcastItem.h:36
+
Definition: SUHost.h:15
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_prompt_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_prompt_8h_source.html new file mode 100644 index 0000000..4e530a0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_prompt_8h_source.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Sparkle/SUUpdatePermissionPrompt.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdatePermissionPrompt.h
+
+
+
1 //
+
2 // SUUpdatePermissionPrompt.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/24/08.
+
6 // Copyright 2008 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #ifndef SUUPDATEPERMISSIONPROMPT_H
+
12 #define SUUPDATEPERMISSIONPROMPT_H
+
13 
+
14 #import <Cocoa/Cocoa.h>
+
15 
+ +
17 
+
18 @interface SUUpdatePermissionPrompt : NSWindowController
+
19 
+
20 - (instancetype)initPromptWithHost:(SUHost *)theHost request:(SPUUpdatePermissionRequest *)request reply:(void (^)(SUUpdatePermissionResponse *))reply;
+
21 
+
22 @end
+
23 
+
24 #endif
+
25 
+
26 #endif
+
This class represents information needed to make a permission request for checking updates.
Definition: SPUUpdatePermissionRequest.h:24
+
Definition: SUHost.h:15
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_response_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_response_8h_source.html new file mode 100644 index 0000000..c836c4b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_permission_response_8h_source.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: Sparkle/SUUpdatePermissionResponse.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdatePermissionResponse.h
+
+
+
1 //
+
2 // SUUpdatePermissionResponse.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 2/8/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
22 SU_EXPORT @interface SUUpdatePermissionResponse : NSObject<NSSecureCoding>
+
23 
+
30 - (instancetype)initWithAutomaticUpdateChecks:(BOOL)automaticUpdateChecks sendSystemProfile:(BOOL)sendSystemProfile;
+
31 
+
32 /*
+
33  Use -initWithAutomaticUpdateChecks:sendSystemProfile: instead.
+
34  */
+
35 - (instancetype)init NS_UNAVAILABLE;
+
36 
+
40 @property (nonatomic, readonly) BOOL automaticUpdateChecks;
+
41 
+
45 @property (nonatomic, readonly) BOOL sendSystemProfile;
+
46 
+
47 @end
+
This class represents a response for permission to check updates.
Definition: SUUpdatePermissionResponse.h:22
+
BOOL automaticUpdateChecks
A read-only property indicating whether automatic update checks are allowed or not.
Definition: SUUpdatePermissionResponse.h:40
+
BOOL sendSystemProfile
A read-only property indicating if system profile should be sent or not.
Definition: SUUpdatePermissionResponse.h:45
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_validator_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_validator_8h_source.html new file mode 100644 index 0000000..d7c66b6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_update_validator_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: Sparkle/SUUpdateValidator.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdateValidator.h
+
+
+
1 //
+
2 // SUUpdateValidator.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/3/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 @class SUHost;
+
12 @class SUSignatures;
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SUUpdateValidator : NSObject
+
17 
+
18 - (instancetype)initWithDownloadPath:(NSString *)downloadPath signatures:(SUSignatures *)signatures host:(SUHost *)host;
+
19 
+
20 // This is "pre" validation, before the archive has been extracted
+
21 - (BOOL)validateDownloadPathWithError:(NSError **)error;
+
22 
+
23 // This is "post" validation, after an archive has been extracted
+
24 - (BOOL)validateWithUpdateDirectory:(NSString *)updateDirectory error:(NSError **)error;
+
25 
+
26 @end
+
27 
+
28 NS_ASSUME_NONNULL_END
+
Definition: SUHost.h:15
+
Definition: SUSignatures.h:31
+
Definition: SUUpdateValidator.h:17
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_8h_source.html new file mode 100644 index 0000000..ffb9439 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_8h_source.html @@ -0,0 +1,159 @@ + + + + + + + +Sparkle: Sparkle/SUUpdater.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdater.h
+
+
+
1 //
+
2 // SUUpdater.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 1/4/06.
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUUPDATER_H
+
10 #define SUUPDATER_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 #import <Sparkle/SUExport.h>
+
21 #import <Sparkle/SUVersionComparisonProtocol.h>
+
22 #import <Sparkle/SUVersionDisplayProtocol.h>
+
23 #import <Sparkle/SUUpdaterDelegate.h>
+
24 
+
25 @class SUAppcastItem, SUAppcast, NSMenuItem;
+
26 
+
27 @protocol SUUpdaterDelegate;
+
28 
+
37 __deprecated_msg("Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.")
+
38 SU_EXPORT @interface SUUpdater : NSObject
+
39 
+
40 @property (unsafe_unretained, nonatomic) IBOutlet id<SUUpdaterDelegate> delegate;
+
41 
+
47 + (SUUpdater *)sharedUpdater;
+
48 
+
53 + (SUUpdater *)updaterForBundle:(NSBundle *)bundle;
+
54 
+
60 - (instancetype)initForBundle:(NSBundle *)bundle;
+
61 
+
72 - (IBAction)checkForUpdates:(id)sender;
+
73 
+
77 - (BOOL)validateMenuItem:(NSMenuItem *)menuItem;
+
78 
+
92 - (void)checkForUpdatesInBackground;
+
93 
+
101 @property (nonatomic) BOOL automaticallyChecksForUpdates;
+
102 
+
111 @property (nonatomic) BOOL automaticallyDownloadsUpdates;
+
112 
+
120 @property (nonatomic) NSTimeInterval updateCheckInterval;
+
121 
+
133 - (void)checkForUpdateInformation;
+
134 
+
144 @property (nonatomic, copy) NSURL *feedURL;
+
145 
+
149 @property (readonly, nonatomic) NSBundle *hostBundle;
+
150 
+
154 @property (nonatomic, readonly) NSBundle *sparkleBundle;
+
155 
+
161 @property (nonatomic, copy) NSString *userAgentString;
+
162 
+
168 @property (copy) NSDictionary<NSString *, NSString *> *httpHeaders;
+
169 
+
175 @property (nonatomic) BOOL sendsSystemProfile;
+
176 
+
180 @property (nonatomic, copy) NSString *decryptionPassword;
+
181 
+
187 @property (nonatomic, readonly, copy) NSDate *lastUpdateCheckDate;
+
188 
+
196 - (void)resetUpdateCycle;
+
197 
+
204 @property (nonatomic, readonly) BOOL updateInProgress;
+
205 
+
206 @end
+
207 
+
208 #endif
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_delegate_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_delegate_8h_source.html new file mode 100644 index 0000000..ca569da --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_updater_delegate_8h_source.html @@ -0,0 +1,195 @@ + + + + + + + +Sparkle: Sparkle/SUUpdaterDelegate.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUUpdaterDelegate.h
+
+
+
1 //
+
2 // SUUpdaterDelegate.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/12/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+ +
20 @class SUUpdater, SUAppcast, SUAppcastItem;
+
21 
+
22 NS_ASSUME_NONNULL_BEGIN
+
23 
+
24 // -----------------------------------------------------------------------------
+
25 // SUUpdater Notifications for events that might be interesting to more than just the delegate
+
26 // The updater will be the notification object
+
27 // -----------------------------------------------------------------------------
+
28 SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification;
+
29 SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification;
+
30 SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification;
+
31 SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification;
+
32 #define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification;
+
33 #define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification;
+
34 
+
35 // Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo
+
36 SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey;
+
37 // Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo
+
38 SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey;
+
39 
+
40 // -----------------------------------------------------------------------------
+
41 // SUUpdater Delegate:
+
42 // -----------------------------------------------------------------------------
+
43 
+
47 __deprecated_msg("Deprecated in Sparkle 2. See SPUUpdaterDelegate instead")
+
48 @protocol SUUpdaterDelegate <NSObject>
+
49 @optional
+
50 
+
58 - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)updater;
+
59 
+
70 - (NSArray<NSDictionary<NSString *, NSString *> *> *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
71 
+
82 - (nullable NSString *)feedURLStringForUpdater:(SUUpdater *)updater;
+
83 
+
91 - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)updater;
+
92 
+
101 - (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
+
102 
+
113 - (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)updater;
+
114 
+
121 - (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item;
+
122 
+
128 - (void)updaterDidNotFindUpdate:(SUUpdater *)updater;
+
129 
+
137 - (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request;
+
138 
+
145 - (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item;
+
146 
+
154 - (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error;
+
155 
+
161 - (void)userDidCancelDownload:(SUUpdater *)updater;
+
162 
+
169 - (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item;
+
170 
+
177 - (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item;
+
178 
+
185 - (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item;
+
186 
+
193 - (void)updater:(SUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item;
+
194 
+
209 - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation;
+
210 
+
224 - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item;
+
225 
+
234 - (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater;
+
235 
+
241 - (void)updaterWillRelaunchApplication:(SUUpdater *)updater;
+
242 
+
248 - (void)updaterDidRelaunchApplication:(SUUpdater *)updater;
+
249 
+
263 - (nullable id<SUVersionComparison>)versionComparatorForUpdater:(SUUpdater *)updater;
+
264 
+
272 - (nullable id <SUVersionDisplay>)versionDisplayerForUpdater:(SUUpdater *)updater;
+
273 
+
283 - (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater;
+
284 
+
291 - (void)updaterWillShowModalAlert:(SUUpdater *)updater;
+
292 
+
299 - (void)updaterDidShowModalAlert:(SUUpdater *)updater;
+
300 
+
311 - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation;
+
312 
+
322 - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))installationBlock;
+
323 
+
332 - (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item __deprecated;
+
333 
+
340 - (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error;
+
341 
+
342 @end
+
343 
+
344 NS_ASSUME_NONNULL_END
+
Definition: SUAppcast.h:26
+
Definition: SUAppcastItem.h:36
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_comparison_protocol_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_comparison_protocol_8h_source.html new file mode 100644 index 0000000..bb04655 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_comparison_protocol_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: Sparkle/SUVersionComparisonProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUVersionComparisonProtocol.h
+
+
+
1 //
+
2 // SUVersionComparisonProtocol.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 12/21/07.
+
6 // Copyright 2007 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SUVERSIONCOMPARISONPROTOCOL_H
+
10 #define SUVERSIONCOMPARISONPROTOCOL_H
+
11 
+
12 #if __has_feature(modules)
+
13 #if __has_warning("-Watimport-in-framework-header")
+
14 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
15 #endif
+
16 @import Foundation;
+
17 #else
+
18 #import <Foundation/Foundation.h>
+
19 #endif
+
20 
+
21 #ifdef BUILDING_SPARKLE_TOOL
+
22 // Ignore incorrect warning
+
23 #pragma clang diagnostic push
+
24 #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
+
25 #import "SUExport.h"
+
26 #pragma clang diagnostic pop
+
27 #else
+
28 #import <Sparkle/SUExport.h>
+
29 #endif
+
30 
+
31 NS_ASSUME_NONNULL_BEGIN
+
32 
+ +
37 
+
44 - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD!
+
45 
+
46 @end
+
47 
+
48 NS_ASSUME_NONNULL_END
+
49 #endif
+
Provides version comparison facilities for Sparkle.
Definition: SUVersionComparisonProtocol.h:36
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_display_protocol_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_display_protocol_8h_source.html new file mode 100644 index 0000000..d363b15 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_version_display_protocol_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUVersionDisplayProtocol.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUVersionDisplayProtocol.h
+
+
+
1 //
+
2 // SUVersionDisplayProtocol.h
+
3 // EyeTV
+
4 //
+
5 // Created by Uli Kusterer on 08.12.09.
+
6 // Copyright 2009 Elgato Systems GmbH. All rights reserved.
+
7 //
+
8 
+
9 #if __has_feature(modules)
+
10 #if __has_warning("-Watimport-in-framework-header")
+
11 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
+
12 #endif
+
13 @import Foundation;
+
14 #else
+
15 #import <Foundation/Foundation.h>
+
16 #endif
+
17 #import <Sparkle/SUExport.h>
+
18 
+
22 SU_EXPORT @protocol SUVersionDisplay
+
23 
+
30 - (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB;
+
31 
+
32 @end
+
Applies special display formatting to version numbers.
Definition: SUVersionDisplayProtocol.h:22
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_w_k_web_view_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_w_k_web_view_8h_source.html new file mode 100644 index 0000000..29c0b2a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_w_k_web_view_8h_source.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: Sparkle/SUWKWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWKWebView.h
+
+
+
1 //
+
2 // SUWKWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 #import "SUWebView.h"
+
13 
+
14 NS_ASSUME_NONNULL_BEGIN
+
15 
+
16 @interface SUWKWebView : NSObject <SUWebView>
+
17 
+
18 - (instancetype)initWithColorStyleSheetLocation:(NSURL *)colorStyleSheetLocation fontFamily:(NSString *)fontFamily fontPointSize:(int)fontPointSize javaScriptEnabled:(BOOL)javaScriptEnabled;
+
19 
+
20 @end
+
21 
+
22 NS_ASSUME_NONNULL_END
+
23 
+
24 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_8h_source.html new file mode 100644 index 0000000..111a574 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_8h_source.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Sparkle/SUWebView.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWebView.h
+
+
+
1 //
+
2 // SUWebView.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/30/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 @class NSView;
+
14 
+
15 NS_ASSUME_NONNULL_BEGIN
+
16 
+
17 @protocol SUWebView <NSObject>
+
18 
+
19 @property (nonatomic, readonly) NSView *view;
+
20 
+
21 - (void)loadHTMLString:(NSString *)htmlString baseURL:(NSURL * _Nullable)baseURL completionHandler:(void (^)(NSError * _Nullable))completionHandler;
+
22 
+
23 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName baseURL:(NSURL *)baseURL completionHandler:(void (^)(NSError * _Nullable))completionHandler;
+
24 
+
25 - (void)stopLoading;
+
26 
+
27 - (void)setDrawsBackground:(BOOL)drawsBackground;
+
28 
+
29 @end
+
30 
+
31 NS_ASSUME_NONNULL_END
+
32 
+
33 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_common_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_common_8h_source.html new file mode 100644 index 0000000..1f888dd --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_s_u_web_view_common_8h_source.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: Sparkle/SUWebViewCommon.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SUWebViewCommon.h
+
+
+
1 //
+
2 // SUWebViewCommon.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 12/31/20.
+
6 // Copyright © 2020 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #if SPARKLE_BUILD_UI_BITS
+
10 
+
11 #import <Foundation/Foundation.h>
+
12 
+
13 NS_ASSUME_NONNULL_BEGIN
+
14 
+
15 BOOL SUWebViewIsSafeURL(NSURL *url, BOOL *isAboutBlankURL);
+
16 
+
17 NS_ASSUME_NONNULL_END
+
18 
+
19 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_show_installer_progress_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_show_installer_progress_8h_source.html new file mode 100644 index 0000000..fbf3846 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_show_installer_progress_8h_source.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress/ShowInstallerProgress.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ShowInstallerProgress.h
+
+
+
1 //
+
2 // ShowInstallerProgress.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 4/10/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 #import "InstallerProgressDelegate.h"
+
11 
+
12 NS_ASSUME_NONNULL_BEGIN
+
13 
+ +
15 
+
16 @end
+
17 
+
18 NS_ASSUME_NONNULL_END
+
Definition: ShowInstallerProgress.h:14
+
Definition: InstallerProgressDelegate.h:15
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_sparkle_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_sparkle_8h_source.html new file mode 100644 index 0000000..2f8df6f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_sparkle_8h_source.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: Sparkle/Sparkle.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Sparkle.h
+
+
+
1 //
+
2 // Sparkle.h
+
3 // Sparkle
+
4 //
+
5 // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07)
+
6 // Copyright 2006 Andy Matuschak. All rights reserved.
+
7 //
+
8 
+
9 #ifndef SPARKLE_H
+
10 #define SPARKLE_H
+
11 
+
12 // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
+
13 // there are name-space collisions) so we can list all of them to start with:
+
14 
+
15 #import <Sparkle/SUExport.h>
+
16 #import <Sparkle/SUAppcast.h>
+
17 #import <Sparkle/SUAppcastItem.h>
+
18 #import <Sparkle/SUStandardVersionComparator.h>
+
19 #import <Sparkle/SPUUpdater.h>
+
20 #import <Sparkle/SPUUpdaterDelegate.h>
+
21 #import <Sparkle/SPUUpdaterSettings.h>
+
22 #import <Sparkle/SUVersionComparisonProtocol.h>
+
23 #import <Sparkle/SUVersionDisplayProtocol.h>
+
24 #import <Sparkle/SUErrors.h>
+
25 #import <Sparkle/SPUUpdatePermissionRequest.h>
+
26 #import <Sparkle/SUUpdatePermissionResponse.h>
+
27 #import <Sparkle/SPUUserDriver.h>
+
28 #import <Sparkle/SPUDownloadData.h>
+
29 
+
30 // UI bits
+
31 #import <Sparkle/SPUStandardUpdaterController.h>
+
32 #import <Sparkle/SPUStandardUserDriver.h>
+
33 #import <Sparkle/SPUStandardUserDriverDelegate.h>
+
34 
+
35 // Deprecated bits
+
36 #import <Sparkle/SUUpdater.h>
+
37 #import <Sparkle/SUUpdaterDelegate.h>
+
38 
+
39 #endif
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_termination_listener_8h_source.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_termination_listener_8h_source.html new file mode 100644 index 0000000..f21a972 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/_termination_listener_8h_source.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Sparkle/Autoupdate/TerminationListener.h Source File + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
TerminationListener.h
+
+
+
1 //
+
2 // TerminationListener.h
+
3 // Sparkle
+
4 //
+
5 // Created by Mayur Pawashe on 3/7/16.
+
6 // Copyright © 2016 Sparkle Project. All rights reserved.
+
7 //
+
8 
+
9 #import <Foundation/Foundation.h>
+
10 
+
11 NS_ASSUME_NONNULL_BEGIN
+
12 
+
13 @interface TerminationListener : NSObject
+
14 
+
15 - (instancetype)initWithProcessIdentifier:(NSNumber * _Nullable)processIdentifier;
+
16 
+
17 @property (nonatomic, readonly) BOOL terminated;
+
18 
+
19 // If the process identifier provided was nil, then the completion block will invoke immediately with a YES success
+
20 - (void)startListeningWithCompletion:(void (^)(BOOL success))completionBlock;
+
21 
+
22 @end
+
23 
+
24 NS_ASSUME_NONNULL_END
+
Definition: TerminationListener.h:14
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/annotated.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/annotated.html new file mode 100644 index 0000000..8444960 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/annotated.html @@ -0,0 +1,180 @@ + + + + + + + +Sparkle: Class List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 CInstallerProgressAppController
 CInstallerProgressAppController()
 C<InstallerProgressDelegate>
 CNSButton(SierraSDK)
 CNSData(SUSignatureVerifier)
 CNSObject(PrivateDelegateMethods)
 CNSOperatingSystemVersion
 CNSProcessInfo()
 CShowInstallerProgress
 CShowInstallerProgress()
 CSPUAppcastItemState
 CSPUAppcastItemState()
 CSPUAppcastItemStateResolverPrivate exposed class used to resolve Appcast Item properties that rely on external factors such as a host
 CSPUAutomaticUpdateDriver
 CSPUAutomaticUpdateDriver()
 CSPUBasicUpdateDriver
 CSPUBasicUpdateDriver()
 C<SPUBasicUpdateDriverDelegate>
 CSPUCoreBasedUpdateDriver
 CSPUCoreBasedUpdateDriver()
 C<SPUCoreBasedUpdateDriverDelegate>
 CSPUDownloadDataA class for containing downloaded data along with some information about it
 CSPUDownloadDriver
 CSPUDownloadDriver()
 C<SPUDownloadDriverDelegate>
 CSPUDownloadedUpdate
 CSPUInformationalUpdate
 C<SPUInstallerAgentProtocol>
 CSPUInstallerDriver
 CSPUInstallerDriver()
 C<SPUInstallerDriverDelegate>
 CSPULocalCacheDirectory
 CSPUProbeInstallStatus
 CSPUProbingUpdateDriver
 CSPUProbingUpdateDriver()
 CSPUReleaseNotesDriver
 C<SPUResumableUpdate>
 CSPUScheduledUpdateDriver
 CSPUScheduledUpdateDriver()
 CSPUSkippedUpdate
 CSPUStandardUpdaterControllerA controller class that instantiates a SPUUpdater and allows binding UI to it
 CSPUStandardUserDriverSparkle's standard built-in user driver for updater interactions
 C<SPUStandardUserDriverDelegate>A protocol for Sparkle's standard user driver's delegate
 CSPUUIBasedUpdateDriver
 CSPUUIBasedUpdateDriver()
 C<SPUUIBasedUpdateDriverDelegate>
 C<SPUUpdateDriver>
 CSPUUpdatePermissionRequestThis class represents information needed to make a permission request for checking updates
 CSPUUpdaterThe main API in Sparkle for controlling the update mechanism
 CSPUUpdater()
 CSPUUpdaterCycle
 CSPUUpdaterCycle()
 C<SPUUpdaterCycleDelegate>
 C<SPUUpdaterDelegate>Provides methods to control the behavior of an SPUUpdater object
 CSPUUpdaterSettingsThis class can be used for reading certain updater settings
 CSPUUpdaterSettings()
 CSPUUpdaterTimer
 CSPUUpdaterTimer()
 C<SPUUpdaterTimerDelegate>
 CSPUURLRequest
 CSPUURLRequest()
 C<SPUUserDriver>The API in Sparkle for controlling the user interaction
 CSPUUserInitiatedUpdateDriver
 CSPUUserInitiatedUpdateDriver()
 CSPUUserUpdateState
 CSPUUserUpdateState()
 CSPUUserUpdateState(Private)
 CSUAppcast
 CSUAppcast()
 CSUAppcast(Private)
 CSUAppcastDriver
 CSUAppcastDriver()
 C<SUAppcastDriverDelegate>
 CSUAppcastItem
 CSUAppcastItem()
 CSUAppcastItem(Private)
 CSUApplicationInfo
 CSUBundleIcon
 CSUFileManager
 CSUHost
 CSUHost()
 C<SUInstallerAgentInitiationProtocol>
 C<SUInstallerProtocol>
 CSUOperatingSystem
 CSUPhasedUpdateGroupInfo
 CSUPublicKeys
 CSUSignatures
 CSUStandardVersionComparatorSparkle's default version comparator
 CSUStatusController
 CSUStatusController()
 CSUSystemProfiler
 CSUTouchBarButtonGroup
 CSUUpdatePermissionResponseThis class represents a response for permission to check updates
 CSUUpdateValidator
 CSUUpdateValidator()
 C<SUVersionComparison>Provides version comparison facilities for Sparkle
 C<SUVersionDisplay>Applies special display formatting to version numbers
 CTerminationListener
 CTerminationListener()
+
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/badge.svg b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/badge.svg new file mode 100644 index 0000000..dbb00ab --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/badge.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + documentation + + + documentation + + + 58% + + + 58% + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bc_s.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bc_s.png new file mode 100644 index 0000000..224b29a Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bc_s.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bdwn.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bdwn.png new file mode 100644 index 0000000..940a0b9 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/bdwn.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08-members.html new file mode 100644 index 0000000..c685e45 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
InstallerProgressAppController() Member List
+
+
+ +

This is the complete list of members for InstallerProgressAppController(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + +
application (defined in InstallerProgressAppController())InstallerProgressAppController()
applicationBundle (defined in InstallerProgressAppController())InstallerProgressAppController()
applicationInitiallyAlive (defined in InstallerProgressAppController())InstallerProgressAppController()
connected (defined in InstallerProgressAppController())InstallerProgressAppController()
connection (defined in InstallerProgressAppController())InstallerProgressAppController()
delegate (defined in InstallerProgressAppController())InstallerProgressAppController()
normalizedPath (defined in InstallerProgressAppController())InstallerProgressAppController()
oldHost (defined in InstallerProgressAppController())InstallerProgressAppController()
oldHostBundlePath (defined in InstallerProgressAppController())InstallerProgressAppController()
registerApplicationBundlePath:reply: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
registerInstallationInfoData: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
relaunchApplication (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
repliedToRegistration (defined in InstallerProgressAppController())InstallerProgressAppController()
sendTerminationSignal (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
shouldRelaunchHostBundle (defined in InstallerProgressAppController())InstallerProgressAppController()
showProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
statusInfo (defined in InstallerProgressAppController())InstallerProgressAppController()
stopProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
submittedLauncherJob (defined in InstallerProgressAppController())InstallerProgressAppController()
systemDomain (defined in InstallerProgressAppController())InstallerProgressAppController()
willTerminate (defined in InstallerProgressAppController())InstallerProgressAppController()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.html new file mode 100644 index 0000000..2ba0ce6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.html @@ -0,0 +1,163 @@ + + + + + + + +Sparkle: InstallerProgressAppController() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
InstallerProgressAppController() Category Reference
+
+
+
+Inheritance diagram for InstallerProgressAppController():
+
+
+ + +<SPUInstallerAgentProtocol> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSApplication * application
 
+id< InstallerProgressDelegatedelegate
 
+NSXPCConnection * connection
 
+BOOL connected
 
+BOOL repliedToRegistration
 
+SUHostoldHost
 
+BOOL shouldRelaunchHostBundle
 
+NSString * oldHostBundlePath
 
+BOOL systemDomain
 
+StatusInfo * statusInfo
 
+BOOL submittedLauncherJob
 
+BOOL willTerminate
 
+BOOL applicationInitiallyAlive
 
+NSBundle * applicationBundle
 
+NSString * normalizedPath
 
+ + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUInstallerAgentProtocol>
+(void) - registerApplicationBundlePath:reply:
 
+(void) - registerInstallationInfoData:
 
+(void) - sendTerminationSignal
 
+(void) - showProgress
 
+(void) - stopProgress
 
+(void) - relaunchApplication
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.png new file mode 100644 index 0000000..6e60bc7 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_installer_progress_app_controller_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08-members.html new file mode 100644 index 0000000..5351e69 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSButton(SierraSDK) Member List
+
+
+ +

This is the complete list of members for NSButton(SierraSDK), including all inherited members.

+ + +
buttonWithTitle:target:action: (defined in NSButton(SierraSDK))NSButton(SierraSDK)static
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08.html new file mode 100644 index 0000000..9f75d2a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_button_07_sierra_s_d_k_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSButton(SierraSDK) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Class Methods | +List of all members
+
+
NSButton(SierraSDK) Category Reference
+
+
+ + + + +

+Class Methods

+(instancetype) + buttonWithTitle:target:action:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08-members.html new file mode 100644 index 0000000..1894749 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSData(SUSignatureVerifier) Member List
+
+
+ +

This is the complete list of members for NSData(SUSignatureVerifier), including all inherited members.

+ + +
initWithBase64Encoding: (defined in NSData(SUSignatureVerifier))NSData(SUSignatureVerifier)
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08.html new file mode 100644 index 0000000..e47ab47 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_data_07_s_u_signature_verifier_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSData(SUSignatureVerifier) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSData(SUSignatureVerifier) Category Reference
+
+
+ + + + +

+Instance Methods

+(id) - initWithBase64Encoding:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08-members.html new file mode 100644 index 0000000..5babf20 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSObject(PrivateDelegateMethods) Member List
+
+
+ +

This is the complete list of members for NSObject(PrivateDelegateMethods), including all inherited members.

+ + +
_pathToRelaunchForUpdater: (defined in NSObject(PrivateDelegateMethods))NSObject(PrivateDelegateMethods)
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08.html new file mode 100644 index 0000000..6abcd13 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_object_07_private_delegate_methods_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSObject(PrivateDelegateMethods) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSObject(PrivateDelegateMethods) Category Reference
+
+
+ + + + +

+Instance Methods

+(nullable NSString *) - _pathToRelaunchForUpdater:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08-members.html new file mode 100644 index 0000000..c1e1f3a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
NSProcessInfo() Member List
+
+
+ +

This is the complete list of members for NSProcessInfo(), including all inherited members.

+ + +
operatingSystemVersion (defined in NSProcessInfo())NSProcessInfo()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08.html new file mode 100644 index 0000000..ded3af7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_n_s_process_info_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: NSProcessInfo() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
NSProcessInfo() Category Reference
+
+
+ + + + +

+Instance Methods

+(NSOperatingSystemVersion- operatingSystemVersion
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.html new file mode 100644 index 0000000..f27c629 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: SPUAppcastItemState() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAppcastItemState() Category Reference
+
+
+
+Inheritance diagram for SPUAppcastItemState():
+
+
+ +
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.png new file mode 100644 index 0000000..6b6ae89 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_appcast_item_state_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08-members.html new file mode 100644 index 0000000..e7f60d1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08-members.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAutomaticUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUAutomaticUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + +
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriver (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
updateItem (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
updater (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
updaterDelegate (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
userDriver (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
willInstallSilently (defined in SPUAutomaticUpdateDriver())SPUAutomaticUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.html new file mode 100644 index 0000000..2faec71 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: SPUAutomaticUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUAutomaticUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUAutomaticUpdateDriver():
+
+
+ + +<SPUCoreBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + + + +

+Properties

+id updater
 
+id< SPUUserDriveruserDriver
 
+id updaterDelegate
 
+SPUCoreBasedUpdateDrivercoreDriver
 
+SUAppcastItemupdateItem
 
+BOOL willInstallSilently
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUCoreBasedUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+(void) - coreDriverDidStartExtractingUpdate
 
+(void) - installerDidStartInstalling
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.png new file mode 100644 index 0000000..eacdfd1 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_automatic_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08-members.html new file mode 100644 index 0000000..2ec2eb5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUBasicUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUBasicUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + +
aborted (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
appcastDriver (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
completionBlock (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
delegate (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
didFailToFetchAppcastWithError: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didFindValidUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didFinishLoadingAppcast: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
host (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
updater (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
updaterDelegate (defined in SPUBasicUpdateDriver())SPUBasicUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.html new file mode 100644 index 0000000..75ac33c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.html @@ -0,0 +1,133 @@ + + + + + + + +Sparkle: SPUBasicUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUBasicUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUBasicUpdateDriver():
+
+
+ + +<SUAppcastDriverDelegate> + +
+ + + + + + + + + + + + + + + + +

+Properties

+id< SPUBasicUpdateDriverDelegatedelegate
 
+SUAppcastDriverappcastDriver
 
+SPUUpdateDriverCompletion completionBlock
 
+SUHosthost
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+BOOL aborted
 
+ + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SUAppcastDriverDelegate>
+(void) - didFailToFetchAppcastWithError:
 
+(void) - didFinishLoadingAppcast:
 
+(void) - didFindValidUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.png new file mode 100644 index 0000000..c7e41dc Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_basic_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08-members.html new file mode 100644 index 0000000..459d6a7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08-members.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUCoreBasedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUCoreBasedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
basicDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
delegate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
downloadDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadedUpdateForRemoval (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
host (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
httpHeaders (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
installerDidExtractUpdateWithProgress: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFailToApplyDeltaUpdate (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidStartExtracting (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDidStartInstalling (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerDriver (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
installerIsRequestingAbortInstallWithError: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
installerWillFinishInstallationAndRelaunch: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
preventsInstallerInteraction (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
resumableUpdate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
resumingInstallingUpdate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
secondaryUpdateItem (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
silentInstall (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updateItem (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updater (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
updaterDelegate (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
userAgent (defined in SPUCoreBasedUpdateDriver())SPUCoreBasedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.html new file mode 100644 index 0000000..3246a0d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.html @@ -0,0 +1,206 @@ + + + + + + + +Sparkle: SPUCoreBasedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUCoreBasedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUCoreBasedUpdateDriver():
+
+
+ + +<SPUBasicUpdateDriverDelegate> +<SPUDownloadDriverDelegate> +<SPUInstallerDriverDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SPUBasicUpdateDriverbasicDriver
 
+SPUDownloadDriverdownloadDriver
 
+SPUInstallerDriverinstallerDriver
 
+id< SPUCoreBasedUpdateDriverDelegatedelegate
 
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+id< SPUResumableUpdateresumableUpdate
 
+SPUDownloadedUpdatedownloadedUpdateForRemoval
 
+SUHosthost
 
+BOOL resumingInstallingUpdate
 
+BOOL silentInstall
 
+BOOL preventsInstallerInteraction
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+NSString * userAgent
 
+NSDictionary * httpHeaders
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUBasicUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
- Instance Methods inherited from <SPUDownloadDriverDelegate>
+(void) - downloadDriverDidFailToDownloadFileWithError:
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidDownloadUpdate:
 
+(void) - downloadDriverDidDownloadData:
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
- Instance Methods inherited from <SPUInstallerDriverDelegate>
+(void) - installerDidStartInstalling
 
+(void) - installerDidStartExtracting
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerWillFinishInstallationAndRelaunch:
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+(void) - installerIsRequestingAbortInstallWithError:
 
+(void) - installerDidFailToApplyDeltaUpdate
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.png new file mode 100644 index 0000000..822312c Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_core_based_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08-members.html new file mode 100644 index 0000000..8b53c4a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUDownloadDriver() Member List
+
+
+ +

This is the complete list of members for SPUDownloadDriver(), including all inherited members.

+ + + + + + + + + + + + +
cleaningUp (defined in SPUDownloadDriver())SPUDownloadDriver()
connection (defined in SPUDownloadDriver())SPUDownloadDriver()
delegate (defined in SPUDownloadDriver())SPUDownloadDriver()
downloader (defined in SPUDownloadDriver())SPUDownloadDriver()
downloadName (defined in SPUDownloadDriver())SPUDownloadDriver()
expectedContentLength (defined in SPUDownloadDriver())SPUDownloadDriver()
host (defined in SPUDownloadDriver())SPUDownloadDriver()
retrievedDownloadResult (defined in SPUDownloadDriver())SPUDownloadDriver()
secondaryUpdateItem (defined in SPUDownloadDriver())SPUDownloadDriver()
temporaryDirectory (defined in SPUDownloadDriver())SPUDownloadDriver()
updateItem (defined in SPUDownloadDriver())SPUDownloadDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.html new file mode 100644 index 0000000..b4f717f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.html @@ -0,0 +1,126 @@ + + + + + + + +Sparkle: SPUDownloadDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUDownloadDriver() Category Reference
+
+
+
+Inheritance diagram for SPUDownloadDriver():
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+id< SPUDownloaderProtocol > downloader
 
+NSXPCConnection * connection
 
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+SUHosthost
 
+NSString * temporaryDirectory
 
+NSString * downloadName
 
+id< SPUDownloadDriverDelegatedelegate
 
+BOOL retrievedDownloadResult
 
+uint64_t expectedContentLength
 
+BOOL cleaningUp
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.png new file mode 100644 index 0000000..a6c0e08 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_download_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08-members.html new file mode 100644 index 0000000..3cdd4ae --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08-members.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUInstallerDriver() Member List
+
+
+ +

This is the complete list of members for SPUInstallerDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
aborted (defined in SPUInstallerDriver())SPUInstallerDriver()
applicationBundle (defined in SPUInstallerDriver())SPUInstallerDriver()
currentStage (defined in SPUInstallerDriver())SPUInstallerDriver()
delegate (defined in SPUInstallerDriver())SPUInstallerDriver()
downloadName (defined in SPUInstallerDriver())SPUInstallerDriver()
extractionAttempts (defined in SPUInstallerDriver())SPUInstallerDriver()
host (defined in SPUInstallerDriver())SPUInstallerDriver()
installerConnection (defined in SPUInstallerDriver())SPUInstallerDriver()
installerError (defined in SPUInstallerDriver())SPUInstallerDriver()
postponedOnce (defined in SPUInstallerDriver())SPUInstallerDriver()
relaunch (defined in SPUInstallerDriver())SPUInstallerDriver()
sparkleBundle (defined in SPUInstallerDriver())SPUInstallerDriver()
startedInstalling (defined in SPUInstallerDriver())SPUInstallerDriver()
systemDomain (defined in SPUInstallerDriver())SPUInstallerDriver()
temporaryDirectory (defined in SPUInstallerDriver())SPUInstallerDriver()
updateItem (defined in SPUInstallerDriver())SPUInstallerDriver()
updater (defined in SPUInstallerDriver())SPUInstallerDriver()
updaterDelegate (defined in SPUInstallerDriver())SPUInstallerDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.html new file mode 100644 index 0000000..2cfa3ad --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.html @@ -0,0 +1,147 @@ + + + + + + + +Sparkle: SPUInstallerDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUInstallerDriver() Category Reference
+
+
+
+Inheritance diagram for SPUInstallerDriver():
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SUHosthost
 
+NSBundle * applicationBundle
 
+NSBundle * sparkleBundle
 
+id< SPUInstallerDriverDelegatedelegate
 
+SPUInstallerMessageType currentStage
 
+BOOL startedInstalling
 
+id< SUInstallerConnectionProtocol > installerConnection
 
+NSUInteger extractionAttempts
 
+BOOL postponedOnce
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+BOOL relaunch
 
+BOOL systemDomain
 
+SUAppcastItemupdateItem
 
+NSString * downloadName
 
+NSString * temporaryDirectory
 
+BOOL aborted
 
+NSError * installerError
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.png new file mode 100644 index 0000000..b04c858 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_installer_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08-members.html new file mode 100644 index 0000000..b24a2f1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUProbingUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUProbingUpdateDriver(), including all inherited members.

+ + + + + + +
basicDriver (defined in SPUProbingUpdateDriver())SPUProbingUpdateDriver()
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
resumableUpdate (defined in SPUProbingUpdateDriver())SPUProbingUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.html new file mode 100644 index 0000000..0f50462 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUProbingUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUProbingUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUProbingUpdateDriver():
+
+
+ + +<SPUBasicUpdateDriverDelegate> + +
+ + + + + + +

+Properties

+SPUBasicUpdateDriverbasicDriver
 
+id< SPUResumableUpdateresumableUpdate
 
+ + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUBasicUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.png new file mode 100644 index 0000000..c39bacd Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_probing_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08-members.html new file mode 100644 index 0000000..f33e71a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUScheduledUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUScheduledUpdateDriver(), including all inherited members.

+ + + + + + + + +
basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
showedUpdate (defined in SPUScheduledUpdateDriver())SPUScheduledUpdateDriver()
uiDriver (defined in SPUScheduledUpdateDriver())SPUScheduledUpdateDriver()
uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.html new file mode 100644 index 0000000..c8eaec5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: SPUScheduledUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUScheduledUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUScheduledUpdateDriver():
+
+
+ + +<SPUUIBasedUpdateDriverDelegate> + +
+ + + + + + +

+Properties

+SPUUIBasedUpdateDriveruiDriver
 
+BOOL showedUpdate
 
+ + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUIBasedUpdateDriverDelegate>
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverDidShowUpdate
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.png new file mode 100644 index 0000000..398addf Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_scheduled_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08-members.html new file mode 100644 index 0000000..695e386 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08-members.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUIBasedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUUIBasedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
delegate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
host (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
httpHeaders (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
preventsInstallerInteraction (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
releaseNotesDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
resumingDownloadedUpdate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
resumingInstallingUpdate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
updater (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
updaterDelegate (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userAgent (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userDriver (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
userInitiated (defined in SPUUIBasedUpdateDriver())SPUUIBasedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.html new file mode 100644 index 0000000..1092d38 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.html @@ -0,0 +1,178 @@ + + + + + + + +Sparkle: SPUUIBasedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUIBasedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUUIBasedUpdateDriver():
+
+
+ + +<SPUCoreBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+SPUCoreBasedUpdateDrivercoreDriver
 
+SUHosthost
 
+id updater
 
+BOOL userInitiated
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+id< SPUUIBasedUpdateDriverDelegatedelegate
 
+id< SPUUserDriveruserDriver
 
+SPUReleaseNotesDriverreleaseNotesDriver
 
+BOOL resumingInstallingUpdate
 
+BOOL resumingDownloadedUpdate
 
+BOOL preventsInstallerInteraction
 
+NSDictionary * httpHeaders
 
+NSString * userAgent
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUCoreBasedUpdateDriverDelegate>
+(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
 
+(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+(void) - coreDriverDidStartExtractingUpdate
 
+(void) - installerDidStartInstalling
 
+(void) - installerDidExtractUpdateWithProgress:
 
+(void) - installerIsSendingAppTerminationSignal
 
+(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.png new file mode 100644 index 0000000..7535928 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_i_based_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08-members.html new file mode 100644 index 0000000..60d54b3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUURLRequest() Member List
+
+
+ +

This is the complete list of members for SPUURLRequest(), including all inherited members.

+ + + + + + +
cachePolicy (defined in SPUURLRequest())SPUURLRequest()
httpHeaderFields (defined in SPUURLRequest())SPUURLRequest()
networkServiceType (defined in SPUURLRequest())SPUURLRequest()
timeoutInterval (defined in SPUURLRequest())SPUURLRequest()
url (defined in SPUURLRequest())SPUURLRequest()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08.html new file mode 100644 index 0000000..2224129 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_u_r_l_request_07_08.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: SPUURLRequest() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUURLRequest() Category Reference
+
+
+ + + + + + + + + + + + +

+Properties

+NSURL * url
 
+NSURLRequestCachePolicy cachePolicy
 
+NSTimeInterval timeoutInterval
 
+NSDictionary< NSString *, NSString * > * httpHeaderFields
 
+NSURLRequestNetworkServiceType networkServiceType
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08-members.html new file mode 100644 index 0000000..8a22fc1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08-members.html @@ -0,0 +1,98 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdater() Member List
+
+
+ +

This is the complete list of members for SPUUpdater(), including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
applicationBundle (defined in SPUUpdater())SPUUpdater()
delegate (defined in SPUUpdater())SPUUpdater()
driver (defined in SPUUpdater())SPUUpdater()
host (defined in SPUUpdater())SPUUpdater()
loggedATSWarning (defined in SPUUpdater())SPUUpdater()
loggedNoSecureKeyWarning (defined in SPUUpdater())SPUUpdater()
parameterizedFeedURL (defined in SPUUpdater())SPUUpdater()
resetUpdateCycle (defined in <SPUUpdaterCycleDelegate>)<SPUUpdaterCycleDelegate>
resumableUpdate (defined in SPUUpdater())SPUUpdater()
sessionInProgress (defined in SPUUpdater())SPUUpdater()
showingPermissionRequest (defined in SPUUpdater())SPUUpdater()
startedUpdater (defined in SPUUpdater())SPUUpdater()
updateLastCheckedDate (defined in SPUUpdater())SPUUpdater()
updaterCycle (defined in SPUUpdater())SPUUpdater()
updaterSettings (defined in SPUUpdater())SPUUpdater()
updaterTimer (defined in SPUUpdater())SPUUpdater()
updaterTimerDidFire (defined in <SPUUpdaterTimerDelegate>)<SPUUpdaterTimerDelegate>
userDriver (defined in SPUUpdater())SPUUpdater()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.html new file mode 100644 index 0000000..61e6b32 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.html @@ -0,0 +1,156 @@ + + + + + + + +Sparkle: SPUUpdater() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdater() Category Reference
+
+
+
+Inheritance diagram for SPUUpdater():
+
+
+ + +<SPUUpdaterCycleDelegate> +<SPUUpdaterTimerDelegate> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSURL * parameterizedFeedURL
 
+id< SPUUserDriveruserDriver
 
+id< SPUUpdaterDelegatedelegate
 
+id< SPUUpdateDriverdriver
 
+SUHosthost
 
+NSBundle * applicationBundle
 
+SPUUpdaterSettingsupdaterSettings
 
+SPUUpdaterCycleupdaterCycle
 
+SPUUpdaterTimerupdaterTimer
 
+BOOL startedUpdater
 
+id< SPUResumableUpdateresumableUpdate
 
+BOOL sessionInProgress
 
+BOOL showingPermissionRequest
 
+NSDate * updateLastCheckedDate
 
+BOOL loggedATSWarning
 
+BOOL loggedNoSecureKeyWarning
 
+ + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUpdaterCycleDelegate>
+(void) - resetUpdateCycle
 
- Instance Methods inherited from <SPUUpdaterTimerDelegate>
+(void) - updaterTimerDidFire
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.png new file mode 100644 index 0000000..3d64188 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08-members.html new file mode 100644 index 0000000..0f16752 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterCycle() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterCycle(), including all inherited members.

+ + +
delegate (defined in SPUUpdaterCycle())SPUUpdaterCycle()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08.html new file mode 100644 index 0000000..2c28441 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_cycle_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUpdaterCycle() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterCycle() Category Reference
+
+
+ + + + +

+Properties

+id< SPUUpdaterCycleDelegatedelegate
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08-members.html new file mode 100644 index 0000000..7a61ffe --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterSettings() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterSettings(), including all inherited members.

+ + +
host (defined in SPUUpdaterSettings())SPUUpdaterSettings()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08.html new file mode 100644 index 0000000..b9a1352 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_settings_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUpdaterSettings() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterSettings() Category Reference
+
+
+ + + + +

+Properties

+SUHosthost
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08-members.html new file mode 100644 index 0000000..5d444ad --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterTimer() Member List
+
+
+ +

This is the complete list of members for SPUUpdaterTimer(), including all inherited members.

+ + + +
delegate (defined in SPUUpdaterTimer())SPUUpdaterTimer()
source (defined in SPUUpdaterTimer())SPUUpdaterTimer()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08.html new file mode 100644 index 0000000..ef1add8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_updater_timer_07_08.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: SPUUpdaterTimer() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUpdaterTimer() Category Reference
+
+
+ + + + + + +

+Properties

+id< SPUUpdaterTimerDelegatedelegate
 
+dispatch_source_t source
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08-members.html new file mode 100644 index 0000000..6ec21c0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08-members.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserInitiatedUpdateDriver() Member List
+
+
+ +

This is the complete list of members for SPUUserInitiatedUpdateDriver(), including all inherited members.

+ + + + + + + + + + + +
aborted (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
showingUpdate (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
showingUserInitiatedProgress (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
uiDriver (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
userDriver (defined in SPUUserInitiatedUpdateDriver())SPUUserInitiatedUpdateDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.html new file mode 100644 index 0000000..633fc42 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: SPUUserInitiatedUpdateDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SPUUserInitiatedUpdateDriver() Category Reference
+
+
+
+Inheritance diagram for SPUUserInitiatedUpdateDriver():
+
+
+ + +<SPUUIBasedUpdateDriverDelegate> + +
+ + + + + + + + + + + + +

+Properties

+SPUUIBasedUpdateDriveruiDriver
 
+id< SPUUserDriveruserDriver
 
+BOOL showingUserInitiatedProgress
 
+BOOL showingUpdate
 
+BOOL aborted
 
+ + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUUIBasedUpdateDriverDelegate>
+(void) - basicDriverIsRequestingAbortUpdateWithError:
 
+(void) - coreDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverIsRequestingAbortUpdateWithError:
 
+(void) - uiDriverDidShowUpdate
 
+(void) - basicDriverDidFinishLoadingAppcast
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.png new file mode 100644 index 0000000..b851d4e Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_initiated_update_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.html new file mode 100644 index 0000000..5cdc6bf --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: SPUUserUpdateState() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserUpdateState() Category Reference
+
+
+
+Inheritance diagram for SPUUserUpdateState():
+
+
+ +
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.png new file mode 100644 index 0000000..f0bb0f2 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08-members.html new file mode 100644 index 0000000..4b1fd0d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserUpdateState(Private) Member List
+
+
+ +

This is the complete list of members for SPUUserUpdateState(Private), including all inherited members.

+ + +
initWithStage:userInitiated: (defined in SPUUserUpdateState(Private))SPUUserUpdateState(Private)
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08.html new file mode 100644 index 0000000..625e2c7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_p_u_user_update_state_07_private_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SPUUserUpdateState(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SPUUserUpdateState(Private) Category Reference
+
+
+ + + + +

+Instance Methods

+(instancetype) - initWithStage:userInitiated:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08-members.html new file mode 100644 index 0000000..2e50181 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcast() Member List
+
+
+ +

This is the complete list of members for SUAppcast(), including all inherited members.

+ + +
items (defined in SUAppcast())SUAppcast()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08.html new file mode 100644 index 0000000..57b58aa --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: SUAppcast() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcast() Category Reference
+
+
+ + + + +

+Properties

+NSArray< SUAppcastItem * > * items
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08-members.html new file mode 100644 index 0000000..6ddffee --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcast(Private) Member List
+
+
+ +

This is the complete list of members for SUAppcast(Private), including all inherited members.

+ + + +
copyByFilteringItems: (defined in SUAppcast(Private))SUAppcast(Private)
initWithXMLData:relativeToURL:stateResolver:error: (defined in SUAppcast(Private))SUAppcast(Private)
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08.html new file mode 100644 index 0000000..981065e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_07_private_08.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: SUAppcast(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SUAppcast(Private) Category Reference
+
+
+ + + + + + +

+Instance Methods

+(nullable instancetype) - initWithXMLData:relativeToURL:stateResolver:error:
 
+(SUAppcast *) - copyByFilteringItems:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08-members.html new file mode 100644 index 0000000..6fdc4ff --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastDriver() Member List
+
+
+ +

This is the complete list of members for SUAppcastDriver(), including all inherited members.

+ + + + + + + + + + + + +
delegate (defined in SUAppcastDriver())SUAppcastDriver()
downloadDriver (defined in SUAppcastDriver())SUAppcastDriver()
downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
host (defined in SUAppcastDriver())SUAppcastDriver()
updater (defined in SUAppcastDriver())SUAppcastDriver()
updaterDelegate (defined in SUAppcastDriver())SUAppcastDriver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.html new file mode 100644 index 0000000..ab273e0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.html @@ -0,0 +1,133 @@ + + + + + + + +Sparkle: SUAppcastDriver() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcastDriver() Category Reference
+
+
+
+Inheritance diagram for SUAppcastDriver():
+
+
+ + +<SPUDownloadDriverDelegate> + +
+ + + + + + + + + + + + +

+Properties

+SUHosthost
 
+id updater
 
+id< SPUUpdaterDelegateupdaterDelegate
 
+id< SUAppcastDriverDelegatedelegate
 
+SPUDownloadDriverdownloadDriver
 
+ + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUDownloadDriverDelegate>
+(void) - downloadDriverDidFailToDownloadFileWithError:
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidDownloadUpdate:
 
+(void) - downloadDriverDidDownloadData:
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.png new file mode 100644 index 0000000..0b81663 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_driver_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08-members.html new file mode 100644 index 0000000..5e8de34 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastItem() Member List
+
+
+ +

This is the complete list of members for SUAppcastItem(), including all inherited members.

+ + + + +
hasCriticalInformation (defined in SUAppcastItem())SUAppcastItem()
informationalUpdateVersions (defined in SUAppcastItem())SUAppcastItem()
state (defined in SUAppcastItem())SUAppcastItem()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08.html new file mode 100644 index 0000000..9400d88 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_08.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: SUAppcastItem() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUAppcastItem() Category Reference
+
+
+ + + + + + + + +

+Properties

+SPUAppcastItemStatestate
 
+BOOL hasCriticalInformation
 
+NSSet< NSString * > * informationalUpdateVersions
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08-members.html new file mode 100644 index 0000000..deee458 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastItem(Private) Member List
+
+
+ +

This is the complete list of members for SUAppcastItem(Private), including all inherited members.

+ + +
initWithDictionary:relativeToURL:stateResolver:failureReason:SUAppcastItem(Private)
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.html new file mode 100644 index 0000000..eeb3938 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.html @@ -0,0 +1,142 @@ + + + + + + + +Sparkle: SUAppcastItem(Private) Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Instance Methods | +List of all members
+
+
SUAppcastItem(Private) Category Reference
+
+
+
+Inheritance diagram for SUAppcastItem(Private):
+
+
+ +
+ + + + + +

+Instance Methods

(nullable instancetype) - initWithDictionary:relativeToURL:stateResolver:failureReason:
 Initializes with data from a dictionary provided by the RSS class and state resolver. More...
 
+

Method Documentation

+ +

◆ initWithDictionary:relativeToURL:stateResolver:failureReason:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- (nullable instancetype) initWithDictionary: (NSDictionary *) dict
relativeToURL:(NSURL *_Nullable) appcastURL
stateResolver:(SPUAppcastItemStateResolver *) stateResolver
failureReason:(NSString *_Nullable __autoreleasing *_Nullable) error 
+
+ +

Initializes with data from a dictionary provided by the RSS class and state resolver.

+

This initializer method is intended to be marked "private" and discouraged from public usage. This method is available however. Talk to us to describe your use case and if you need to construct appcast items yourself.

+ +

Extends class SUAppcastItem.

+ +
+
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.png new file mode 100644 index 0000000..6697482 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_appcast_item_07_private_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08-members.html new file mode 100644 index 0000000..b8dd888 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUHost() Member List
+
+
+ +

This is the complete list of members for SUHost(), including all inherited members.

+ + + + + + +
bundle (defined in SUHost())SUHost()
defaultsDomain (defined in SUHost())SUHost()
isMainBundle (defined in SUHost())SUHost()
publicDSAKey (defined in SUHost())SUHost()
usesStandardUserDefaults (defined in SUHost())SUHost()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08.html new file mode 100644 index 0000000..7cc9fce --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_host_07_08.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: SUHost() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUHost() Category Reference
+
+
+ + + + + + + + + + + + +

+Properties

+NSBundle * bundle
 
+BOOL isMainBundle
 
+NSString * defaultsDomain
 
+BOOL usesStandardUserDefaults
 
+NSString * publicDSAKey
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08-members.html new file mode 100644 index 0000000..f41f218 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUStatusController() Member List
+
+
+ +

This is the complete list of members for SUStatusController(), including all inherited members.

+ + + + + +
buttonTitle (defined in SUStatusController())SUStatusController()protected
host (defined in SUStatusController())SUStatusController()
title (defined in SUStatusController())SUStatusController()
touchBarButton (defined in SUStatusController())SUStatusController()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.html new file mode 100644 index 0000000..ad4cb83 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: SUStatusController() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUStatusController() Category Reference
+
+
+
+Inheritance diagram for SUStatusController():
+
+
+ +
+ + + + + + + + + + +

+Properties

+NSString * title
 
+NSString * buttonTitle
 
+SUHosthost
 
+NSButton * touchBarButton
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.png new file mode 100644 index 0000000..8428f6b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_status_controller_07_08.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08-members.html new file mode 100644 index 0000000..0dace5c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUUpdateValidator() Member List
+
+
+ +

This is the complete list of members for SUUpdateValidator(), including all inherited members.

+ + + + + +
downloadPath (defined in SUUpdateValidator())SUUpdateValidator()
host (defined in SUUpdateValidator())SUUpdateValidator()
prevalidatedSignature (defined in SUUpdateValidator())SUUpdateValidator()
signatures (defined in SUUpdateValidator())SUUpdateValidator()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08.html new file mode 100644 index 0000000..ced5b5d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_s_u_update_validator_07_08.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: SUUpdateValidator() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
SUUpdateValidator() Category Reference
+
+
+ + + + + + + + + + +

+Properties

+SUHosthost
 
+BOOL prevalidatedSignature
 
+SUSignaturessignatures
 
+NSString * downloadPath
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08-members.html new file mode 100644 index 0000000..42cca1e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
ShowInstallerProgress() Member List
+
+
+ +

This is the complete list of members for ShowInstallerProgress(), including all inherited members.

+ + +
statusController (defined in ShowInstallerProgress())ShowInstallerProgress()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08.html new file mode 100644 index 0000000..803990b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_show_installer_progress_07_08.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: ShowInstallerProgress() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
ShowInstallerProgress() Category Reference
+
+
+ + + + +

+Properties

+SUStatusControllerstatusController
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08-members.html new file mode 100644 index 0000000..fbfb9c7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
TerminationListener() Member List
+
+
+ +

This is the complete list of members for TerminationListener(), including all inherited members.

+ + + + +
completionBlock (defined in TerminationListener())TerminationListener()
processIdentifier (defined in TerminationListener())TerminationListener()
watchedTermination (defined in TerminationListener())TerminationListener()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08.html new file mode 100644 index 0000000..18533d4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/category_termination_listener_07_08.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: TerminationListener() Category Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+Properties | +List of all members
+
+
TerminationListener() Category Reference
+
+
+ + + + + + + + +

+Properties

+NSNumber * processIdentifier
 
+BOOL watchedTermination
 
+void(^ completionBlock )(BOOL)
 
+
The documentation for this category was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/classes.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/classes.html new file mode 100644 index 0000000..a871d2a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/classes.html @@ -0,0 +1,670 @@ + + + + Classes Reference + + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+

Classes

+

The following classes are available globally.

+ +
+
+
+
    +
  • +
    + + + + SPUDownloadData + +
    +
    +
    +
    +
    +
    +

    A class for containing downloaded data along with some information about it.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUDownloadData : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SPUDownloadData : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

    + +

    This class can be instantiated in a nib or created programatically using -initWithUpdaterDelegate:userDriverDelegate: or -initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

    + +

    The controller’s updater targets the application’s main bundle and uses Sparkle’s standard user interface. +Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

    + +

    The controller creates an SPUUpdater instance using a SPUStandardUserDriver and allows hooking up the check for updates action and handling menu item validation. +It also allows hooking up the updater’s and user driver’s delegates.

    + +

    If you need more control over what bundle you want to update, or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUStandardUpdaterController : NSObject
    + +
    +
    +

    Swift

    +
    class SPUStandardUpdaterController : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUStandardUserDriver + +
    +
    +
    +
    +
    +
    +

    Sparkle’s standard built-in user driver for updater interactions

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUStandardUserDriver : NSObject <SPUUserDriver>
    + +
    +
    +

    Swift

    +
    class SPUStandardUserDriver : NSObject, SPUUserDriver
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    This class represents information needed to make a permission request for checking updates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdatePermissionRequest : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SPUUpdatePermissionRequest : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdater + +
    +
    +
    +
    +
    +
    +

    The main API in Sparkle for controlling the update mechanism.

    + +

    This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

    + +

    For convenience, you can create a standard or nib instantiable updater by using SPUStandardUpdaterController.

    + +

    Prefer to set initial properties in your bundle’s Info.plist as described in Customizing Sparkle.

    + +

    Otherwise only if you need dynamic behavior (eg. for user preferences) should you set properties on the updater such as:

    + +
      +
    • automaticallyChecksForUpdates
    • +
    • updateCheckInterval
    • +
    • automaticallyDownloadsUpdates
    • +
    • feedURL
    • +
    + +

    Please view the documentation on each of these properties for more detail if you are to configure them dynamically.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdater : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUpdater : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUpdaterSettings + +
    +
    +
    +
    +
    +
    +

    This class can be used for reading certain updater settings.

    + +

    It retrieves the settings by first looking into the host’s user defaults. +If the setting is not found in there, then the host’s Info.plist file is looked at.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUpdaterSettings : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUpdaterSettings : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SPUUserUpdateState + +
    +
    +
    +
    +
    +
    +

    This represents the user’s current update state.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SPUUserUpdateState : NSObject
    + +
    +
    +

    Swift

    +
    class SPUUserUpdateState : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcast + +
    +
    +
    +
    +
    +
    +

    The appcast representing a collection of SUAppcastItem items in the feed.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUAppcast : NSObject
    + +
    +
    +

    Swift

    +
    class SUAppcast : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUAppcastItem + +
    +
    +
    +
    +
    +
    +

    The appcast item describing an update in the application’s appcast feed.

    + +

    An appcast item represents a single update item in the SUAppcast contained within the <item> element.

    + +

    Every appcast item must have a versionString, and either a fileURL or an infoURL. +All the remaining properties describing an update to the application are optional.

    + +

    Extended documentation and examples on using appcast item features are available at: +https://sparkle-project.org/documentation/publishing/

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUAppcastItem : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SUAppcastItem : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Sparkle’s default version comparator.

    + +

    This comparator is adapted from MacPAD, by Kevin Ballard. +It’s “dumb” in that it does essentially string comparison, +in components split by character type.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUStandardVersionComparator : NSObject <SUVersionComparison>
    + +
    +
    +

    Swift

    +
    class SUStandardVersionComparator : NSObject, SUVersionComparison
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    This class represents a response for permission to check updates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @interface SUUpdatePermissionResponse : NSObject <NSSecureCoding>
    + +
    +
    +

    Swift

    +
    class SUUpdatePermissionResponse : NSObject, NSSecureCoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SUUpdater + +
    +
    +
    +
    +
    +
    +

    Deprecated

    +

    Deprecated in Sparkle 2. Use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

    + +
    +
    +

    The legacy API in Sparkle for controlling the update mechanism.

    + +

    This class is now deprecated and acts as a thin wrapper around SPUUpdater and SPUStandardUserDriver.

    + +

    If you are migrating to Sparkle 2, use SPUStandardUpdaterController instead, or SPUUpdater if you need more control.

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    
    +@interface SUUpdater : NSObject
    + +
    +
    +

    Swift

    +
    class SUUpdater : NSObject
    + +
    +
    +
    +
    +
  • +
+
+
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/closed.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/closed.png new file mode 100644 index 0000000..98cc2c9 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/closed.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/highlight.css b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/highlight.css new file mode 100644 index 0000000..d0db0e1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/highlight.css @@ -0,0 +1,200 @@ +/* Credit to https://gist.github.com/wataru420/2048287 */ +.highlight { + /* Comment */ + /* Error */ + /* Keyword */ + /* Operator */ + /* Comment.Multiline */ + /* Comment.Preproc */ + /* Comment.Single */ + /* Comment.Special */ + /* Generic.Deleted */ + /* Generic.Deleted.Specific */ + /* Generic.Emph */ + /* Generic.Error */ + /* Generic.Heading */ + /* Generic.Inserted */ + /* Generic.Inserted.Specific */ + /* Generic.Output */ + /* Generic.Prompt */ + /* Generic.Strong */ + /* Generic.Subheading */ + /* Generic.Traceback */ + /* Keyword.Constant */ + /* Keyword.Declaration */ + /* Keyword.Pseudo */ + /* Keyword.Reserved */ + /* Keyword.Type */ + /* Literal.Number */ + /* Literal.String */ + /* Name.Attribute */ + /* Name.Builtin */ + /* Name.Class */ + /* Name.Constant */ + /* Name.Entity */ + /* Name.Exception */ + /* Name.Function */ + /* Name.Namespace */ + /* Name.Tag */ + /* Name.Variable */ + /* Operator.Word */ + /* Text.Whitespace */ + /* Literal.Number.Float */ + /* Literal.Number.Hex */ + /* Literal.Number.Integer */ + /* Literal.Number.Oct */ + /* Literal.String.Backtick */ + /* Literal.String.Char */ + /* Literal.String.Doc */ + /* Literal.String.Double */ + /* Literal.String.Escape */ + /* Literal.String.Heredoc */ + /* Literal.String.Interpol */ + /* Literal.String.Other */ + /* Literal.String.Regex */ + /* Literal.String.Single */ + /* Literal.String.Symbol */ + /* Name.Builtin.Pseudo */ + /* Name.Variable.Class */ + /* Name.Variable.Global */ + /* Name.Variable.Instance */ + /* Literal.Number.Integer.Long */ } + .highlight .c { + color: #999988; + font-style: italic; } + .highlight .err { + color: #a61717; + background-color: #e3d2d2; } + .highlight .k { + color: #000000; + font-weight: bold; } + .highlight .o { + color: #000000; + font-weight: bold; } + .highlight .cm { + color: #999988; + font-style: italic; } + .highlight .cp { + color: #999999; + font-weight: bold; } + .highlight .c1 { + color: #999988; + font-style: italic; } + .highlight .cs { + color: #999999; + font-weight: bold; + font-style: italic; } + .highlight .gd { + color: #000000; + background-color: #ffdddd; } + .highlight .gd .x { + color: #000000; + background-color: #ffaaaa; } + .highlight .ge { + color: #000000; + font-style: italic; } + .highlight .gr { + color: #aa0000; } + .highlight .gh { + color: #999999; } + .highlight .gi { + color: #000000; + background-color: #ddffdd; } + .highlight .gi .x { + color: #000000; + background-color: #aaffaa; } + .highlight .go { + color: #888888; } + .highlight .gp { + color: #555555; } + .highlight .gs { + font-weight: bold; } + .highlight .gu { + color: #aaaaaa; } + .highlight .gt { + color: #aa0000; } + .highlight .kc { + color: #000000; + font-weight: bold; } + .highlight .kd { + color: #000000; + font-weight: bold; } + .highlight .kp { + color: #000000; + font-weight: bold; } + .highlight .kr { + color: #000000; + font-weight: bold; } + .highlight .kt { + color: #445588; } + .highlight .m { + color: #009999; } + .highlight .s { + color: #d14; } + .highlight .na { + color: #008080; } + .highlight .nb { + color: #0086B3; } + .highlight .nc { + color: #445588; + font-weight: bold; } + .highlight .no { + color: #008080; } + .highlight .ni { + color: #800080; } + .highlight .ne { + color: #990000; + font-weight: bold; } + .highlight .nf { + color: #990000; } + .highlight .nn { + color: #555555; } + .highlight .nt { + color: #000080; } + .highlight .nv { + color: #008080; } + .highlight .ow { + color: #000000; + font-weight: bold; } + .highlight .w { + color: #bbbbbb; } + .highlight .mf { + color: #009999; } + .highlight .mh { + color: #009999; } + .highlight .mi { + color: #009999; } + .highlight .mo { + color: #009999; } + .highlight .sb { + color: #d14; } + .highlight .sc { + color: #d14; } + .highlight .sd { + color: #d14; } + .highlight .s2 { + color: #d14; } + .highlight .se { + color: #d14; } + .highlight .sh { + color: #d14; } + .highlight .si { + color: #d14; } + .highlight .sx { + color: #d14; } + .highlight .sr { + color: #009926; } + .highlight .s1 { + color: #d14; } + .highlight .ss { + color: #990073; } + .highlight .bp { + color: #999999; } + .highlight .vc { + color: #008080; } + .highlight .vg { + color: #008080; } + .highlight .vi { + color: #008080; } + .highlight .il { + color: #009999; } diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/jazzy.css b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/jazzy.css new file mode 100644 index 0000000..b1d61a4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/css/jazzy.css @@ -0,0 +1,412 @@ +html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td { + background: transparent; + border: 0; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; } + +body { + background-color: #fff; + font-family: -apple-system, Helvetica, freesans, Arial, sans-serif; + font-size: 16px; + line-height: 1.6; + -webkit-font-smoothing: subpixel-antialiased; + word-wrap: break-word; + min-height: 100vh; } + +h1, h2, h3 { + margin-top: 0.8em; + margin-bottom: 0.3em; + font-weight: 400; + color: black; } + +h1 { + font-size: 2.5em; } + +h2 { + font-size: 2em; + border-bottom: 1px solid #e2e2e2; } + +h4 { + font-size: 13px; + line-height: 1.5; + margin-top: 21px; } + +h5 { + font-size: 1.1em; } + +h6 { + font-size: 1.1em; + color: #777; } + +@media screen and (max-width: 767px) { + h1 { + font-size: 1.75em; } + h2 { + font-size: 1.4em; } } + +pre, code { + font-family: "SF Mono", Menlo, monospace; + font-size: 0.95em; + color: #777; + word-wrap: normal; } + +pre { + line-height: 1.6; } + +a { + color: #0088cc; + text-decoration: none; } + a code { + color: inherit; } + +ul { + padding-left: 15px; } + +li { + line-height: 1.8em; } + +img { + max-width: 100%; } + +blockquote { + margin-left: 0; + padding: 0 10px; + border-left: 4px solid #ccc; } + +hr { + height: 1px; + border: none; + background-color: #e2e2e2; } + +.footnote-ref { + display: inline-block; + scroll-margin-top: 87px; } + +.footnote-def { + scroll-margin-top: 87px; } + +.content-wrapper { + margin: 0 auto; + width: calc(100% - 32px); + max-width: 980px; } + +.wrapper { + display: flex; + flex-direction: column; + min-height: inherit; + overflow: auto; } + +.article-wrapper > *, +.nav-wrapper > *, +.footer-wrapper > * { + margin: 0 auto; + width: calc(100% - 32px); + max-width: 980px; } + +.article-wrapper { + flex: 1; + background-color: #fff; } + +.nav-wrapper { + background-color: #fafafa; } + +.footer-wrapper { + background-color: #f2f2f2; } + +header { + line-height: 48px; + background-color: #2C2C2C; + position: fixed; + width: 100%; + z-index: 3; } + header img { + padding-right: 6px; + vertical-align: -4px; + height: 16px; } + header a { + color: #fff; } + header p { + float: left; + color: #999; } + header .header-right { + float: right; + margin-left: 16px; } + +#breadcrumbs-container { + background-color: #2C2C2C; + position: fixed; + z-index: 2; + width: 100%; } + +#breadcrumbs { + color: rgba(255, 255, 255, 0.6); + height: 29px; + padding-bottom: 10px; + width: 100%; + margin-top: 48px; + white-space: nowrap; + overflow-x: scroll; } + #breadcrumbs #carat { + height: 10px; + margin: 0 5px; } + #breadcrumbs a { + color: white; } + +@media screen and (max-width: 767px) { + #breadcrumbs { + color: white; } } + +.nav-groups { + list-style-type: none; + padding-left: 0; } + +.nav-group-name { + font-size: 1.5rem; + font-weight: 500; + padding: 20px 0; } + .nav-group-name:not(:last-child) { + border-bottom: 1px solid #e2e2e2; } + .nav-group-name > a { + color: #333; } + +.nav-group-tasks { + column-count: 2; + list-style: none; + padding: 0; + margin-top: 5px; } + +.nav-group-task { + font-size: 1.1rem; + font-weight: 400; } + .nav-group-task a { + color: #888; } + +@media screen and (max-width: 767px) { + .nav-group-tasks { + column-count: 1; } } + +.main-content { + overflow: hidden; + padding-bottom: 60px; + margin-top: 87px; } + .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote { + margin-bottom: 1em; } + .main-content p { + line-height: 1.5; } + .main-content section { + max-width: 750px; } + .main-content section .section:first-child { + margin-top: 0; + padding-top: 0; } + .main-content section .task-group-section .task-group:first-of-type { + padding-top: 10px; } + .main-content section .task-group-section .task-group:first-of-type .section-name { + padding-top: 15px; } + .main-content section .heading:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + .main-content .section-name p { + margin-bottom: inherit; + line-height: inherit; } + .main-content .section-name code { + color: inherit; } + +.highlight { + background-color: #eee; + padding: 10px 12px; + border: 1px solid #e2e2e2; + border-radius: 4px; + overflow-x: auto; } + +.declaration .highlight { + overflow-x: initial; + padding: 0 40px 40px 0; + margin-bottom: -25px; + background-color: transparent; + border: none; } + +.section-name { + font-size: 1.5rem; + font-weight: 500; + margin: 0; } + +.task-group-section { + margin-top: 10px; + border-top: 1px solid #e2e2e2; } + +.task-group { + padding-top: 0px; } + .task-group > ul { + padding-left: 0; } + +.task-name-container a[name]:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + +.section-name-container { + position: relative; + display: inline-block; } + .section-name-container .section-name-link { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin-bottom: 0; } + .section-name-container .section-name { + position: relative; + pointer-events: none; + z-index: 1; } + .section-name-container .section-name a { + pointer-events: auto; } + +.item { + padding-top: 8px; + width: 100%; + list-style-type: none; } + .item a[name]:before { + content: ""; + display: block; + padding-top: 87px; + margin: -87px 0 0; } + .item code { + background-color: transparent; + padding: 0; } + .item .token, .item .direct-link { + display: inline-block; + text-indent: -20px; + padding-left: 3px; + margin-left: 55px; + transition: all 300ms; } + .item .discouraged { + text-decoration: line-through; } + .item .token-open { + margin-left: 45px; } + .item .declaration-note { + font-size: .85em; + color: gray; + font-style: italic; } + +.pointer-container { + left: -23px; + padding-bottom: 13px; + position: relative; + width: 110%; } + +.pointer { + background: #f9f9f9; + border-left: 1px solid #e2e2e2; + border-top: 1px solid #e2e2e2; + height: 12px; + left: 21px; + top: -7px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + width: 12px; } + +.height-container { + display: none; + position: relative; + width: 100%; + overflow: hidden; } + .height-container .section { + position: relative; + background: #f9f9f9; + width: 100%; + padding: 10px 25px; + border: 1px solid #e2e2e2; + border-radius: 8px; + box-sizing: border-box; } + +.aside, .language { + padding: 6px 12px; + margin: 12px 0; + border-left: 5px solid #dddddd; + overflow-y: hidden; } + .aside .aside-title, .language .aside-title { + font-size: 12px; + font-weight: 600; + letter-spacing: 2px; + text-transform: uppercase; + padding-bottom: 0; + margin: 0; + color: #aaa; + -webkit-user-select: none; } + .aside p:last-child, .language p:last-child { + margin-bottom: 0; } + +.language { + border-left: 5px solid #cde9f4; } + .language .aside-title { + color: #4b8afb; } + +.aside-warning, .aside-deprecated, .aside-unavailable { + border-left: 5px solid #ff6666; } + .aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title { + color: #ff0000; } + +.graybox { + border-collapse: collapse; + width: 100%; } + .graybox p { + margin: 0; + word-break: break-word; + min-width: 50px; } + .graybox td { + border: 1px solid #e2e2e2; + padding: 5px 25px 5px 10px; + vertical-align: middle; } + .graybox tr td:first-of-type { + text-align: right; + padding: 7px; + vertical-align: top; + word-break: normal; + width: 40px; } + +.slightly-smaller { + font-size: 0.9em; } + +#footer { + padding: 25px 0; + box-sizing: border-box; } + #footer p { + margin: 0; + color: #aaa; + font-size: 0.8em; } + +html.dash header, html.dash #breadcrumbs { + display: none; } + +html.dash .main-content { + width: calc(100% - 32px); + max-width: 980px; + margin-left: 0; + border: none; + width: 100%; + top: 0; + padding-bottom: 0; } + +html.dash .height-container { + display: block; } + +html.dash .item .token { + margin-left: 0; } + +html.dash .content-wrapper { + width: auto; } + +html.dash #footer { + position: static; } + +@media screen and (max-width: 767px) { + .no-mobile { + display: none; } } diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_3429d7ca3cc00bc309a2ec9474a0a508.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_3429d7ca3cc00bc309a2ec9474a0a508.html new file mode 100644 index 0000000..d761f11 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_3429d7ca3cc00bc309a2ec9474a0a508.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Sparkle Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Sparkle Directory Reference
+
+
+ + +

+Directories

+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html new file mode 100644 index 0000000..a5e3a1f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_9735f67ecdf0c41f32abd6fc1aab85b9.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Sparkle/Autoupdate Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Autoupdate Directory Reference
+
+
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_e955798b210d66193b03eac1f9f3f1d5.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_e955798b210d66193b03eac1f9f3f1d5.html new file mode 100644 index 0000000..132c842 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dir_e955798b210d66193b03eac1f9f3f1d5.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Sparkle/InstallerProgress Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
InstallerProgress Directory Reference
+
+
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doc.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doc.png new file mode 100644 index 0000000..17edabf Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doc.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.css b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.css new file mode 100644 index 0000000..ffbff02 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.css @@ -0,0 +1,1793 @@ +/* The standard CSS for doxygen 1.9.1 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +p.reference, p.definition { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.navtab { + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; +} + +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +.contents a.qindexHL:visited { + color: #FFFFFF; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #FFFFFF; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +blockquote.DocNodeRTL { + border-left: 0; + border-right: 2px solid #9CAFD4; + margin: 0 4px 0 24px; + padding: 0 16px 0 12px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */ +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.section.DocNodeRTL { + margin-right: 0px; + padding-right: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.note.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.warning.DocNodeRTL, dl.attention.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.deprecated.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.todo.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.test.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +dl.bug.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +.PageDocRTL-title div.toc { + float: left !important; + text-align: right; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +.PageDocRTL-title div.toc li { + background-position-x: right !important; + padding-left: 0 !important; + padding-right: 10px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +.PageDocRTL-title div.toc li.level1 { + margin-left: 0 !important; + margin-right: 0; +} + +.PageDocRTL-title div.toc li.level2 { + margin-left: 0 !important; + margin-right: 15px; +} + +.PageDocRTL-title div.toc li.level3 { + margin-left: 0 !important; + margin-right: 30px; +} + +.PageDocRTL-title div.toc li.level4 { + margin-left: 0 !important; + margin-right: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +.DocNodeRTL { + text-align: right; + direction: rtl; +} + +.DocNodeLTR { + text-align: left; + direction: ltr; +} + +table.DocNodeRTL { + width: auto; + margin-right: 0; + margin-left: auto; +} + +table.DocNodeLTR { + width: auto; + margin-right: auto; + margin-left: 0; +} + +tt, code, kbd, samp +{ + display: inline-block; + direction:ltr; +} +/* @end */ + +u { + text-decoration: underline; +} + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.svg b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.svg new file mode 100644 index 0000000..d42dad5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dynsections.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dynsections.js new file mode 100644 index 0000000..3174bd7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/dynsections.js @@ -0,0 +1,121 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + + +Sparkle: File List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+
[detail level 123]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Sparkle
  Autoupdate
 TerminationListener.h
  InstallerProgress
 InstallerProgressAppController.h
 InstallerProgressDelegate.h
 ShowInstallerProgress.h
 SPUInstallerAgentProtocol.h
 SUInstallerAgentInitiationProtocol.h
 AppKitPrevention.h
 Sparkle.h
 SPUAppcastItemState.h
 SPUAppcastItemStateResolver+Private.h
 SPUAppcastItemStateResolver.h
 SPUAutomaticUpdateDriver.h
 SPUBasicUpdateDriver.h
 SPUCoreBasedUpdateDriver.h
 SPUDownloadData.h
 SPUDownloadDriver.h
 SPUDownloadedUpdate.h
 SPUInformationalUpdate.h
 SPUInstallationType.h
 SPUInstallerDriver.h
 SPULocalCacheDirectory.h
 SPUProbeInstallStatus.h
 SPUProbingUpdateDriver.h
 SPUResumableUpdate.h
 SPUScheduledUpdateDriver.h
 SPUSecureCoding.h
 SPUSkippedUpdate.h
 SPUStandardUpdaterController.h
 SPUStandardUserDriver.h
 SPUStandardUserDriverDelegate.h
 SPUUIBasedUpdateDriver.h
 SPUUpdateDriver.h
 SPUUpdatePermissionRequest.h
 SPUUpdater.h
 SPUUpdaterCycle.h
 SPUUpdaterDelegate.h
 SPUUpdaterSettings.h
 SPUUpdaterTimer.h
 SPUURLRequest.h
 SPUUserDriver.h
 SPUUserInitiatedUpdateDriver.h
 SPUUserUpdateState+Private.h
 SPUUserUpdateState.h
 SPUXPCServiceInfo.h
 SUAppcast+Private.h
 SUAppcast.h
 SUAppcastDriver.h
 SUAppcastItem+Private.h
 SUAppcastItem.h
 SUApplicationInfo.h
 SUBundleIcon.h
 SUConstants.h
 SUErrors.h
 SUExport.h
 SUFileManager.h
 SUHost.h
 SUInstallerProtocol.h
 SULegacyWebView.h
 SULocalizations.h
 SULog+NSError.h
 SULog.h
 SUNormalization.h
 SUOperatingSystem.h
 SUPhasedUpdateGroupInfo.h
 SUSignatures.h
 SUStandardVersionComparator.h
 SUStatusController.h
 SUSystemProfiler.h
 SUTouchBarButtonGroup.h
 SUTouchBarForwardDeclarations.h
 SUUpdateAlert.h
 SUUpdatePermissionPrompt.h
 SUUpdatePermissionResponse.h
 SUUpdater.h
 SUUpdaterDelegate.h
 SUUpdateValidator.h
 SUVersionComparisonProtocol.h
 SUVersionDisplayProtocol.h
 SUWebView.h
 SUWebViewCommon.h
 SUWKWebView.h
+
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderclosed.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderclosed.png new file mode 100644 index 0000000..bb8ab35 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderclosed.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderopen.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderopen.png new file mode 100644 index 0000000..d6c7f67 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/folderopen.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions.html new file mode 100644 index 0000000..7027702 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions.html @@ -0,0 +1,463 @@ + + + + + + + +Sparkle: Class Members + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- a -

+ + +

- b -

+ + +

- c -

+ + +

- d -

+ + +

- f -

+ + +

- h -

+ + +

- i -

+ + +

- l -

+ + +

- m -

+ + +

- n -

+ + +

- r -

+ + +

- s -

+ + +

- t -

+ + +

- u -

+ + +

- v -

+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_func.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_func.html new file mode 100644 index 0000000..14e54bb --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_func.html @@ -0,0 +1,369 @@ + + + + + + + +Sparkle: Class Members - Functions + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+  + +

- a -

+ + +

- b -

+ + +

- c -

+ + +

- d -

+ + +

- f -

+ + +

- i -

+ + +

- m -

+ + +

- n -

+ + +

- r -

+ + +

- s -

+ + +

- u -

+ + +

- v -

+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_prop.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_prop.html new file mode 100644 index 0000000..e31589a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/functions_prop.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: Class Members - Properties + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/hierarchy.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/hierarchy.html new file mode 100644 index 0000000..beb07f3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/hierarchy.html @@ -0,0 +1,210 @@ + + + + + + + +Sparkle: Class Hierarchy + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
Class Hierarchy
+
+
+
This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 123]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 C<NSApplicationDelegate>
 CNSButton(SierraSDK)
 CNSData(SUSignatureVerifier)
 CNSObject
 CNSObject(PrivateDelegateMethods)
 C<NSObject>
 CNSOperatingSystemVersion
 CNSProcessInfo()
 C<NSSecureCoding>
 C<NSTouchBarDelegate>
 CNSViewController
 CNSWindowController
 CShowInstallerProgress()
 C<SPUDownloaderDelegate>
 C<SPUInstallerAgentProtocol>
 CSPUUpdaterCycle()
 CSPUUpdaterSettings()
 CSPUUpdaterTimer()
 CSPUURLRequest()
 CSPUUserUpdateState(Private)
 CSUAppcast()
 CSUAppcast(Private)
 CSUAppcastItem()
 CSUHost()
 C<SUInstallerAgentInitiationProtocol>
 C<SUInstallerCommunicationProtocol>
 CSUUpdateValidator()
 C<SUVersionComparison>Provides version comparison facilities for Sparkle
 C<SUVersionDisplay>Applies special display formatting to version numbers
 CTerminationListener()
+
+
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/icon_32x32@2x.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/icon_32x32@2x.png new file mode 100644 index 0000000..aef9fc4 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/icon_32x32@2x.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/carat.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/carat.png new file mode 100755 index 0000000..29d2f7f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/carat.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/dash.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/dash.png new file mode 100755 index 0000000..6f694c7 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/dash.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/gh.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/gh.png new file mode 100755 index 0000000..628da97 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/gh.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/spinner.gif b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/spinner.gif new file mode 100644 index 0000000..e3038d0 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/img/spinner.gif differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/index.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/index.html new file mode 100644 index 0000000..2cfaea8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/index.html @@ -0,0 +1,228 @@ + + + + Sparkle Reference + + + + + + + + + + +
+
+

+ Sparkle 2.0.0-beta.1 Docs + (58% documented) +

+ + +
+
+ +
+
+
+
+
+ +

Sparkle 2 API Reference

+ +

These are the primary classes and protocols in Sparkle 2 you may be interested in:

+ + + +

If you are migrating from Sparkle 1, please refer to SPUStandardUpdaterController and SPUUpdater.

+ +

Please also visit the Basic Setup guide which shows how to instantiate an updater in a nib or how to create one programmatically.

+ +
+
+
+
+ + +
+ + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller-members.html new file mode 100644 index 0000000..85132cf --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
InstallerProgressAppController Member List
+
+
+ +

This is the complete list of members for InstallerProgressAppController, including all inherited members.

+ + + + +
cleanupAndExitWithStatus:error: (defined in InstallerProgressAppController)InstallerProgressAppController
initWithApplication:arguments:delegate: (defined in InstallerProgressAppController)InstallerProgressAppController
run (defined in InstallerProgressAppController)InstallerProgressAppController
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.html new file mode 100644 index 0000000..53b071f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: InstallerProgressAppController Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
InstallerProgressAppController Class Reference
+
+
+
+Inheritance diagram for InstallerProgressAppController:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithApplication:arguments:delegate:
 
+(void) - run
 
+(void) - cleanupAndExitWithStatus:error:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.png new file mode 100644 index 0000000..0d6253c Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_installer_progress_app_controller.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state-members.html new file mode 100644 index 0000000..6776f82 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAppcastItemState Member List
+
+
+ +

This is the complete list of members for SPUAppcastItemState, including all inherited members.

+ + + + + + + + +
criticalUpdate (defined in SPUAppcastItemState)SPUAppcastItemState
informationalUpdate (defined in SPUAppcastItemState)SPUAppcastItemState
initWithMajorUpgrade:criticalUpdate:informationalUpdate:minimumOperatingSystemVersionIsOK:maximumOperatingSystemVersionIsOK: (defined in SPUAppcastItemState)SPUAppcastItemState
majorUpgrade (defined in SPUAppcastItemState)SPUAppcastItemState
maximumOperatingSystemVersionIsOK (defined in SPUAppcastItemState)SPUAppcastItemState
minimumOperatingSystemVersionIsOK (defined in SPUAppcastItemState)SPUAppcastItemState
NS_UNAVAILABLE (defined in SPUAppcastItemState)SPUAppcastItemState
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.html new file mode 100644 index 0000000..e34ade9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.html @@ -0,0 +1,119 @@ + + + + + + + +Sparkle: SPUAppcastItemState Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUAppcastItemState Class Reference
+
+
+
+Inheritance diagram for SPUAppcastItemState:
+
+
+ +
+ + + + + + +

+Instance Methods

+(instancetype) - NS_UNAVAILABLE
 
+(instancetype) - initWithMajorUpgrade:criticalUpdate:informationalUpdate:minimumOperatingSystemVersionIsOK:maximumOperatingSystemVersionIsOK:
 
+ + + + + + + + + + + +

+Properties

+BOOL majorUpgrade
 
+BOOL criticalUpdate
 
+BOOL informationalUpdate
 
+BOOL minimumOperatingSystemVersionIsOK
 
+BOOL maximumOperatingSystemVersionIsOK
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.png new file mode 100644 index 0000000..f44cdef Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver-members.html new file mode 100644 index 0000000..dd48183 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAppcastItemStateResolver Member List
+
+
+ +

This is the complete list of members for SPUAppcastItemStateResolver, including all inherited members.

+ + + + + + + + +
applicationVersionComparator (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
hostVersion (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
initWithHostVersion:applicationVersionComparator:standardVersionComparator: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver
isMinimumAutoupdateVersionOK:hostVersion:versionComparator: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()static
NS_UNAVAILABLE (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver
resolveStateWithInformationalUpdateVersions:minimumOperatingSystemVersion:maximumOperatingSystemVersion:minimumAutoupdateVersion:criticalUpdateDictionary: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
standardVersionComparator (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.html new file mode 100644 index 0000000..461e7f9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.html @@ -0,0 +1,131 @@ + + + + + + + +Sparkle: SPUAppcastItemStateResolver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUAppcastItemStateResolver Class Reference
+
+
+ +

Private exposed class used to resolve Appcast Item properties that rely on external factors such as a host. + More...

+ +

#import <SPUAppcastItemStateResolver.h>

+
+Inheritance diagram for SPUAppcastItemStateResolver:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - NS_UNAVAILABLE
 
+(instancetype) - initWithHostVersion:applicationVersionComparator:standardVersionComparator:
 
+(SPUAppcastItemState *) - resolveStateWithInformationalUpdateVersions:minimumOperatingSystemVersion:maximumOperatingSystemVersion:minimumAutoupdateVersion:criticalUpdateDictionary: [implementation]
 
+ + + +

+Class Methods

+(BOOL) + isMinimumAutoupdateVersionOK:hostVersion:versionComparator: [implementation]
 
+ + + + + + + +

+Properties

+NSString * hostVersion [implementation]
 
+id< SUVersionComparisonapplicationVersionComparator [implementation]
 
+SUStandardVersionComparatorstandardVersionComparator [implementation]
 
+

Detailed Description

+

Private exposed class used to resolve Appcast Item properties that rely on external factors such as a host.

+

This resolver is used for constructing appcast items.

+

The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.png new file mode 100644 index 0000000..86911a7 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_appcast_item_state_resolver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver-members.html new file mode 100644 index 0000000..ba7749d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUAutomaticUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUAutomaticUpdateDriver, including all inherited members.

+ + + + + + + + +
abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUAutomaticUpdateDriver)SPUAutomaticUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.html new file mode 100644 index 0000000..17be91d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUAutomaticUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUAutomaticUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUAutomaticUpdateDriver:
+
+
+ + +<SPUUpdateDriver> + +
+ + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
 
- Instance Methods inherited from <SPUUpdateDriver>
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdate
 
+(void) - abortUpdateWithError:
 
+ + + + +

+Additional Inherited Members

- Properties inherited from <SPUUpdateDriver>
+BOOL showingUpdate
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.png new file mode 100644 index 0000000..6c297b3 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_automatic_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver-members.html new file mode 100644 index 0000000..bae5f33 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUBasicUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUBasicUpdateDriver, including all inherited members.

+ + + + + + + +
abortUpdateAndShowNextUpdateImmediately:resumableUpdate:error: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
initWithHost:updater:updaterDelegate:delegate: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
prepareCheckForUpdatesWithCompletion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
resumeUpdate:completion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.html new file mode 100644 index 0000000..db7165a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: SPUBasicUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUBasicUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUBasicUpdateDriver:
+
+
+ +
+ + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:updater:updaterDelegate:delegate:
 
+(void) - prepareCheckForUpdatesWithCompletion:
 
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdateAndShowNextUpdateImmediately:resumableUpdate:error:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.png new file mode 100644 index 0000000..ea64745 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_basic_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver-members.html new file mode 100644 index 0000000..18f2a1c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver-members.html @@ -0,0 +1,92 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUCoreBasedUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUCoreBasedUpdateDriver, including all inherited members.

+ + + + + + + + + + + + + +
abortUpdateAndShowNextUpdateImmediately:error: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:requiresSilentInstall: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
clearDownloadedUpdate (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
deferInformationalUpdate:secondaryUpdate: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
downloadUpdateFromAppcastItem:secondaryAppcastItem:inBackground: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
extractDownloadedUpdate (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
finishInstallationWithResponse:displayingUserInterface: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
preflightForUpdatePermissionPreventingInstallerInteraction:reply: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
prepareCheckForUpdatesWithCompletion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
resumeUpdate:completion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.html new file mode 100644 index 0000000..ea1590b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: SPUCoreBasedUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUCoreBasedUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUCoreBasedUpdateDriver:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate:
 
+(void) - prepareCheckForUpdatesWithCompletion:
 
+(void) - preflightForUpdatePermissionPreventingInstallerInteraction:reply:
 
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:requiresSilentInstall:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - downloadUpdateFromAppcastItem:secondaryAppcastItem:inBackground:
 
+(void) - deferInformationalUpdate:secondaryUpdate:
 
+(void) - extractDownloadedUpdate
 
+(void) - clearDownloadedUpdate
 
+(void) - finishInstallationWithResponse:displayingUserInterface:
 
+(void) - abortUpdateAndShowNextUpdateImmediately:error:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.png new file mode 100644 index 0000000..48dee7f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_core_based_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data-members.html new file mode 100644 index 0000000..71bc182 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUDownloadData Member List
+
+
+ +

This is the complete list of members for SPUDownloadData, including all inherited members.

+ + + + + + +
dataSPUDownloadData
initWithData:URL:textEncodingName:MIMEType: (defined in SPUDownloadData)SPUDownloadData
MIMETypeSPUDownloadData
textEncodingNameSPUDownloadData
URLSPUDownloadData
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.html new file mode 100644 index 0000000..3017e66 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.html @@ -0,0 +1,196 @@ + + + + + + + +Sparkle: SPUDownloadData Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUDownloadData Class Reference
+
+
+ +

A class for containing downloaded data along with some information about it. + More...

+ +

#import <SPUDownloadData.h>

+
+Inheritance diagram for SPUDownloadData:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initWithData:URL:textEncodingName:MIMEType:
 
+ + + + + + + + + + + + + +

+Properties

+NSData * data
 The raw data that was downloaded.
 
NSURL * URL
 The URL that was fetched from. More...
 
NSString * textEncodingName
 The IANA charset encoding name if available. More...
 
NSString * MIMEType
 The MIME type if available. More...
 
+

Detailed Description

+

A class for containing downloaded data along with some information about it.

+

Property Documentation

+ +

◆ MIMEType

+ +
+
+ + + + + +
+ + + + +
- (NSString*) MIMEType
+
+readnonatomiccopy
+
+ +

The MIME type if available.

+

Eg: "text/plain"

+ +
+
+ +

◆ textEncodingName

+ +
+
+ + + + + +
+ + + + +
- (NSString*) textEncodingName
+
+readnonatomiccopy
+
+ +

The IANA charset encoding name if available.

+

Eg: "utf-8"

+ +
+
+ +

◆ URL

+ +
+
+ + + + + +
+ + + + +
- (NSURL*) URL
+
+readnonatomiccopy
+
+ +

The URL that was fetched from.

+

This may be different from the URL in the request if there were redirects involved.

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.png new file mode 100644 index 0000000..8b87264 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_data.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver-members.html new file mode 100644 index 0000000..7f5a882 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver-members.html @@ -0,0 +1,88 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUDownloadDriver Member List
+
+
+ +

This is the complete list of members for SPUDownloadDriver, including all inherited members.

+ + + + + + + + + +
cleanup: (defined in SPUDownloadDriver)SPUDownloadDriver
downloadFile (defined in SPUDownloadDriver)SPUDownloadDriver
inBackground (defined in SPUDownloadDriver)SPUDownloadDriver
initWithHost: (defined in SPUDownloadDriver)SPUDownloadDriver
initWithRequestURL:host:userAgent:httpHeaders:inBackground:delegate: (defined in SPUDownloadDriver)SPUDownloadDriver
initWithUpdateItem:secondaryUpdateItem:host:userAgent:httpHeaders:inBackground:delegate: (defined in SPUDownloadDriver)SPUDownloadDriver
removeDownloadedUpdate: (defined in SPUDownloadDriver)SPUDownloadDriver
request (defined in SPUDownloadDriver)SPUDownloadDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.html new file mode 100644 index 0000000..6d7afa7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: SPUDownloadDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUDownloadDriver Class Reference
+
+
+
+Inheritance diagram for SPUDownloadDriver:
+
+
+ +
+ + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithRequestURL:host:userAgent:httpHeaders:inBackground:delegate:
 
+(instancetype) - initWithUpdateItem:secondaryUpdateItem:host:userAgent:httpHeaders:inBackground:delegate:
 
+(instancetype) - initWithHost:
 
+(void) - downloadFile
 
+(void) - removeDownloadedUpdate:
 
+(void) - cleanup:
 
+ + + + + +

+Properties

+NSMutableURLRequest * request
 
+BOOL inBackground
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.png new file mode 100644 index 0000000..4192789 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_download_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update-members.html new file mode 100644 index 0000000..c534105 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUDownloadedUpdate Member List
+
+
+ +

This is the complete list of members for SPUDownloadedUpdate, including all inherited members.

+ + + + + + +
downloadName (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
initWithAppcastItem:secondaryAppcastItem:downloadName:temporaryDirectory: (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
temporaryDirectory (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.html new file mode 100644 index 0000000..a4437c3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: SPUDownloadedUpdate Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUDownloadedUpdate Class Reference
+
+
+
+Inheritance diagram for SPUDownloadedUpdate:
+
+
+ + +<SPUResumableUpdate> + +
+ + + + +

+Instance Methods

+(instancetype) - initWithAppcastItem:secondaryAppcastItem:downloadName:temporaryDirectory:
 
+ + + + + + + + + + +

+Properties

+NSString * downloadName
 
+NSString * temporaryDirectory
 
- Properties inherited from <SPUResumableUpdate>
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.png new file mode 100644 index 0000000..fbcefdb Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_downloaded_update.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update-members.html new file mode 100644 index 0000000..9b76905 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUInformationalUpdate Member List
+
+
+ +

This is the complete list of members for SPUInformationalUpdate, including all inherited members.

+ + + + +
initWithAppcastItem:secondaryAppcastItem: (defined in SPUInformationalUpdate)SPUInformationalUpdate
secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.html new file mode 100644 index 0000000..79be1f2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: SPUInformationalUpdate Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUInformationalUpdate Class Reference
+
+
+
+Inheritance diagram for SPUInformationalUpdate:
+
+
+ + +<SPUResumableUpdate> + +
+ + + + +

+Instance Methods

+(instancetype) - initWithAppcastItem:secondaryAppcastItem:
 
+ + + + + + +

+Additional Inherited Members

- Properties inherited from <SPUResumableUpdate>
+SUAppcastItemupdateItem
 
+SUAppcastItemsecondaryUpdateItem
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.png new file mode 100644 index 0000000..dd758ff Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_informational_update.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver-members.html new file mode 100644 index 0000000..329a489 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUInstallerDriver Member List
+
+
+ +

This is the complete list of members for SPUInstallerDriver, including all inherited members.

+ + + + + + + + +
abortInstall (defined in SPUInstallerDriver)SPUInstallerDriver
cancelUpdate (defined in SPUInstallerDriver)SPUInstallerDriver
checkIfApplicationInstallationRequiresAuthorizationWithReply: (defined in SPUInstallerDriver)SPUInstallerDriver
extractDownloadedUpdate:silently:preventsInstallerInteraction:completion: (defined in SPUInstallerDriver)SPUInstallerDriver
initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate: (defined in SPUInstallerDriver)SPUInstallerDriver
installWithToolAndRelaunch:displayingUserInterface: (defined in SPUInstallerDriver)SPUInstallerDriver
resumeInstallingUpdateWithUpdateItem:systemDomain: (defined in SPUInstallerDriver)SPUInstallerDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.html new file mode 100644 index 0000000..e9f853d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUInstallerDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUInstallerDriver Class Reference
+
+
+
+Inheritance diagram for SPUInstallerDriver:
+
+
+ +
+ + + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate:
 
+(void) - resumeInstallingUpdateWithUpdateItem:systemDomain:
 
+(void) - checkIfApplicationInstallationRequiresAuthorizationWithReply:
 
+(void) - extractDownloadedUpdate:silently:preventsInstallerInteraction:completion:
 
+(void) - installWithToolAndRelaunch:displayingUserInterface:
 
+(void) - cancelUpdate
 
+(void) - abortInstall
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.png new file mode 100644 index 0000000..da062ab Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_installer_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory-members.html new file mode 100644 index 0000000..2333a5e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPULocalCacheDirectory Member List
+
+
+ +

This is the complete list of members for SPULocalCacheDirectory, including all inherited members.

+ + + + +
cachePathForBundleIdentifier: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
createUniqueDirectoryInDirectory: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
removeOldItemsInDirectory: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.html new file mode 100644 index 0000000..5a46c84 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPULocalCacheDirectory Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPULocalCacheDirectory Class Reference
+
+
+
+Inheritance diagram for SPULocalCacheDirectory:
+
+
+ +
+ + + + + + + + +

+Class Methods

+(NSString *) + cachePathForBundleIdentifier:
 
+(void) + removeOldItemsInDirectory:
 
+(NSString *_Nullable) + createUniqueDirectoryInDirectory:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.png new file mode 100644 index 0000000..694e894 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_local_cache_directory.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status-members.html new file mode 100644 index 0000000..0ba9688 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUProbeInstallStatus Member List
+
+
+ +

This is the complete list of members for SPUProbeInstallStatus, including all inherited members.

+ + + +
probeInstallerInProgressForHostBundleIdentifier:completion: (defined in SPUProbeInstallStatus)SPUProbeInstallStatusstatic
probeInstallerUpdateItemForHostBundleIdentifier:completion: (defined in SPUProbeInstallStatus)SPUProbeInstallStatusstatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.html new file mode 100644 index 0000000..07ecc0c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SPUProbeInstallStatus Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUProbeInstallStatus Class Reference
+
+
+
+Inheritance diagram for SPUProbeInstallStatus:
+
+
+ +
+ + + + + + +

+Class Methods

+(void) + probeInstallerInProgressForHostBundleIdentifier:completion:
 
+(void) + probeInstallerUpdateItemForHostBundleIdentifier:completion:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.png new file mode 100644 index 0000000..3a172cc Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probe_install_status.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver-members.html new file mode 100644 index 0000000..d5bb7ad --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUProbingUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUProbingUpdateDriver, including all inherited members.

+ + + + + + + + +
abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
initWithHost:updater:updaterDelegate: (defined in SPUProbingUpdateDriver)SPUProbingUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.html new file mode 100644 index 0000000..9e35d28 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: SPUProbingUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUProbingUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUProbingUpdateDriver:
+
+
+ + +<SPUUpdateDriver> + +
+ + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:updater:updaterDelegate:
 
- Instance Methods inherited from <SPUUpdateDriver>
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdate
 
+(void) - abortUpdateWithError:
 
+ + + + +

+Additional Inherited Members

- Properties inherited from <SPUUpdateDriver>
+BOOL showingUpdate
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.png new file mode 100644 index 0000000..ab77c46 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_probing_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver-members.html new file mode 100644 index 0000000..2ca808e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver-members.html @@ -0,0 +1,88 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUReleaseNotesDriver Member List
+
+
+ +

This is the complete list of members for SPUReleaseNotesDriver, including all inherited members.

+ + + + + + + + + +
completionHandler (defined in SPUReleaseNotesDriver)SPUReleaseNotesDriver
downloadDriver (defined in SPUReleaseNotesDriver)SPUReleaseNotesDriver
downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.html new file mode 100644 index 0000000..c23aeb1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: SPUReleaseNotesDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUReleaseNotesDriver Class Reference
+
+
+
+Inheritance diagram for SPUReleaseNotesDriver:
+
+
+ + +<SPUDownloadDriverDelegate> + +
+ + + + + + +

+Properties

+SPUDownloadDriverdownloadDriver
 
+void(^ completionHandler )(SPUDownloadData *_Nullable, NSError *_Nullable)
 
+ + + + + + + + + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <SPUDownloadDriverDelegate>
+(void) - downloadDriverDidFailToDownloadFileWithError:
 
+(void) - downloadDriverWillBeginDownload
 
+(void) - downloadDriverDidDownloadUpdate:
 
+(void) - downloadDriverDidDownloadData:
 
+(void) - downloadDriverDidReceiveExpectedContentLength:
 
+(void) - downloadDriverDidReceiveDataOfLength:
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.png new file mode 100644 index 0000000..42f728b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_release_notes_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver-members.html new file mode 100644 index 0000000..7ac1ee4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUScheduledUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUScheduledUpdateDriver, including all inherited members.

+ + + + + + + + +
abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUScheduledUpdateDriver)SPUScheduledUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.html new file mode 100644 index 0000000..66c2f3a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUScheduledUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUScheduledUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUScheduledUpdateDriver:
+
+
+ + +<SPUUpdateDriver> + +
+ + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
 
- Instance Methods inherited from <SPUUpdateDriver>
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdate
 
+(void) - abortUpdateWithError:
 
+ + + + +

+Additional Inherited Members

- Properties inherited from <SPUUpdateDriver>
+BOOL showingUpdate
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.png new file mode 100644 index 0000000..3cfac47 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_scheduled_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update-members.html new file mode 100644 index 0000000..e977321 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUSkippedUpdate Member List
+
+
+ +

This is the complete list of members for SPUSkippedUpdate, including all inherited members.

+ + + + + + + +
clearSkippedUpdateForHost: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
initWithMinorVersion:majorVersion: (defined in SPUSkippedUpdate)SPUSkippedUpdate
majorVersion (defined in SPUSkippedUpdate)SPUSkippedUpdate
minorVersion (defined in SPUSkippedUpdate)SPUSkippedUpdate
skippedUpdateForHost: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
skipUpdate:host: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.html new file mode 100644 index 0000000..35928b2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: SPUSkippedUpdate Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUSkippedUpdate Class Reference
+
+
+
+Inheritance diagram for SPUSkippedUpdate:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initWithMinorVersion:majorVersion:
 
+ + + + + + + +

+Class Methods

+(nullable SPUSkippedUpdate *) + skippedUpdateForHost:
 
+(void) + clearSkippedUpdateForHost:
 
+(void) + skipUpdate:host:
 
+ + + + + +

+Properties

+NSString * minorVersion
 
+NSString * majorVersion
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.png new file mode 100644 index 0000000..7b5d4d2 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_skipped_update.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller-members.html new file mode 100644 index 0000000..724a767 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller-members.html @@ -0,0 +1,89 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUStandardUpdaterController Member List
+
+
+ +

This is the complete list of members for SPUStandardUpdaterController, including all inherited members.

+ + + + + + + + + + +
checkForUpdates:SPUStandardUpdaterController
initWithStartingUpdater:updaterDelegate:userDriverDelegate:SPUStandardUpdaterController
initWithUpdaterDelegate:userDriverDelegate:SPUStandardUpdaterController
NS_UNAVAILABLESPUStandardUpdaterController
startUpdaterSPUStandardUpdaterController
updaterSPUStandardUpdaterController
updaterDelegateSPUStandardUpdaterController
userDriverSPUStandardUpdaterController
userDriverDelegateSPUStandardUpdaterController
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.html new file mode 100644 index 0000000..2aaab35 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.html @@ -0,0 +1,347 @@ + + + + + + + +Sparkle: SPUStandardUpdaterController Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUStandardUpdaterController Class Reference
+
+
+ +

A controller class that instantiates a SPUUpdater and allows binding UI to it. + More...

+ +

#import <SPUStandardUpdaterController.h>

+
+Inheritance diagram for SPUStandardUpdaterController:
+
+
+ +
+ + + + + + + + + + + + + + + + + +

+Instance Methods

(instancetype) - NS_UNAVAILABLE
 Create a new SPUStandardUpdaterController from a nib. More...
 
(instancetype) - initWithUpdaterDelegate:userDriverDelegate:
 Create a new SPUStandardUpdaterController programmatically. More...
 
(instancetype) - initWithStartingUpdater:updaterDelegate:userDriverDelegate:
 Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately. More...
 
(void) - startUpdater
 Starts the updater if it has not already been started. More...
 
(IBAction) - checkForUpdates:
 Explicitly checks for updates and displays a progress dialog while doing so. More...
 
+ + + + + + + + + + + + + +

+Properties

IBOutlet id< SPUUpdaterDelegateupdaterDelegate
 Interface builder outlet for the updater's delegate. More...
 
IBOutlet id< SPUStandardUserDriverDelegateuserDriverDelegate
 Interface builder outlet for the user driver's delegate. More...
 
SPUUpdaterupdater
 Accessible property for the updater. More...
 
+SPUStandardUserDriveruserDriver
 Accessible property for the updater's user driver.
 
+

Detailed Description

+

A controller class that instantiates a SPUUpdater and allows binding UI to it.

+

This class can be instantiated in a nib or created programatically using initWithUpdaterDelegate:userDriverDelegate: or initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

+

The controller's updater targets the application's main bundle and uses Sparkle's standard user interface. Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

+

The controller creates an SPUUpdater instance and allows hooking up the check for updates action and handling menu item validation. It also allows hooking up the updater's and user driver's delegates.

+

If you need more control over what bundle you want to update or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

+

Method Documentation

+ +

◆ checkForUpdates:

+ +
+
+ + + + + + + + +
- (IBAction) checkForUpdates: (nullable id) sender
+
+ +

Explicitly checks for updates and displays a progress dialog while doing so.

+

This method is meant for a main menu item. Connect any NSMenuItem to this action in Interface Builder or programmatically, and Sparkle will check for updates and report back its findings verbosely when it is invoked.

+

When the target/action of the menu item is set to this controller and this method, this controller also handles enabling/disabling the menu item by checking -[SPUUpdater canCheckForUpdates]

+

This action checks updates by invoking -[SPUUpdater checkForUpdates]

+ +
+
+ +

◆ initWithStartingUpdater:updaterDelegate:userDriverDelegate:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (instancetype) initWithStartingUpdater: (BOOL) startUpdater
updaterDelegate:(nullable id< SPUUpdaterDelegate >) updaterDelegate
userDriverDelegate:(nullable id< SPUStandardUserDriverDelegate >) userDriverDelegate 
+
+ +

Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

+

You can specify whether or not you want to start the updater immediately. If you do not start the updater, you must invoke -[SPUStandardUpdaterController startUpdater] at a later time to start it.

+ +
+
+ +

◆ initWithUpdaterDelegate:userDriverDelegate:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (instancetype) initWithUpdaterDelegate: (nullable id< SPUUpdaterDelegate >) updaterDelegate
userDriverDelegate:(nullable id< SPUStandardUserDriverDelegate >) userDriverDelegate 
+
+ +

Create a new SPUStandardUpdaterController programmatically.

+

The updater is started automatically. See -[SPUStandardUpdaterController startUpdater] for more information.

+ +
+
+ +

◆ NS_UNAVAILABLE

+ +
+
+ + + + + + + +
- (instancetype) NS_UNAVAILABLE
+
+ +

Create a new SPUStandardUpdaterController from a nib.

+

You cannot call this initializer directly. You must instantiate a SPUStandardUpdaterController inside of a nib (typically the MainMenu nib) to use it.

+

To create a SPUStandardUpdaterController programatically, use initWithUpdaterDelegate:userDriverDelegate: or initWithStartingUpdater:updaterDelegate:userDriverDelegate: instead.

+ +
+
+ +

◆ startUpdater

+ +
+
+ + + + + + + +
- (void) startUpdater
+
+ +

Starts the updater if it has not already been started.

+

You should only call this method yourself if you opted out of starting the updater on initialization. Hence, do not call this yourself if you are instantiating this controller from a nib.

+

This invokes -[SPUUpdater startUpdater:]. If the application is misconfigured with Sparkle, an error is logged and an alert is shown to the user (after a few seconds) to contact the developer. If you want more control over this behavior, you can create your own SPUUpdater instead.

+ +
+
+

Property Documentation

+ +

◆ updater

+ +
+
+ + + + + +
+ + + + +
- (SPUUpdater*) updater
+
+readnonatomicassign
+
+ +

Accessible property for the updater.

+

Some properties on the updater can be binded via KVO

+

When instantiated from a nib, don't perform update checks before the application has finished launching in a MainMenu nib (i.e applicationDidFinishLaunching:) or before the corresponding window/view controller has been loaded (i.e, windowDidLoad or viewDidLoad). The updater is not guaranteed to be started yet before these points.

+ +
+
+ +

◆ updaterDelegate

+ +
+
+ + + + + +
+ + + + +
- (IBOutlet id<SPUUpdaterDelegate>) updaterDelegate
+
+readwritenonatomicweak
+
+ +

Interface builder outlet for the updater's delegate.

+

This property should only be set using Interface Builder by creating a connection using the outlet.

+ +
+
+ +

◆ userDriverDelegate

+ +
+
+ + + + + +
+ + + + +
- (IBOutlet id<SPUStandardUserDriverDelegate>) userDriverDelegate
+
+readwritenonatomicweak
+
+ +

Interface builder outlet for the user driver's delegate.

+

This property should only be set using Interface Builder by creating a connection using the outlet.

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.png new file mode 100644 index 0000000..1e1bdf9 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_updater_controller.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver-members.html new file mode 100644 index 0000000..ce83b43 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver-members.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUStandardUserDriver Member List
+
+
+ +

This is the complete list of members for SPUStandardUserDriver, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + +
__deprecated_msg (defined in <SPUUserDriver>)<SPUUserDriver>
dismissUpdateInstallation<SPUUserDriver>
initWithHostBundle:delegate:SPUStandardUserDriver
NS_UNAVAILABLESPUStandardUserDriver
showDownloadDidReceiveDataOfLength:<SPUUserDriver>
showDownloadDidReceiveExpectedContentLength:<SPUUserDriver>
showDownloadDidStartExtractingUpdate<SPUUserDriver>
showDownloadInitiatedWithCancellation:<SPUUserDriver>
showExtractionReceivedProgress:<SPUUserDriver>
showInstallingUpdate<SPUUserDriver>
showReadyToInstallAndRelaunch:<SPUUserDriver>
showSendingTerminationSignal<SPUUserDriver>
showUpdateFoundWithAppcastItem:state:reply:<SPUUserDriver>
showUpdateInFocus<SPUUserDriver>
showUpdateInstallationDidFinishWithAcknowledgement: (defined in <SPUUserDriver>)<SPUUserDriver>
showUpdateInstalledAndRelaunched:acknowledgement:<SPUUserDriver>
showUpdateNotFoundWithAcknowledgement: (defined in <SPUUserDriver>)<SPUUserDriver>
showUpdateNotFoundWithError:acknowledgement:<SPUUserDriver>
showUpdatePermissionRequest:reply:<SPUUserDriver>
showUpdateReleaseNotesFailedToDownloadWithError:<SPUUserDriver>
showUpdateReleaseNotesWithDownloadData:<SPUUserDriver>
showUpdaterError:acknowledgement:<SPUUserDriver>
showUserInitiatedUpdateCheckWithCancellation:<SPUUserDriver>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.html new file mode 100644 index 0000000..acecca6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.html @@ -0,0 +1,212 @@ + + + + + + + +Sparkle: SPUStandardUserDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUStandardUserDriver Class Reference
+
+
+ +

Sparkle's standard built-in user driver for updater interactions. + More...

+ +

#import <SPUStandardUserDriver.h>

+
+Inheritance diagram for SPUStandardUserDriver:
+
+
+ + +<SPUUserDriver> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Instance Methods

(instancetype) - initWithHostBundle:delegate:
 Initializes a Sparkle's standard user driver for user update interactions. More...
 
+(instancetype) - NS_UNAVAILABLE
 Use initWithHostBundle:delegate: instead.
 
- Instance Methods inherited from <SPUUserDriver>
(void) - showUpdatePermissionRequest:reply:
 Show an updater permission request to the user. More...
 
(void) - showUserInitiatedUpdateCheckWithCancellation:
 Show the user initating an update check. More...
 
(void) - showUpdateFoundWithAppcastItem:state:reply:
 Show the user a new update is found. More...
 
(void) - showUpdateReleaseNotesWithDownloadData:
 Show the user the release notes for the new update. More...
 
(void) - showUpdateReleaseNotesFailedToDownloadWithError:
 Show the user that the new update's release notes could not be downloaded. More...
 
(void) - showUpdateNotFoundWithError:acknowledgement:
 Show the user a new update was not found. More...
 
(void) - showUpdaterError:acknowledgement:
 Show the user an update error occurred. More...
 
(void) - showDownloadInitiatedWithCancellation:
 Show the user that downloading the new update initiated. More...
 
(void) - showDownloadDidReceiveExpectedContentLength:
 Show the user the content length of the new update that will be downloaded. More...
 
(void) - showDownloadDidReceiveDataOfLength:
 Show the user that the update download received more data. More...
 
(void) - showDownloadDidStartExtractingUpdate
 Show the user that the update finished downloading and started extracting. More...
 
(void) - showExtractionReceivedProgress:
 Show the user that the update is extracting with progress. More...
 
(void) - showInstallingUpdate
 Show the user that the update is installing. More...
 
(void) - showReadyToInstallAndRelaunch:
 Show the user that the update is ready to install & relaunch. More...
 
(void) - showSendingTerminationSignal
 Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer. More...
 
(void) - showUpdateInstalledAndRelaunched:acknowledgement:
 Show the user that the update installation finished. More...
 
(void) - showUpdateInFocus
 Show the user the current presented update or its progress in utmost focus. More...
 
(void) - dismissUpdateInstallation
 Dismiss the current update installation. More...
 
+(void) - showUpdateNotFoundWithAcknowledgement:
 
+(void) - showUpdateInstallationDidFinishWithAcknowledgement:
 
+("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.") - __deprecated_msg
 
+

Detailed Description

+

Sparkle's standard built-in user driver for updater interactions.

+

Method Documentation

+ +

◆ initWithHostBundle:delegate:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (instancetype) initWithHostBundle: (NSBundle *) hostBundle
delegate:(nullable id< SPUStandardUserDriverDelegate >) delegate 
+
+ +

Initializes a Sparkle's standard user driver for user update interactions.

+
Parameters
+ + + +
hostBundleThe target bundle of the host that is being updated.
delegateThe delegate to this user driver. Pass nil if you don't want to provide one.
+
+
+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.png new file mode 100644 index 0000000..dec33ff Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_standard_user_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver-members.html new file mode 100644 index 0000000..deffe61 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUIBasedUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUUIBasedUpdateDriver, including all inherited members.

+ + + + + + + + +
abortUpdateWithError: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
initWithHost:applicationBundle:sparkleBundle:updater:userDriver:userInitiated:updaterDelegate:delegate: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
preflightForUpdatePermissionPreventingInstallerInteraction:reply: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
prepareCheckForUpdatesWithCompletion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
resumeUpdate:completion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.html new file mode 100644 index 0000000..ae4876d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUUIBasedUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUIBasedUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUUIBasedUpdateDriver:
+
+
+ +
+ + + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:userInitiated:updaterDelegate:delegate:
 
+(void) - prepareCheckForUpdatesWithCompletion:
 
+(void) - preflightForUpdatePermissionPreventingInstallerInteraction:reply:
 
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdateWithError:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.png new file mode 100644 index 0000000..807c545 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_i_based_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request-members.html new file mode 100644 index 0000000..7f1fee6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUURLRequest Member List
+
+
+ +

This is the complete list of members for SPUURLRequest, including all inherited members.

+ + + +
request (defined in SPUURLRequest)SPUURLRequest
URLRequestWithRequest: (defined in SPUURLRequest)SPUURLRequeststatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.html new file mode 100644 index 0000000..a5b92c4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: SPUURLRequest Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUURLRequest Class Reference
+
+
+
+Inheritance diagram for SPUURLRequest:
+
+
+ +
+ + + + +

+Class Methods

+(instancetype) + URLRequestWithRequest:
 
+ + + +

+Properties

+NSURLRequest * request
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.png new file mode 100644 index 0000000..ad0b20a Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_u_r_l_request.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request-members.html new file mode 100644 index 0000000..92a601c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdatePermissionRequest Member List
+
+
+ +

This is the complete list of members for SPUUpdatePermissionRequest, including all inherited members.

+ + + +
initWithSystemProfile:SPUUpdatePermissionRequest
systemProfileSPUUpdatePermissionRequest
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.html new file mode 100644 index 0000000..3a4f06c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.html @@ -0,0 +1,139 @@ + + + + + + + +Sparkle: SPUUpdatePermissionRequest Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUpdatePermissionRequest Class Reference
+
+
+ +

This class represents information needed to make a permission request for checking updates. + More...

+ +

#import <SPUUpdatePermissionRequest.h>

+
+Inheritance diagram for SPUUpdatePermissionRequest:
+
+
+ +
+ + + + + +

+Instance Methods

(instancetype) - initWithSystemProfile:
 Initializes a new update permission request instance. More...
 
+ + + + +

+Properties

+NSArray< NSDictionary< NSString *, NSString * > * > * systemProfile
 A read-only property for the user's system profile.
 
+

Detailed Description

+

This class represents information needed to make a permission request for checking updates.

+

Method Documentation

+ +

◆ initWithSystemProfile:

+ +
+
+ + + + + + + + +
- (instancetype) initWithSystemProfile: (NSArray<NSDictionary<NSString *, NSString *> *> *) systemProfile
+
+ +

Initializes a new update permission request instance.

+
Parameters
+ + +
systemProfileThe system profile information.
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.png new file mode 100644 index 0000000..f2c9e80 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_update_permission_request.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater-members.html new file mode 100644 index 0000000..a2d4465 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdater Member List
+
+
+ +

This is the complete list of members for SPUUpdater, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + +
automaticallyChecksForUpdatesSPUUpdater
automaticallyDownloadsUpdatesSPUUpdater
canCheckForUpdatesSPUUpdater
checkForUpdateInformationSPUUpdater
checkForUpdatesSPUUpdater
checkForUpdatesInBackgroundSPUUpdater
feedURLSPUUpdater
hostBundleSPUUpdater
httpHeadersSPUUpdater
initWithHostBundle:applicationBundle:userDriver:delegate:SPUUpdater
lastUpdateCheckDateSPUUpdater
NS_UNAVAILABLESPUUpdater
resetUpdateCycleSPUUpdater
sendsSystemProfileSPUUpdater
sessionInProgressSPUUpdater
setFeedURL:SPUUpdater
sparkleBundleSPUUpdater
startUpdater:SPUUpdater
systemProfileArraySPUUpdater
updateCheckIntervalSPUUpdater
userAgentStringSPUUpdater
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.html new file mode 100644 index 0000000..fc30835 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.html @@ -0,0 +1,645 @@ + + + + + + + +Sparkle: SPUUpdater Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUpdater Class Reference
+
+
+ +

The main API in Sparkle for controlling the update mechanism. + More...

+ +

#import <SPUUpdater.h>

+
+Inheritance diagram for SPUUpdater:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Instance Methods

(instancetype) - initWithHostBundle:applicationBundle:userDriver:delegate:
 Initializes a new SPUUpdater instance. More...
 
(instancetype) - NS_UNAVAILABLE
 Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead. More...
 
(BOOL) - startUpdater:
 Starts the updater. More...
 
(void) - checkForUpdates
 Checks for updates, and displays progress while doing so if needed. More...
 
(void) - checkForUpdatesInBackground
 Checks for updates, but does not display any UI unless an update is found. More...
 
(void) - checkForUpdateInformation
 Begins a "probing" check for updates which will not actually offer to update to that version. More...
 
(void) - setFeedURL:
 Set the URL of the appcast used to download update information. More...
 
(void) - resetUpdateCycle
 Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

BOOL canCheckForUpdates
 A property indicating whether or not updates can be checked by the user. More...
 
BOOL sessionInProgress
 A property indicating whether or not an update session is in progress. More...
 
BOOL automaticallyChecksForUpdates
 A property indicating whether or not to check for updates automatically. More...
 
NSTimeInterval updateCheckInterval
 A property indicating the current automatic update check interval. More...
 
BOOL automaticallyDownloadsUpdates
 A property indicating whether or not updates can be automatically downloaded in the background. More...
 
NSURL * feedURL
 The URL of the appcast used to download update information. More...
 
+NSBundle * hostBundle
 The host bundle that is being updated.
 
+NSBundle * sparkleBundle
 The bundle this class (SPUUpdater) is loaded into.
 
NSString * userAgentString
 The user agent used when checking for updates. More...
 
NSDictionary * httpHeaders
 The HTTP headers used when checking for updates. More...
 
BOOL sendsSystemProfile
 A property indicating whether or not the user's system profile information is sent when checking for updates. More...
 
NSDate * lastUpdateCheckDate
 Returns the date of last update check. More...
 
+NSArray< NSDictionary< NSString *, NSString * > * > * systemProfileArray
 The system profile information that is sent when checking for updates.
 
+

Detailed Description

+

The main API in Sparkle for controlling the update mechanism.

+

This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

+

Method Documentation

+ +

◆ checkForUpdateInformation

+ +
+
+ + + + + + + +
- (void) checkForUpdateInformation
+
+ +

Begins a "probing" check for updates which will not actually offer to update to that version.

+

However, the delegate methods updater:didFindValidUpdate: (SPUUpdaterDelegate-p) and updaterDidNotFindUpdate: (SPUUpdaterDelegate-p) will be called, so you can use that information in your UI.

+

Updates that have been skipped by the user will not be found.

+ +
+
+ +

◆ checkForUpdates

+ +
+
+ + + + + + + +
- (void) checkForUpdates
+
+ +

Checks for updates, and displays progress while doing so if needed.

+

This is meant for users initiating a new update check or checking the current update progress.

+

If an update hasn't started, the user may be shown that a new check for updates is occurring. If an update has already been downloaded or begun installing, the user may be presented to install that update. If the user is already being presented with an update, that update will be shown to the user in active focus.

+

This will find updates that the user has previously opted into skipping.

+

See canCheckForUpdates property which can determine if this method may be invoked.

+ +
+
+ +

◆ checkForUpdatesInBackground

+ +
+
+ + + + + + + +
- (void) checkForUpdatesInBackground
+
+ +

Checks for updates, but does not display any UI unless an update is found.

+

This is meant for programmatically initating a check for updates. That is, it will display no UI unless it finds an update, in which case it proceeds as usual. This will not find updates that the user has opted into skipping.

+

Note if there is no resumable update found, and automated updating is turned on, the update will be downloaded in the background without disrupting the user.

+ +
+
+ +

◆ initWithHostBundle:applicationBundle:userDriver:delegate:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- (instancetype) initWithHostBundle: (NSBundle *) hostBundle
applicationBundle:(NSBundle *) applicationBundle
userDriver:(id< SPUUserDriver >) userDriver
delegate:(id< SPUUpdaterDelegate > _Nullable) delegate 
+
+ +

Initializes a new SPUUpdater instance.

+

This does not start the updater. To start it, see -[SPUUpdater startUpdater:]

+

Note that this is a normal initializer and doesn't implement the singleton pattern (i.e, instances aren't cached, so no surprises) This also means that updater instances can be deallocated, and that they will be torn down properly.

+

Related: See SPUStandardUpdaterController which wraps a SPUUpdater instance and is suitable for instantiating in nib files

+
Parameters
+ + + + + +
hostBundleThe bundle that should be targetted for updating. This must not be nil.
applicationBundleThe application bundle that should be waited for termination and relaunched (unless overridden). Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle.
userDriverThe user driver that Sparkle uses for user update interaction
delegateThe delegate for SPUUpdater. This may be nil.
+
+
+ +
+
+ +

◆ NS_UNAVAILABLE

+ +
+
+ + + + + + + +
- (instancetype) NS_UNAVAILABLE
+
+ +

Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

+

If you want to drop an updater into a nib, use SPUStandardUpdaterController.

+ +
+
+ +

◆ resetUpdateCycle

+ +
+
+ + + + + + + +
- (void) resetUpdateCycle
+
+ +

Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

+

This call does not change the date of the next check, but only the internal timer.

+ +
+
+ +

◆ setFeedURL:

+ +
+
+ + + + + + + + +
- (void) setFeedURL: (NSURL *_Nullable) feedURL
+
+ +

Set the URL of the appcast used to download update information.

+

Using this method is discouraged.

+

Setting this property will persist in the host bundle's user defaults. To avoid this, you should consider instead implementing -[SPUUpdaterDelegate feedURLStringForUpdater:]

+

Passing nil will remove any feed URL that has been set in the host bundle's user defaults.

+

For beta updates, you may consider migrating to -[SPUUpdaterDelegate allowedChannelsForUpdater:] in the future.

+

This method must be called on the main thread; calls from background threads will have no effect.

+ +
+
+ +

◆ startUpdater:

+ +
+
+ + + + + + + + +
- (BOOL) startUpdater: (NSError *__autoreleasing *) error
+
+ +

Starts the updater.

+

This method checks if Sparkle is configured properly. A valid feed URL should be set before this method is invoked. Other properties of this SPUUpdater instance can be set before this method is invoked as well, such as automatic update checks.

+

If the configuration is valid, an update cycle is started in the next main runloop cycle. During this cycle, a permission prompt may be brought up (if needed) for checking if the user wants automatic update checking. Otherwise if automatic update checks are enabled, a scheduled update alert may be brought up if enough time has elapsed since the last check.

+

After starting the updater and before the next runloop cycle, one of -checkForUpdates, -checkForUpdatesInBackground, or -checkForUpdateInformation can be invoked. This may be useful if you want to check for updates immediately or without showing a permission prompt.

+

If the updater cannot be started (i.e, due to a configuration issue in the application), you may want to fall back appropriately. For example, the standard updater controller (SPUStandardUpdaterController) alerts the user that the app is misconfigured and to contact the developer.

+

This must be called on the main thread.

+
Parameters
+ + +
errorThe error that is populated if this method fails. Pass NULL if not interested in the error information.
+
+
+
Returns
YES if the updater started otherwise NO with a populated error
+ +
+
+

Property Documentation

+ +

◆ automaticallyChecksForUpdates

+ +
+
+ + + + + +
+ + + + +
- (BOOL) automaticallyChecksForUpdates
+
+readwritenonatomicassign
+
+ +

A property indicating whether or not to check for updates automatically.

+

Setting this property will persist in the host bundle's user defaults. The update schedule cycle will be reset in a short delay after the property's new value is set. This is to allow reverting this property without kicking off a schedule change immediately

+ +
+
+ +

◆ automaticallyDownloadsUpdates

+ +
+
+ + + + + +
+ + + + +
- (BOOL) automaticallyDownloadsUpdates
+
+readwritenonatomicassign
+
+ +

A property indicating whether or not updates can be automatically downloaded in the background.

+

Note that the developer can disallow automatic downloading of updates from being enabled. In this case, -automaticallyDownloadsUpdates will return NO regardless of how this property is set.

+

Setting this property will persist in the host bundle's user defaults.

+ +
+
+ +

◆ canCheckForUpdates

+ +
+
+ + + + + +
+ + + + +
- (BOOL) canCheckForUpdates
+
+readnonatomicassign
+
+ +

A property indicating whether or not updates can be checked by the user.

+

An update check can be made by the user when an update session isn't in progress, or when an update or its progress is being shown to the user.

+

This property is suitable to use for menu item validation for seeing if -checkForUpdates can be invoked.

+

Note this property does not reflect whether or not an update session is in progress. Please see sessionInProgress property instead.

+ +
+
+ +

◆ feedURL

+ +
+
+ + + + + +
+ + + + +
- (NSURL*) feedURL
+
+readnonatomicassign
+
+ +

The URL of the appcast used to download update information.

+

If the updater's delegate implements -[SPUUpdaterDelegate feedURLStringForUpdater:], this will return that feed URL. Otherwise if the feed URL has been set before, the feed URL returned will be retrieved from the host bundle's user defaults. Otherwise the feed URL in the host bundle's Info.plist will be returned. If no feed URL can be retrieved, returns nil.

+

This property must be called on the main thread; calls from background threads will return nil.

+ +
+
+ +

◆ httpHeaders

+ +
+
+ + + + + +
+ + + + +
- (NSDictionary*) httpHeaders
+
+readwritenonatomiccopy
+
+ +

The HTTP headers used when checking for updates.

+

The keys of this dictionary are HTTP header fields (NSString) and values are corresponding values (NSString)

+ +
+
+ +

◆ lastUpdateCheckDate

+ +
+
+ + + + + +
+ + + + +
- (NSDate*) lastUpdateCheckDate
+
+readnonatomiccopy
+
+ +

Returns the date of last update check.

+
Returns
nil if no check has been performed.
+ +
+
+ +

◆ sendsSystemProfile

+ +
+
+ + + + + +
+ + + + +
- (BOOL) sendsSystemProfile
+
+readwritenonatomicassign
+
+ +

A property indicating whether or not the user's system profile information is sent when checking for updates.

+

Setting this property will persist in the host bundle's user defaults.

+ +
+
+ +

◆ sessionInProgress

+ +
+
+ + + + + +
+ + + + +
- (BOOL) sessionInProgress
+
+readnonatomicassign
+
+ +

A property indicating whether or not an update session is in progress.

+

An update session is in progress when the appcast is being downloaded, an update is being downloaded, an update is being shown, update permission is being requested, or the installer is being started. An active session is when Sparkle's fired scheduler is running.

+

Note an update session may be inactive even though Sparkle's installer (ran as a separate process) may be running, or even though the update has been downloaded but the installation has been deferred. In both of these cases, a new update session may be activated with the update resumed at a later point (automatically or manually).

+

See also canCheckForUpdates property which is more suited for menu item validation.

+ +
+
+ +

◆ updateCheckInterval

+ +
+
+ + + + + +
+ + + + +
- (NSTimeInterval) updateCheckInterval
+
+readwritenonatomicassign
+
+ +

A property indicating the current automatic update check interval.

+

Setting this property will persist in the host bundle's user defaults. The update schedule cycle will be reset in a short delay after the property's new value is set. This is to allow reverting this property without kicking off a schedule change immediately

+ +
+
+ +

◆ userAgentString

+ +
+
+ + + + + +
+ + + + +
- (NSString*) userAgentString
+
+readwritenonatomiccopy
+
+ +

The user agent used when checking for updates.

+

The default implementation can be overrided.

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.png new file mode 100644 index 0000000..2fa808f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle-members.html new file mode 100644 index 0000000..31cc075 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterCycle Member List
+
+
+ +

This is the complete list of members for SPUUpdaterCycle, including all inherited members.

+ + + + +
cancelNextUpdateCycle (defined in SPUUpdaterCycle)SPUUpdaterCycle
initWithDelegate: (defined in SPUUpdaterCycle)SPUUpdaterCycle
resetUpdateCycleAfterDelay (defined in SPUUpdaterCycle)SPUUpdaterCycle
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.html new file mode 100644 index 0000000..5277dbc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPUUpdaterCycle Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUpdaterCycle Class Reference
+
+
+
+Inheritance diagram for SPUUpdaterCycle:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithDelegate:
 
+(void) - resetUpdateCycleAfterDelay
 
+(void) - cancelNextUpdateCycle
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.png new file mode 100644 index 0000000..b1aea47 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_cycle.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings-members.html new file mode 100644 index 0000000..2343386 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterSettings Member List
+
+
+ +

This is the complete list of members for SPUUpdaterSettings, including all inherited members.

+ + + + + + + +
allowsAutomaticUpdatesSPUUpdaterSettings
automaticallyChecksForUpdatesSPUUpdaterSettings
automaticallyDownloadsUpdatesSPUUpdaterSettings
initWithHostBundle: (defined in SPUUpdaterSettings)SPUUpdaterSettings
sendsSystemProfileSPUUpdaterSettings
updateCheckIntervalSPUUpdaterSettings
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.html new file mode 100644 index 0000000..9316f6d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.html @@ -0,0 +1,154 @@ + + + + + + + +Sparkle: SPUUpdaterSettings Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUpdaterSettings Class Reference
+
+
+ +

This class can be used for reading certain updater settings. + More...

+ +

#import <SPUUpdaterSettings.h>

+
+Inheritance diagram for SPUUpdaterSettings:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initWithHostBundle:
 
+ + + + + + + + + + + + + + + + +

+Properties

+BOOL automaticallyChecksForUpdates
 Indicates whether or not automatic update checks are enabled.
 
+NSTimeInterval updateCheckInterval
 The regular update check interval.
 
+BOOL allowsAutomaticUpdates
 Indicates whether or not automatically downloading updates is allowed to be turned on by the user.
 
BOOL automaticallyDownloadsUpdates
 Indicates whether or not automatically downloading updates is enabled by the user or developer. More...
 
+BOOL sendsSystemProfile
 Indicates whether or not anonymous system profile information is sent when checking for updates.
 
+

Detailed Description

+

This class can be used for reading certain updater settings.

+

It retrieves the settings by first looking into the host's user defaults. If the setting is not found in there, then the host's Info.plist file is looked at.

+

Property Documentation

+ +

◆ automaticallyDownloadsUpdates

+ +
+
+ + + + + +
+ + + + +
- (BOOL) automaticallyDownloadsUpdates
+
+readnonatomicassign
+
+ +

Indicates whether or not automatically downloading updates is enabled by the user or developer.

+

Note this does not indicate whether or not automatic downloading of updates is allowable. See -allowsAutomaticUpdates property for that.

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.png new file mode 100644 index 0000000..81b7772 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_settings.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer-members.html new file mode 100644 index 0000000..166fa40 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUpdaterTimer Member List
+
+
+ +

This is the complete list of members for SPUUpdaterTimer, including all inherited members.

+ + + + +
initWithDelegate: (defined in SPUUpdaterTimer)SPUUpdaterTimer
invalidate (defined in SPUUpdaterTimer)SPUUpdaterTimer
startAndFireAfterDelay: (defined in SPUUpdaterTimer)SPUUpdaterTimer
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.html new file mode 100644 index 0000000..8049091 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPUUpdaterTimer Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUpdaterTimer Class Reference
+
+
+
+Inheritance diagram for SPUUpdaterTimer:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithDelegate:
 
+(void) - startAndFireAfterDelay:
 
+(void) - invalidate
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.png new file mode 100644 index 0000000..b7b0609 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_updater_timer.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver-members.html new file mode 100644 index 0000000..6cf8f9f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserInitiatedUpdateDriver Member List
+
+
+ +

This is the complete list of members for SPUUserInitiatedUpdateDriver, including all inherited members.

+ + + + + + + + +
abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUUserInitiatedUpdateDriver)SPUUserInitiatedUpdateDriver
resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.html new file mode 100644 index 0000000..3f23423 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUUserInitiatedUpdateDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUserInitiatedUpdateDriver Class Reference
+
+
+
+Inheritance diagram for SPUUserInitiatedUpdateDriver:
+
+
+ + +<SPUUpdateDriver> + +
+ + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
 
- Instance Methods inherited from <SPUUpdateDriver>
+(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
 
+(void) - resumeInstallingUpdateWithCompletion:
 
+(void) - resumeUpdate:completion:
 
+(void) - abortUpdate
 
+(void) - abortUpdateWithError:
 
+ + + + +

+Additional Inherited Members

- Properties inherited from <SPUUpdateDriver>
+BOOL showingUpdate
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.png new file mode 100644 index 0000000..60543da Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_initiated_update_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state-members.html new file mode 100644 index 0000000..7562f68 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SPUUserUpdateState Member List
+
+
+ +

This is the complete list of members for SPUUserUpdateState, including all inherited members.

+ + + + + +
initWithStage:userInitiated: (defined in SPUUserUpdateState)SPUUserUpdateState(Private)
NS_UNAVAILABLE (defined in SPUUserUpdateState)SPUUserUpdateState
stage (defined in SPUUserUpdateState)SPUUserUpdateState
userInitiated (defined in SPUUserUpdateState)SPUUserUpdateState
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.html new file mode 100644 index 0000000..eb36762 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: SPUUserUpdateState Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SPUUserUpdateState Class Reference
+
+
+
+Inheritance diagram for SPUUserUpdateState:
+
+
+ +
+ + + + + + +

+Instance Methods

+(instancetype) - NS_UNAVAILABLE
 
+(instancetype) - initWithStage:userInitiated:
 
+ + + + + +

+Properties

+SPUUserUpdateStage stage
 
+BOOL userInitiated
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.png new file mode 100644 index 0000000..9a2a23c Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_p_u_user_update_state.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast-members.html new file mode 100644 index 0000000..1e0f26b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcast Member List
+
+
+ +

This is the complete list of members for SUAppcast, including all inherited members.

+ + + + +
copyByFilteringItems: (defined in SUAppcast)SUAppcast(Private)
initWithXMLData:relativeToURL:stateResolver:error: (defined in SUAppcast)SUAppcast(Private)
items (defined in SUAppcast)SUAppcast
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.html new file mode 100644 index 0000000..50c6329 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: SUAppcast Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUAppcast Class Reference
+
+
+
+Inheritance diagram for SUAppcast:
+
+
+ +
+ + + + + + +

+Instance Methods

+(nullable instancetype) - initWithXMLData:relativeToURL:stateResolver:error:
 
+(SUAppcast *) - copyByFilteringItems:
 
+ + + +

+Properties

+NSArray< SUAppcastItem * > * items
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.png new file mode 100644 index 0000000..da34501 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver-members.html new file mode 100644 index 0000000..554ab1b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastDriver Member List
+
+
+ +

This is the complete list of members for SUAppcastDriver, including all inherited members.

+ + + + +
cleanup: (defined in SUAppcastDriver)SUAppcastDriver
initWithHost:updater:updaterDelegate:delegate: (defined in SUAppcastDriver)SUAppcastDriver
loadAppcastFromURL:userAgent:httpHeaders:inBackground: (defined in SUAppcastDriver)SUAppcastDriver
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.html new file mode 100644 index 0000000..b028ac5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUAppcastDriver Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUAppcastDriver Class Reference
+
+
+
+Inheritance diagram for SUAppcastDriver:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:updater:updaterDelegate:delegate:
 
+(void) - loadAppcastFromURL:userAgent:httpHeaders:inBackground:
 
+(void) - cleanup:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.png new file mode 100644 index 0000000..61cdf86 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_driver.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item-members.html new file mode 100644 index 0000000..07b6002 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item-members.html @@ -0,0 +1,113 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUAppcastItem Member List
+
+
+ +

This is the complete list of members for SUAppcastItem, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
channel (defined in SUAppcastItem)SUAppcastItem
contentLength (defined in SUAppcastItem)SUAppcastItem
criticalUpdate (defined in SUAppcastItem)SUAppcastItem
date (defined in SUAppcastItem)SUAppcastItem
dateString (defined in SUAppcastItem)SUAppcastItem
deltaUpdate (defined in SUAppcastItem)SUAppcastItem
deltaUpdates (defined in SUAppcastItem)SUAppcastItem
displayVersionString (defined in SUAppcastItem)SUAppcastItem
emptyAppcastItem (defined in SUAppcastItem)SUAppcastItemstatic
fileURL (defined in SUAppcastItem)SUAppcastItem
informationOnlyUpdate (defined in SUAppcastItem)SUAppcastItem
infoURL (defined in SUAppcastItem)SUAppcastItem
initWithDictionary: (defined in SUAppcastItem)SUAppcastItem
initWithDictionary:failureReason: (defined in SUAppcastItem)SUAppcastItem
initWithDictionary:relativeToURL:failureReason: (defined in SUAppcastItem)SUAppcastItem
initWithDictionary:relativeToURL:stateResolver:failureReason:SUAppcastItem(Private)
installationType (defined in SUAppcastItem)SUAppcastItem
itemDescription (defined in SUAppcastItem)SUAppcastItem
macOsUpdate (defined in SUAppcastItem)SUAppcastItem
majorUpgrade (defined in SUAppcastItem)SUAppcastItem
maximumOperatingSystemVersionIsOK (defined in SUAppcastItem)SUAppcastItem
maximumSystemVersion (defined in SUAppcastItem)SUAppcastItem
minimumAutoupdateVersion (defined in SUAppcastItem)SUAppcastItem
minimumOperatingSystemVersionIsOK (defined in SUAppcastItem)SUAppcastItem
minimumSystemVersion (defined in SUAppcastItem)SUAppcastItem
NS_UNAVAILABLE (defined in SUAppcastItem)SUAppcastItem
osString (defined in SUAppcastItem)SUAppcastItem
phasedRolloutInterval (defined in SUAppcastItem)SUAppcastItem
propertiesDictionary (defined in SUAppcastItem)SUAppcastItem
releaseNotesURL (defined in SUAppcastItem)SUAppcastItem
signatures (defined in SUAppcastItem)SUAppcastItem
title (defined in SUAppcastItem)SUAppcastItem
versionString (defined in SUAppcastItem)SUAppcastItem
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.html new file mode 100644 index 0000000..e74258c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.html @@ -0,0 +1,247 @@ + + + + + + + +Sparkle: SUAppcastItem Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUAppcastItem Class Reference
+
+
+
+Inheritance diagram for SUAppcastItem:
+
+
+ +
+ + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - NS_UNAVAILABLE
 
+(nullable instancetype) - initWithDictionary:
 
+(nullable instancetype) - initWithDictionary:failureReason:
 
+(nullable instancetype) - initWithDictionary:relativeToURL:failureReason:
 
(nullable instancetype) - initWithDictionary:relativeToURL:stateResolver:failureReason:
 Initializes with data from a dictionary provided by the RSS class and state resolver. More...
 
+ + + +

+Class Methods

+(instancetype) + emptyAppcastItem
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSString * title
 
+NSString * dateString
 
+NSDate * date
 
+NSString * itemDescription
 
+NSURL * releaseNotesURL
 
+SUSignaturessignatures
 
+NSString * minimumSystemVersion
 
+NSString * maximumSystemVersion
 
+NSURL * fileURL
 
+uint64_t contentLength
 
+NSString * versionString
 
+NSString * osString
 
+NSString * displayVersionString
 
+NSDictionary * deltaUpdates
 
+NSURL * infoURL
 
+NSNumber * phasedRolloutInterval
 
+NSString * installationType
 
+NSString * minimumAutoupdateVersion
 
+NSString * channel
 
+BOOL deltaUpdate
 
+BOOL criticalUpdate
 
+BOOL majorUpgrade
 
+BOOL macOsUpdate
 
+BOOL informationOnlyUpdate
 
+BOOL minimumOperatingSystemVersionIsOK
 
+BOOL maximumOperatingSystemVersionIsOK
 
+NSDictionary * propertiesDictionary
 
+

Method Documentation

+ +

◆ initWithDictionary:relativeToURL:stateResolver:failureReason:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- (nullable instancetype) initWithDictionary: (NSDictionary *) dict
relativeToURL:(NSURL *_Nullable) appcastURL
stateResolver:(SPUAppcastItemStateResolver *) stateResolver
failureReason:(NSString *_Nullable __autoreleasing *_Nullable) error 
+
+ +

Initializes with data from a dictionary provided by the RSS class and state resolver.

+

This initializer method is intended to be marked "private" and discouraged from public usage. This method is available however. Talk to us to describe your use case and if you need to construct appcast items yourself.

+ +

Provided by category SUAppcastItem(Private).

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.png new file mode 100644 index 0000000..a7cf338 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_appcast_item.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info-members.html new file mode 100644 index 0000000..58d0c1c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUApplicationInfo Member List
+
+
+ +

This is the complete list of members for SUApplicationInfo, including all inherited members.

+ + + +
bestIconForHost: (defined in SUApplicationInfo)SUApplicationInfostatic
isBackgroundApplication: (defined in SUApplicationInfo)SUApplicationInfostatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.html new file mode 100644 index 0000000..4837181 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SUApplicationInfo Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUApplicationInfo Class Reference
+
+
+
+Inheritance diagram for SUApplicationInfo:
+
+
+ +
+ + + + + + +

+Class Methods

+(BOOL) + isBackgroundApplication:
 
+(NSImage *) + bestIconForHost:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.png new file mode 100644 index 0000000..8b5ebdd Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_application_info.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon-members.html new file mode 100644 index 0000000..c155df9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUBundleIcon Member List
+
+
+ +

This is the complete list of members for SUBundleIcon, including all inherited members.

+ + +
iconURLForHost: (defined in SUBundleIcon)SUBundleIconstatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.html new file mode 100644 index 0000000..b53188c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: SUBundleIcon Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUBundleIcon Class Reference
+
+
+
+Inheritance diagram for SUBundleIcon:
+
+
+ +
+ + + + +

+Class Methods

+(NSURL *_Nullable) + iconURLForHost:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.png new file mode 100644 index 0000000..344791b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_bundle_icon.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager-members.html new file mode 100644 index 0000000..6631d40 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUFileManager Member List
+
+
+ +

This is the complete list of members for SUFileManager, including all inherited members.

+ + + + + + + + + + + + +
changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:SUFileManager
copyItemAtURL:toURL:error:SUFileManager
initSUFileManager
makeDirectoryAtURL:error:SUFileManager
makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:SUFileManager
moveItemAtURL:toURL:error:SUFileManager
releaseItemFromQuarantineAtRootURL:error:SUFileManager
removeItemAtURL:error:SUFileManager
replaceItemAtURL:withItemAtURL:error:SUFileManager
updateAccessTimeOfItemAtRootURL:error:SUFileManager
updateModificationAndAccessTimeOfItemAtURL:error:SUFileManager
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.html new file mode 100644 index 0000000..896629a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.html @@ -0,0 +1,552 @@ + + + + + + + +Sparkle: SUFileManager Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUFileManager Class Reference
+
+
+ +

#import <SUFileManager.h>

+
+Inheritance diagram for SUFileManager:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Instance Methods

(instancetype) - init
 
(NSURL *_Nullable) - makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:
 
(BOOL) - makeDirectoryAtURL:error:
 
(BOOL) - moveItemAtURL:toURL:error:
 
(BOOL) - replaceItemAtURL:withItemAtURL:error:
 
(BOOL) - copyItemAtURL:toURL:error:
 
(BOOL) - removeItemAtURL:error:
 
(BOOL) - changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:
 
(BOOL) - updateModificationAndAccessTimeOfItemAtURL:error:
 
(BOOL) - updateAccessTimeOfItemAtRootURL:error:
 
(BOOL) - releaseItemFromQuarantineAtRootURL:error:
 
+

Detailed Description

+

A class used for performing file operations more suitable than NSFileManager for performing installation work. All operations on this class may be used on thread other than the main thread. This class provides just basic file operations and stays away from including much application-level logic.

+

Method Documentation

+ +

◆ changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (BOOL) changeOwnerAndGroupOfItemAtRootURL: (NSURL *) targetURL
toMatchURL:(NSURL *) matchURL
error:(NSError **) error 
+
+

Changes the owner and group IDs of an item at a specified target URL to match another URL

Parameters
+ + + + +
targetURLA URL pointing to the target item whose owner and group IDs to alter. This will be applied recursively if the item is a directory. The item at this URL must exist.
matchURLA URL pointing to the item whose owner and group IDs will be used for changing on the targetURL. The item at this URL must exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the target item's owner and group IDs have changed to match the origin's ones, otherwise NO along with a populated error object
+

If the owner and group IDs match on the root items of targetURL and matchURL, this method stops and assumes that nothing needs to be done. Otherwise this method recursively changes the IDs if the target is a directory. If an item in the directory is encountered that is unable to be changed, then this method stops and returns NO. While this method will try to change the group ID, being unable to change the group ID does not result in a failure if the owner ID can be changed or matched.

+

This is not an atomic operation.

+ +
+
+ +

◆ copyItemAtURL:toURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (BOOL) copyItemAtURL: (NSURL *) sourceURL
toURL:(NSURL *) destinationURL
error:(NSError **) error 
+
+

Copies an item from a source to a destination

Parameters
+ + + + +
sourceURLA URL pointing to the item to move. The item at this URL must exist.
destinationURLA URL pointing to the destination the item will be moved at. An item must not already exist at this URL.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the item was copied successfully, otherwise NO along with a populated error object
+

This is not an atomic operation.

+ +
+
+ +

◆ init

+ +
+
+ + + + + + + +
- (instancetype) init
+
+Initial value:
{
+
NSFileManager *_fileManager
+

Initializes a new file manager

+
Returns
A new file manager instance
+ +
+
+ +

◆ makeDirectoryAtURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (BOOL) makeDirectoryAtURL: (NSURL *) targetURL
error:(NSError **) error 
+
+

Creates a directory at the target URL

Parameters
+ + + +
targetURLA URL pointing to the directory to create. The item at this URL must not exist, and the parent directory of this URL must already exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the item was created successfully, otherwise NO along with a populated error object
+

This is an atomic operation.

+ +
+
+ +

◆ makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (NSURL *) makeTemporaryDirectoryWithPreferredName: (NSString *) preferredName
appropriateForDirectoryURL:(NSURL *) appropriateURL
error:(NSError * __autoreleasing *) error 
+
+

Creates a temporary directory on the same volume as a provided URL

Parameters
+ + + + +
preferredNameA name that may be used when creating the temporary directory. Note that in the uncothirdStageErrormmon case this name is used, the temporary directory will be created inside the directory pointed by appropriateURL
appropriateURLA URL to a directory that resides on the volume that the temporary directory will be created on. In the uncommon case, the temporary directory may be created inside this directory.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
A URL pointing to the newly created temporary directory, or nil with a populated error object if an error occurs.
+

When moving an item from a source to a destination, it is desirable to create a temporary intermediate destination on the same volume as the destination to ensure that the item will be moved, and not copied, from the intermediate point to the final destination. This ensures file atomicity.

+ +
+
+ +

◆ moveItemAtURL:toURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (BOOL) moveItemAtURL: (NSURL *) sourceURL
toURL:(NSURL *) destinationURL
error:(NSError **) error 
+
+

Moves an item from a source to a destination

Parameters
+ + + + +
sourceURLA URL pointing to the item to move. The item at this URL must exist.
destinationURLA URL pointing to the destination the item will be moved at. An item must not already exist at this URL.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the item was moved successfully, otherwise NO along with a populated error object
+

If sourceURL and destinationURL reside on the same volume, this operation will be an atomic move operation. Otherwise this will be equivalent to a copy & remove which will be a nonatomic operation.

+ +
+
+ +

◆ releaseItemFromQuarantineAtRootURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (BOOL) releaseItemFromQuarantineAtRootURL: (NSURL *) rootURL
error:(NSError **) error 
+
+

Releases Apple's quarantine extended attribute from the item at the specified root URL

Parameters
+ + + +
rootURLA URL pointing to the item to release from Apple's quarantine. This will be applied recursively if the item is a directory. The item at this URL must exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if all the items at the target could be released from quarantine, otherwise NO if any items couldn't along with a populated error object
+

This method removes quarantine attributes from an item, ideally an application, so that when the user launches a new application themselves, they don't have to witness the system dialog alerting them that they downloaded an application from the internet and asking if they want to continue. Note that this may not exactly mimic the system behavior when a user opens an application for the first time (i.e, the xattr isn't deleted), but this should be sufficient enough for our purposes.

+

This method may return NO even if some items do get released from quarantine if the target URL is pointing to a directory. Thus if an item cannot be released from quarantine, this method still continues on to the next enumerated item.

+

This is not an atomic operation.

+ +
+
+ +

◆ removeItemAtURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (BOOL) removeItemAtURL: (NSURL *) url
error:(NSError **) error 
+
+

Removes an item at a URL

Parameters
+ + + +
urlA URL pointing to the item to remove. The item at this URL must exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the item was removed successfully, otherwise NO along with a populated error object
+

This is not an atomic operation.

+ +
+
+ +

◆ replaceItemAtURL:withItemAtURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
- (BOOL) replaceItemAtURL: (NSURL *) originalItemURL
withItemAtURL:(NSURL *) newItemURL
error:(10.13) __OSX_AVAILABLE 
+
+

Replaces an original item with a new item atomically.

Parameters
+ + + + +
originalItemURLA URL pointing to the original item to replace. The item at this URL must exist.
newItemURLA URL pointing to the new item that will replace the original item.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the original item was replaced with the new item successfully, otherwise NO along with a populated error object
+

originalItemURL and newItemURL must reside on the same volume. If the operation succeeds, this will be be an atomic operation. Otherwise on failure you may need to re-try using move operations. This operation will fail on non-apfs volumes or volumes that don't support rename swapping. Both originalItemURL and newItemURL must exist.

+ +
+
+ +

◆ updateAccessTimeOfItemAtRootURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (BOOL) updateAccessTimeOfItemAtRootURL: (NSURL *) targetURL
error:(NSError * __autoreleasing *) error 
+
+

Updates the access time of an item at a specified root URL to the current time

Parameters
+ + + +
targetURLA URL pointing to the target item whose access time to update to the current time. This will be applied recursively if the item is a directory. The item at this URL must exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the target item's access times have been updated, otherwise NO along with a populated error object
+

This method updates the access time of an item to the current time, ideal for letting the system know not to remove a file or directory when placing it at a temporary directory.

+

This is not an atomic operation.

+ +
+
+ +

◆ updateModificationAndAccessTimeOfItemAtURL:error:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (BOOL) updateModificationAndAccessTimeOfItemAtURL: (NSURL *) targetURL
error:(NSError **) error 
+
+

Updates the modification and access time of an item at a specified target URL to the current time

Parameters
+ + + +
targetURLA URL pointing to the target item whose modification and access time to update. The item at this URL must exist.
errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
+
+
+
Returns
YES if the target item's modification and access times have been updated, otherwise NO along with a populated error object
+

This method updates the modification and access time of an item to the current time, ideal for letting the system know we installed a new file or application.

+

This is not an atomic operation.

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.png new file mode 100644 index 0000000..84dd966 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_file_manager.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host-members.html new file mode 100644 index 0000000..d5d880e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host-members.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUHost Member List
+
+
+ +

This is the complete list of members for SUHost, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + +
boolForInfoDictionaryKey: (defined in SUHost)SUHost
boolForKey: (defined in SUHost)SUHost
boolForUserDefaultsKey: (defined in SUHost)SUHost
bundle (defined in SUHost)SUHost
bundlePath (defined in SUHost)SUHost
displayVersion (defined in SUHost)SUHost
initWithBundle: (defined in SUHost)SUHost
name (defined in SUHost)SUHost
objectForInfoDictionaryKey: (defined in SUHost)SUHost
objectForKey: (defined in SUHost)SUHost
objectForUserDefaultsKey: (defined in SUHost)SUHost
publicDSAKeyFileKey (defined in SUHost)SUHost
publicKeys (defined in SUHost)SUHost
runningOnReadOnlyVolume (defined in SUHost)SUHost
runningTranslocated (defined in SUHost)SUHost
setBool:forUserDefaultsKey: (defined in SUHost)SUHost
setObject:forUserDefaultsKey: (defined in SUHost)SUHost
validVersion (defined in SUHost)SUHost
version (defined in SUHost)SUHost
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.html new file mode 100644 index 0000000..a31a80b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.html @@ -0,0 +1,155 @@ + + + + + + + +Sparkle: SUHost Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUHost Class Reference
+
+
+
+Inheritance diagram for SUHost:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + +

+Instance Methods

+(instancetype) - initWithBundle:
 
+(nullable id) - objectForInfoDictionaryKey:
 
+(BOOL) - boolForInfoDictionaryKey:
 
+(nullable id) - objectForUserDefaultsKey:
 
+(void) - setObject:forUserDefaultsKey:
 
+(BOOL) - boolForUserDefaultsKey:
 
+(void) - setBool:forUserDefaultsKey:
 
+(nullable id) - objectForKey:
 
+(BOOL) - boolForKey:
 
+ + + + + + + + + + + + + + + + + + + + + +

+Properties

+NSBundle * bundle
 
+NSString * bundlePath
 
+NSString * name
 
+NSString * version
 
+BOOL validVersion
 
+NSString * displayVersion
 
+SUPublicKeyspublicKeys
 
+BOOL runningOnReadOnlyVolume
 
+BOOL runningTranslocated
 
+NSString * publicDSAKeyFileKey
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.png new file mode 100644 index 0000000..71bb186 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_host.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system-members.html new file mode 100644 index 0000000..c311394 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUOperatingSystem Member List
+
+
+ +

This is the complete list of members for SUOperatingSystem, including all inherited members.

+ + + + +
isOperatingSystemAtLeastVersion: (defined in SUOperatingSystem)SUOperatingSystemstatic
operatingSystemVersion (defined in SUOperatingSystem)SUOperatingSystemstatic
systemVersionString (defined in SUOperatingSystem)SUOperatingSystemstatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.html new file mode 100644 index 0000000..a546b8f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUOperatingSystem Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUOperatingSystem Class Reference
+
+
+
+Inheritance diagram for SUOperatingSystem:
+
+
+ +
+ + + + + + + + +

+Class Methods

+(NSOperatingSystemVersion+ operatingSystemVersion
 
+(BOOL) + isOperatingSystemAtLeastVersion:
 
+(NSString *) + systemVersionString
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.png new file mode 100644 index 0000000..aa71c75 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_operating_system.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info-members.html new file mode 100644 index 0000000..d5b4142 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUPhasedUpdateGroupInfo Member List
+
+
+ +

This is the complete list of members for SUPhasedUpdateGroupInfo, including all inherited members.

+ + + +
setNewUpdateGroupIdentifierForHost: (defined in SUPhasedUpdateGroupInfo)SUPhasedUpdateGroupInfostatic
updateGroupForHost: (defined in SUPhasedUpdateGroupInfo)SUPhasedUpdateGroupInfostatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.html new file mode 100644 index 0000000..9cfa3f8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SUPhasedUpdateGroupInfo Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUPhasedUpdateGroupInfo Class Reference
+
+
+
+Inheritance diagram for SUPhasedUpdateGroupInfo:
+
+
+ +
+ + + + + + +

+Class Methods

+(NSUInteger) + updateGroupForHost:
 
+(NSNumber *) + setNewUpdateGroupIdentifierForHost:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.png new file mode 100644 index 0000000..0a4585f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_phased_update_group_info.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys-members.html new file mode 100644 index 0000000..4226042 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUPublicKeys Member List
+
+
+ +

This is the complete list of members for SUPublicKeys, including all inherited members.

+ + + + + + + + +
dsaPubKey (defined in SUPublicKeys)SUPublicKeys
dsaPubKeyStatus (defined in SUPublicKeys)SUPublicKeys
ed25519_public_key (defined in SUPublicKeys)SUPublicKeysprotected
ed25519PubKey (defined in SUPublicKeys)SUPublicKeys
ed25519PubKeyStatus (defined in SUPublicKeys)SUPublicKeys
hasAnyKeysSUPublicKeys
initWithDsa:ed: (defined in SUPublicKeys)SUPublicKeys
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.html new file mode 100644 index 0000000..1adaf6d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: SUPublicKeys Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUPublicKeys Class Reference
+
+
+
+Inheritance diagram for SUPublicKeys:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initWithDsa:ed:
 
+ + + +

+Protected Attributes

+unsigned char ed25519_public_key [32]
 
+ + + + + + + + + + + + +

+Properties

+NSString * dsaPubKey
 
+SUSigningInputStatus dsaPubKeyStatus
 
+const unsigned char * ed25519PubKey
 
+SUSigningInputStatus ed25519PubKeyStatus
 
+BOOL hasAnyKeys
 Returns YES if either key is present (though they may be invalid).
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.png new file mode 100644 index 0000000..a4c9721 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_public_keys.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures-members.html new file mode 100644 index 0000000..88c4376 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUSignatures Member List
+
+
+ +

This is the complete list of members for SUSignatures, including all inherited members.

+ + + + + + + +
dsaSignature (defined in SUSignatures)SUSignatures
dsaSignatureStatus (defined in SUSignatures)SUSignatures
ed25519_signature (defined in SUSignatures)SUSignaturesprotected
ed25519Signature (defined in SUSignatures)SUSignatures
ed25519SignatureStatus (defined in SUSignatures)SUSignatures
initWithDsa:ed: (defined in SUSignatures)SUSignatures
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.html new file mode 100644 index 0000000..86e1719 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: SUSignatures Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUSignatures Class Reference
+
+
+
+Inheritance diagram for SUSignatures:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initWithDsa:ed:
 
+ + + +

+Protected Attributes

+unsigned char ed25519_signature [64]
 
+ + + + + + + + + +

+Properties

+NSData * dsaSignature
 
+SUSigningInputStatus dsaSignatureStatus
 
+const unsigned char * ed25519Signature
 
+SUSigningInputStatus ed25519SignatureStatus
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.png new file mode 100644 index 0000000..51488e5 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_signatures.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator-members.html new file mode 100644 index 0000000..d493f4d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUStandardVersionComparator Member List
+
+
+ +

This is the complete list of members for SUStandardVersionComparator, including all inherited members.

+ + + + +
compareVersion:toVersion:SUStandardVersionComparator
defaultComparatorSUStandardVersionComparatorstatic
initSUStandardVersionComparator
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.html new file mode 100644 index 0000000..6a8ddfe --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.html @@ -0,0 +1,173 @@ + + + + + + + +Sparkle: SUStandardVersionComparator Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUStandardVersionComparator Class Reference
+
+
+ +

Sparkle's default version comparator. + More...

+ +

#import <SUStandardVersionComparator.h>

+
+Inheritance diagram for SUStandardVersionComparator:
+
+
+ + +<SUVersionComparison> + +
+ + + + + + + + +

+Instance Methods

+(instancetype) - init
 Initializes a new instance of the standard version comparator.
 
(NSComparisonResult) - compareVersion:toVersion:
 Compares version strings through textual analysis. More...
 
+ + + + +

+Class Methods

(SUStandardVersionComparator *) + defaultComparator
 Returns a singleton instance of the comparator. More...
 
+

Detailed Description

+

Sparkle's default version comparator.

+

This comparator is adapted from MacPAD, by Kevin Ballard. It's "dumb" in that it does essentially string comparison, in components split by character type.

+

Method Documentation

+ +

◆ compareVersion:toVersion:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (NSComparisonResult) compareVersion: (NSString *) versionA
toVersion:(NSString *) versionB 
+
+ +

Compares version strings through textual analysis.

+

See the implementation for more details.

+ +

Reimplemented from <SUVersionComparison>.

+ +
+
+ +

◆ defaultComparator

+ +
+
+ + + + + + + +
+ (SUStandardVersionComparator *) defaultComparator
+
+ +

Returns a singleton instance of the comparator.

+

It is usually preferred to alloc/init new a comparator instead.

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.png new file mode 100644 index 0000000..17ded2b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_standard_version_comparator.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller-members.html new file mode 100644 index 0000000..eb87394 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller-members.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUStatusController Member List
+
+
+ +

This is the complete list of members for SUStatusController, including all inherited members.

+ + + + + + + + + + + +
actionButton (defined in SUStatusController)SUStatusController
beginActionWithTitle:maxProgressValue:statusText: (defined in SUStatusController)SUStatusController
buttonEnabled (defined in SUStatusController)SUStatusController
initWithHost: (defined in SUStatusController)SUStatusController
maxProgressValue (defined in SUStatusController)SUStatusController
progressBar (defined in SUStatusController)SUStatusController
progressValue (defined in SUStatusController)SUStatusController
setButtonTitle:target:action:isDefault: (defined in SUStatusController)SUStatusController
statusText (defined in SUStatusController)SUStatusController
statusTextField (defined in SUStatusController)SUStatusController
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.html new file mode 100644 index 0000000..7e21edc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.html @@ -0,0 +1,128 @@ + + + + + + + +Sparkle: SUStatusController Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUStatusController Class Reference
+
+
+
+Inheritance diagram for SUStatusController:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithHost:
 
+(void) - beginActionWithTitle:maxProgressValue:statusText:
 
+(void) - setButtonTitle:target:action:isDefault:
 
+ + + + + + + + + + + + + + + +

+Properties

+IBOutlet NSButton * actionButton
 
+IBOutlet NSProgressIndicator * progressBar
 
+IBOutlet NSTextField * statusTextField
 
+NSString * statusText
 
+double progressValue
 
+double maxProgressValue
 
+BOOL buttonEnabled
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.png new file mode 100644 index 0000000..99274ec Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_status_controller.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler-members.html new file mode 100644 index 0000000..109eaa0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUSystemProfiler Member List
+
+
+ +

This is the complete list of members for SUSystemProfiler, including all inherited members.

+ + +
systemProfileArrayForHost: (defined in SUSystemProfiler)SUSystemProfilerstatic
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.html new file mode 100644 index 0000000..61a9789 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: SUSystemProfiler Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUSystemProfiler Class Reference
+
+
+
+Inheritance diagram for SUSystemProfiler:
+
+
+ +
+ + + + +

+Class Methods

+(NSArray< NSDictionary< NSString *, NSString * > * > *) + systemProfileArrayForHost:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.png new file mode 100644 index 0000000..14dca2b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_system_profiler.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group-members.html new file mode 100644 index 0000000..754d9ee --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUTouchBarButtonGroup Member List
+
+
+ +

This is the complete list of members for SUTouchBarButtonGroup, including all inherited members.

+ + + +
buttons (defined in SUTouchBarButtonGroup)SUTouchBarButtonGroup
initByReferencingButtons: (defined in SUTouchBarButtonGroup)SUTouchBarButtonGroup
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.html new file mode 100644 index 0000000..1c2c0a9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: SUTouchBarButtonGroup Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUTouchBarButtonGroup Class Reference
+
+
+
+Inheritance diagram for SUTouchBarButtonGroup:
+
+
+ +
+ + + + +

+Instance Methods

+(instancetype) - initByReferencingButtons:
 
+ + + +

+Properties

+NSArray< NSButton * > * buttons
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.png new file mode 100644 index 0000000..e5e8d05 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_touch_bar_button_group.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response-members.html new file mode 100644 index 0000000..2864cf0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUUpdatePermissionResponse Member List
+
+
+ +

This is the complete list of members for SUUpdatePermissionResponse, including all inherited members.

+ + + + + +
automaticUpdateChecksSUUpdatePermissionResponse
initWithAutomaticUpdateChecks:sendSystemProfile:SUUpdatePermissionResponse
NS_UNAVAILABLE (defined in SUUpdatePermissionResponse)SUUpdatePermissionResponse
sendSystemProfileSUUpdatePermissionResponse
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.html new file mode 100644 index 0000000..cca0313 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: SUUpdatePermissionResponse Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUUpdatePermissionResponse Class Reference
+
+
+ +

This class represents a response for permission to check updates. + More...

+ +

#import <SUUpdatePermissionResponse.h>

+
+Inheritance diagram for SUUpdatePermissionResponse:
+
+
+ +
+ + + + + + + +

+Instance Methods

(instancetype) - initWithAutomaticUpdateChecks:sendSystemProfile:
 Initializes a new update permission response instance. More...
 
+(instancetype) - NS_UNAVAILABLE
 
+ + + + + + + +

+Properties

+BOOL automaticUpdateChecks
 A read-only property indicating whether automatic update checks are allowed or not.
 
+BOOL sendSystemProfile
 A read-only property indicating if system profile should be sent or not.
 
+

Detailed Description

+

This class represents a response for permission to check updates.

+

Method Documentation

+ +

◆ initWithAutomaticUpdateChecks:sendSystemProfile:

+ +
+
+ + + + + + + + + + + + + + + + + + +
- (instancetype) initWithAutomaticUpdateChecks: (BOOL) automaticUpdateChecks
sendSystemProfile:(BOOL) sendSystemProfile 
+
+ +

Initializes a new update permission response instance.

+
Parameters
+ + + +
automaticUpdateChecksFlag for whether to allow automatic update checks.
sendSystemProfileFlag for if system profile information should be sent to the server hosting the appcast.
+
+
+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.png new file mode 100644 index 0000000..a4f6923 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_permission_response.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator-members.html new file mode 100644 index 0000000..65fb9b4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
SUUpdateValidator Member List
+
+
+ +

This is the complete list of members for SUUpdateValidator, including all inherited members.

+ + + + +
initWithDownloadPath:signatures:host: (defined in SUUpdateValidator)SUUpdateValidator
validateDownloadPathWithError: (defined in SUUpdateValidator)SUUpdateValidator
validateWithUpdateDirectory:error: (defined in SUUpdateValidator)SUUpdateValidator
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.html new file mode 100644 index 0000000..9706628 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUUpdateValidator Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
SUUpdateValidator Class Reference
+
+
+
+Inheritance diagram for SUUpdateValidator:
+
+
+ +
+ + + + + + + + +

+Instance Methods

+(instancetype) - initWithDownloadPath:signatures:host:
 
+(BOOL) - validateDownloadPathWithError:
 
+(BOOL) - validateWithUpdateDirectory:error:
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.png new file mode 100644 index 0000000..8c1924b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_s_u_update_validator.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress-members.html new file mode 100644 index 0000000..c2cb392 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
ShowInstallerProgress Member List
+
+
+ +

This is the complete list of members for ShowInstallerProgress, including all inherited members.

+ + + +
installerProgressShouldDisplayWithHost: (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
installerProgressShouldStop (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.html new file mode 100644 index 0000000..8c4ef91 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: ShowInstallerProgress Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
ShowInstallerProgress Class Reference
+
+
+
+Inheritance diagram for ShowInstallerProgress:
+
+
+ + +<InstallerProgressDelegate> + +
+ + + + + + + +

+Additional Inherited Members

- Instance Methods inherited from <InstallerProgressDelegate>
+(void) - installerProgressShouldDisplayWithHost:
 
+(void) - installerProgressShouldStop
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.png new file mode 100644 index 0000000..58adadb Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_show_installer_progress.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener-members.html new file mode 100644 index 0000000..d644770 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
TerminationListener Member List
+
+
+ +

This is the complete list of members for TerminationListener, including all inherited members.

+ + + + +
initWithProcessIdentifier: (defined in TerminationListener)TerminationListener
startListeningWithCompletion: (defined in TerminationListener)TerminationListener
terminated (defined in TerminationListener)TerminationListener
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.html new file mode 100644 index 0000000..78c86e5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: TerminationListener Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
Sparkle +  2.0.0 +
+
A software update framework for macOS
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+ +
+
TerminationListener Class Reference
+
+
+
+Inheritance diagram for TerminationListener:
+
+
+ +
+ + + + + + +

+Instance Methods

+(instancetype) - initWithProcessIdentifier:
 
+(void) - startListeningWithCompletion:
 
+ + + +

+Properties

+BOOL terminated
 
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.png new file mode 100644 index 0000000..27b3057 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/interface_termination_listener.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/jquery.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/jquery.js new file mode 100644 index 0000000..103c32d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/jquery.js @@ -0,0 +1,35 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element +},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** + * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.js new file mode 100755 index 0000000..1e55d6e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.js @@ -0,0 +1,70 @@ +window.jazzy = {'docset': false} +if (typeof window.dash != 'undefined') { + document.documentElement.className += ' dash' + window.jazzy.docset = true +} +if (navigator.userAgent.match(/xcode/i)) { + document.documentElement.className += ' xcode' + window.jazzy.docset = true +} + +function toggleItem($link, $content) { + var animationDuration = 300; + $link.toggleClass('token-open'); + $content.slideToggle(animationDuration); +} + +function itemLinkToContent($link) { + return $link.parent().parent().next(); +} + +// On doc load + hash-change, open any targetted item +function openCurrentItemIfClosed() { + if (window.jazzy.docset) { + return; + } + var $link = $(`a[name="${location.hash.substring(1)}"]`).nextAll('.token'); + $content = itemLinkToContent($link); + if ($content.is(':hidden')) { + toggleItem($link, $content); + } +} + +$(openCurrentItemIfClosed); +$(window).on('hashchange', openCurrentItemIfClosed); + +// On item link ('token') click, toggle its discussion +$('.token').on('click', function(event) { + if (window.jazzy.docset) { + return; + } + var $link = $(this); + toggleItem($link, itemLinkToContent($link)); + + // Keeps the document from jumping to the hash. + var href = $link.attr('href'); + if (history.pushState) { + history.pushState({}, '', href); + } else { + location.hash = href; + } + event.preventDefault(); +}); + +// Clicks on links to the current, closed, item need to open the item +$("a:not('.token')").on('click', function() { + if (location == this.href) { + openCurrentItemIfClosed(); + } +}); + +// KaTeX rendering +if ("katex" in window) { + $($('.math').each( (_, element) => { + katex.render(element.textContent, element, { + displayMode: $(element).hasClass('m-block'), + throwOnError: false, + trust: true + }); + })) +} diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.search.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.search.js new file mode 100644 index 0000000..e3d1ab9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jazzy.search.js @@ -0,0 +1,70 @@ +$(function(){ + var $typeahead = $('[data-typeahead]'); + var $form = $typeahead.parents('form'); + var searchURL = $form.attr('action'); + + function displayTemplate(result) { + return result.name; + } + + function suggestionTemplate(result) { + var t = '
'; + t += '' + result.name + ''; + if (result.parent_name) { + t += '' + result.parent_name + ''; + } + t += '
'; + return t; + } + + $typeahead.one('focus', function() { + $form.addClass('loading'); + + $.getJSON(searchURL).then(function(searchData) { + const searchIndex = lunr(function() { + this.ref('url'); + this.field('name'); + this.field('abstract'); + for (const [url, doc] of Object.entries(searchData)) { + this.add({url: url, name: doc.name, abstract: doc.abstract}); + } + }); + + $typeahead.typeahead( + { + highlight: true, + minLength: 3, + autoselect: true + }, + { + limit: 10, + display: displayTemplate, + templates: { suggestion: suggestionTemplate }, + source: function(query, sync) { + const lcSearch = query.toLowerCase(); + const results = searchIndex.query(function(q) { + q.term(lcSearch, { boost: 100 }); + q.term(lcSearch, { + boost: 10, + wildcard: lunr.Query.wildcard.TRAILING + }); + }).map(function(result) { + var doc = searchData[result.ref]; + doc.url = result.ref; + return doc; + }); + sync(results); + } + } + ); + $form.removeClass('loading'); + $typeahead.trigger('focus'); + }); + }); + + var baseURL = searchURL.slice(0, -"search.json".length); + + $typeahead.on('typeahead:select', function(e, result) { + window.location = baseURL + result.url; + }); +}); diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jquery.min.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jquery.min.js new file mode 100644 index 0000000..c4c6022 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 00){var c=e.utils.clone(r)||{};c.position=[a,l],c.index=s.length,s.push(new e.Token(i.slice(a,o),c))}a=o+1}}return s},e.tokenizer.separator=/[\s\-]+/,e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,r){r in this.registeredFunctions&&e.utils.warn("Overwriting existing registered function: "+r),t.label=r,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var r=t.label&&t.label in this.registeredFunctions;r||e.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},e.Pipeline.load=function(t){var r=new e.Pipeline;return t.forEach(function(t){var i=e.Pipeline.registeredFunctions[t];if(!i)throw new Error("Cannot load unregistered function: "+t);r.add(i)}),r},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){e.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},e.Pipeline.prototype.after=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,r)},e.Pipeline.prototype.before=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");this._stack.splice(i,0,r)},e.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);t!=-1&&this._stack.splice(t,1)},e.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},e.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var o,a=s.str.charAt(0);a in s.node.edges?o=s.node.edges[a]:(o=new e.TokenSet,s.node.edges[a]=o),1==s.str.length&&(o["final"]=!0),n.push({node:o,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(0!=s.editsRemaining){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new e.TokenSet;s.node.edges["*"]=u}if(0==s.str.length&&(u["final"]=!0),n.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&n.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),1==s.str.length&&(s.node["final"]=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new e.TokenSet;s.node.edges["*"]=l}1==s.str.length&&(l["final"]=!0),n.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var c,h=s.str.charAt(0),d=s.str.charAt(1);d in s.node.edges?c=s.node.edges[d]:(c=new e.TokenSet,s.node.edges[d]=c),1==s.str.length&&(c["final"]=!0),n.push({node:c,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var r=new e.TokenSet,i=r,n=0,s=t.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r["char"]]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},e.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},e.Index.prototype.search=function(t){return this.query(function(r){var i=new e.QueryParser(t,r);i.parse()})},e.Index.prototype.query=function(t){for(var r=new e.Query(this.fields),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},e.Builder.prototype.k1=function(e){this._k1=e},e.Builder.prototype.add=function(t,r){var i=t[this._ref],n=Object.keys(this._fields);this._documents[i]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,r;do t=this.next(),r=t.charCodeAt(0);while(r>47&&r<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var r=t.next();if(r==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(92!=r.charCodeAt(0)){if(":"==r)return e.QueryLexer.lexField;if("~"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if("^"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if("+"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if("-"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(r.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}else t.escapeCharacter()}},e.QueryParser=function(t,r){this.lexer=new e.QueryLexer(t),this.query=r,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},e.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},e.QueryParser.parseClause=function(t){var r=t.peekLexeme();if(void 0!=r)switch(r.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(i+=" with value '"+r.str+"'"),new e.QueryParseError(i,r.start,r.end)}},e.QueryParser.parsePresence=function(t){var r=t.consumeLexeme();if(void 0!=r){switch(r.str){case"-":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case"+":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i="unrecognised presence operator'"+r.str+"'";throw new e.QueryParseError(i,r.start,r.end)}var n=t.peekLexeme();if(void 0==n){var i="expecting term or field, found nothing";throw new e.QueryParseError(i,r.start,r.end)}switch(n.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expecting term or field, found '"+n.type+"'";throw new e.QueryParseError(i,n.start,n.end)}}},e.QueryParser.parseField=function(t){var r=t.consumeLexeme();if(void 0!=r){if(t.query.allFields.indexOf(r.str)==-1){var i=t.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),n="unrecognised field '"+r.str+"', possible fields: "+i;throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.fields=[r.str];var s=t.peekLexeme();if(void 0==s){var n="expecting term, found nothing";throw new e.QueryParseError(n,r.start,r.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var n="expecting term, found '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var r=t.consumeLexeme();if(void 0!=r){t.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(void 0==i)return void t.nextClause();switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+i.type+"'";throw new e.QueryParseError(n,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="edit distance must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="boost must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.lunr=t()}(this,function(){return e})}(); diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/typeahead.jquery.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/typeahead.jquery.js new file mode 100644 index 0000000..3a2d2ab --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/js/typeahead.jquery.js @@ -0,0 +1,1694 @@ +/*! + * typeahead.js 1.3.1 + * https://github.com/corejavascript/typeahead.js + * Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT + */ + + +(function(root, factory) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], function(a0) { + return factory(a0); + }); + } else if (typeof module === "object" && module.exports) { + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +})(this, function($) { + var _ = function() { + "use strict"; + return { + isMsie: function() { + return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false; + }, + isBlankString: function(str) { + return !str || /^\s*$/.test(str); + }, + escapeRegExChars: function(str) { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); + }, + isString: function(obj) { + return typeof obj === "string"; + }, + isNumber: function(obj) { + return typeof obj === "number"; + }, + isArray: $.isArray, + isFunction: $.isFunction, + isObject: $.isPlainObject, + isUndefined: function(obj) { + return typeof obj === "undefined"; + }, + isElement: function(obj) { + return !!(obj && obj.nodeType === 1); + }, + isJQuery: function(obj) { + return obj instanceof $; + }, + toStr: function toStr(s) { + return _.isUndefined(s) || s === null ? "" : s + ""; + }, + bind: $.proxy, + each: function(collection, cb) { + $.each(collection, reverseArgs); + function reverseArgs(index, value) { + return cb(value, index); + } + }, + map: $.map, + filter: $.grep, + every: function(obj, test) { + var result = true; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (!(result = test.call(null, val, key, obj))) { + return false; + } + }); + return !!result; + }, + some: function(obj, test) { + var result = false; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (result = test.call(null, val, key, obj)) { + return false; + } + }); + return !!result; + }, + mixin: $.extend, + identity: function(x) { + return x; + }, + clone: function(obj) { + return $.extend(true, {}, obj); + }, + getIdGenerator: function() { + var counter = 0; + return function() { + return counter++; + }; + }, + templatify: function templatify(obj) { + return $.isFunction(obj) ? obj : template; + function template() { + return String(obj); + } + }, + defer: function(fn) { + setTimeout(fn, 0); + }, + debounce: function(func, wait, immediate) { + var timeout, result; + return function() { + var context = this, args = arguments, later, callNow; + later = function() { + timeout = null; + if (!immediate) { + result = func.apply(context, args); + } + }; + callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) { + result = func.apply(context, args); + } + return result; + }; + }, + throttle: function(func, wait) { + var context, args, timeout, result, previous, later; + previous = 0; + later = function() { + previous = new Date(); + timeout = null; + result = func.apply(context, args); + }; + return function() { + var now = new Date(), remaining = wait - (now - previous); + context = this; + args = arguments; + if (remaining <= 0) { + clearTimeout(timeout); + timeout = null; + previous = now; + result = func.apply(context, args); + } else if (!timeout) { + timeout = setTimeout(later, remaining); + } + return result; + }; + }, + stringify: function(val) { + return _.isString(val) ? val : JSON.stringify(val); + }, + guid: function() { + function _p8(s) { + var p = (Math.random().toString(16) + "000000000").substr(2, 8); + return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p; + } + return "tt-" + _p8() + _p8(true) + _p8(true) + _p8(); + }, + noop: function() {} + }; + }(); + var WWW = function() { + "use strict"; + var defaultClassNames = { + wrapper: "twitter-typeahead", + input: "tt-input", + hint: "tt-hint", + menu: "tt-menu", + dataset: "tt-dataset", + suggestion: "tt-suggestion", + selectable: "tt-selectable", + empty: "tt-empty", + open: "tt-open", + cursor: "tt-cursor", + highlight: "tt-highlight" + }; + return build; + function build(o) { + var www, classes; + classes = _.mixin({}, defaultClassNames, o); + www = { + css: buildCss(), + classes: classes, + html: buildHtml(classes), + selectors: buildSelectors(classes) + }; + return { + css: www.css, + html: www.html, + classes: www.classes, + selectors: www.selectors, + mixin: function(o) { + _.mixin(o, www); + } + }; + } + function buildHtml(c) { + return { + wrapper: '', + menu: '
' + }; + } + function buildSelectors(classes) { + var selectors = {}; + _.each(classes, function(v, k) { + selectors[k] = "." + v; + }); + return selectors; + } + function buildCss() { + var css = { + wrapper: { + position: "relative", + display: "inline-block" + }, + hint: { + position: "absolute", + top: "0", + left: "0", + borderColor: "transparent", + boxShadow: "none", + opacity: "1" + }, + input: { + position: "relative", + verticalAlign: "top", + backgroundColor: "transparent" + }, + inputWithNoHint: { + position: "relative", + verticalAlign: "top" + }, + menu: { + position: "absolute", + top: "100%", + left: "0", + zIndex: "100", + display: "none" + }, + ltr: { + left: "0", + right: "auto" + }, + rtl: { + left: "auto", + right: " 0" + } + }; + if (_.isMsie()) { + _.mixin(css.input, { + backgroundImage: "url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)" + }); + } + return css; + } + }(); + var EventBus = function() { + "use strict"; + var namespace, deprecationMap; + namespace = "typeahead:"; + deprecationMap = { + render: "rendered", + cursorchange: "cursorchanged", + select: "selected", + autocomplete: "autocompleted" + }; + function EventBus(o) { + if (!o || !o.el) { + $.error("EventBus initialized without el"); + } + this.$el = $(o.el); + } + _.mixin(EventBus.prototype, { + _trigger: function(type, args) { + var $e = $.Event(namespace + type); + this.$el.trigger.call(this.$el, $e, args || []); + return $e; + }, + before: function(type) { + var args, $e; + args = [].slice.call(arguments, 1); + $e = this._trigger("before" + type, args); + return $e.isDefaultPrevented(); + }, + trigger: function(type) { + var deprecatedType; + this._trigger(type, [].slice.call(arguments, 1)); + if (deprecatedType = deprecationMap[type]) { + this._trigger(deprecatedType, [].slice.call(arguments, 1)); + } + } + }); + return EventBus; + }(); + var EventEmitter = function() { + "use strict"; + var splitter = /\s+/, nextTick = getNextTick(); + return { + onSync: onSync, + onAsync: onAsync, + off: off, + trigger: trigger + }; + function on(method, types, cb, context) { + var type; + if (!cb) { + return this; + } + types = types.split(splitter); + cb = context ? bindContext(cb, context) : cb; + this._callbacks = this._callbacks || {}; + while (type = types.shift()) { + this._callbacks[type] = this._callbacks[type] || { + sync: [], + async: [] + }; + this._callbacks[type][method].push(cb); + } + return this; + } + function onAsync(types, cb, context) { + return on.call(this, "async", types, cb, context); + } + function onSync(types, cb, context) { + return on.call(this, "sync", types, cb, context); + } + function off(types) { + var type; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + while (type = types.shift()) { + delete this._callbacks[type]; + } + return this; + } + function trigger(types) { + var type, callbacks, args, syncFlush, asyncFlush; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + args = [].slice.call(arguments, 1); + while ((type = types.shift()) && (callbacks = this._callbacks[type])) { + syncFlush = getFlush(callbacks.sync, this, [ type ].concat(args)); + asyncFlush = getFlush(callbacks.async, this, [ type ].concat(args)); + syncFlush() && nextTick(asyncFlush); + } + return this; + } + function getFlush(callbacks, context, args) { + return flush; + function flush() { + var cancelled; + for (var i = 0, len = callbacks.length; !cancelled && i < len; i += 1) { + cancelled = callbacks[i].apply(context, args) === false; + } + return !cancelled; + } + } + function getNextTick() { + var nextTickFn; + if (window.setImmediate) { + nextTickFn = function nextTickSetImmediate(fn) { + setImmediate(function() { + fn(); + }); + }; + } else { + nextTickFn = function nextTickSetTimeout(fn) { + setTimeout(function() { + fn(); + }, 0); + }; + } + return nextTickFn; + } + function bindContext(fn, context) { + return fn.bind ? fn.bind(context) : function() { + fn.apply(context, [].slice.call(arguments, 0)); + }; + } + }(); + var highlight = function(doc) { + "use strict"; + var defaults = { + node: null, + pattern: null, + tagName: "strong", + className: null, + wordsOnly: false, + caseSensitive: false, + diacriticInsensitive: false + }; + var accented = { + A: "[AaªÀ-Åà-åĀ-ąǍǎȀ-ȃȦȧᴬᵃḀḁẚẠ-ảₐ℀℁℻⒜Ⓐⓐ㍱-㍴㎀-㎄㎈㎉㎩-㎯㏂㏊㏟㏿Aa]", + B: "[BbᴮᵇḂ-ḇℬ⒝Ⓑⓑ㍴㎅-㎇㏃㏈㏔㏝Bb]", + C: "[CcÇçĆ-čᶜ℀ℂ℃℅℆ℭⅭⅽ⒞Ⓒⓒ㍶㎈㎉㎝㎠㎤㏄-㏇Cc]", + D: "[DdĎďDŽ-džDZ-dzᴰᵈḊ-ḓⅅⅆⅮⅾ⒟Ⓓⓓ㋏㍲㍷-㍹㎗㎭-㎯㏅㏈Dd]", + E: "[EeÈ-Ëè-ëĒ-ěȄ-ȇȨȩᴱᵉḘ-ḛẸ-ẽₑ℡ℯℰⅇ⒠Ⓔⓔ㉐㋍㋎Ee]", + F: "[FfᶠḞḟ℉ℱ℻⒡Ⓕⓕ㎊-㎌㎙ff-fflFf]", + G: "[GgĜ-ģǦǧǴǵᴳᵍḠḡℊ⒢Ⓖⓖ㋌㋍㎇㎍-㎏㎓㎬㏆㏉㏒㏿Gg]", + H: "[HhĤĥȞȟʰᴴḢ-ḫẖℋ-ℎ⒣Ⓗⓗ㋌㍱㎐-㎔㏊㏋㏗Hh]", + I: "[IiÌ-Ïì-ïĨ-İIJijǏǐȈ-ȋᴵᵢḬḭỈ-ịⁱℐℑℹⅈⅠ-ⅣⅥ-ⅨⅪⅫⅰ-ⅳⅵ-ⅸⅺⅻ⒤Ⓘⓘ㍺㏌㏕fiffiIi]", + J: "[JjIJ-ĵLJ-njǰʲᴶⅉ⒥ⒿⓙⱼJj]", + K: "[KkĶķǨǩᴷᵏḰ-ḵK⒦Ⓚⓚ㎄㎅㎉㎏㎑㎘㎞㎢㎦㎪㎸㎾㏀㏆㏍-㏏Kk]", + L: "[LlĹ-ŀLJ-ljˡᴸḶḷḺ-ḽℒℓ℡Ⅼⅼ⒧Ⓛⓛ㋏㎈㎉㏐-㏓㏕㏖㏿flfflLl]", + M: "[MmᴹᵐḾ-ṃ℠™ℳⅯⅿ⒨Ⓜⓜ㍷-㍹㎃㎆㎎㎒㎖㎙-㎨㎫㎳㎷㎹㎽㎿㏁㏂㏎㏐㏔-㏖㏘㏙㏞㏟Mm]", + N: "[NnÑñŃ-ʼnNJ-njǸǹᴺṄ-ṋⁿℕ№⒩Ⓝⓝ㎁㎋㎚㎱㎵㎻㏌㏑Nn]", + O: "[OoºÒ-Öò-öŌ-őƠơǑǒǪǫȌ-ȏȮȯᴼᵒỌ-ỏₒ℅№ℴ⒪Ⓞⓞ㍵㏇㏒㏖Oo]", + P: "[PpᴾᵖṔ-ṗℙ⒫Ⓟⓟ㉐㍱㍶㎀㎊㎩-㎬㎰㎴㎺㏋㏗-㏚Pp]", + Q: "[Qqℚ⒬Ⓠⓠ㏃Qq]", + R: "[RrŔ-řȐ-ȓʳᴿᵣṘ-ṛṞṟ₨ℛ-ℝ⒭Ⓡⓡ㋍㍴㎭-㎯㏚㏛Rr]", + S: "[SsŚ-šſȘșˢṠ-ṣ₨℁℠⒮Ⓢⓢ㎧㎨㎮-㎳㏛㏜stSs]", + T: "[TtŢ-ťȚțᵀᵗṪ-ṱẗ℡™⒯Ⓣⓣ㉐㋏㎔㏏ſtstTt]", + U: "[UuÙ-Üù-üŨ-ųƯưǓǔȔ-ȗᵁᵘᵤṲ-ṷỤ-ủ℆⒰Ⓤⓤ㍳㍺Uu]", + V: "[VvᵛᵥṼ-ṿⅣ-Ⅷⅳ-ⅷ⒱Ⓥⓥⱽ㋎㍵㎴-㎹㏜㏞Vv]", + W: "[WwŴŵʷᵂẀ-ẉẘ⒲Ⓦⓦ㎺-㎿㏝Ww]", + X: "[XxˣẊ-ẍₓ℻Ⅸ-Ⅻⅸ-ⅻ⒳Ⓧⓧ㏓Xx]", + Y: "[YyÝýÿŶ-ŸȲȳʸẎẏẙỲ-ỹ⒴Ⓨⓨ㏉Yy]", + Z: "[ZzŹ-žDZ-dzᶻẐ-ẕℤℨ⒵Ⓩⓩ㎐-㎔Zz]" + }; + return function hightlight(o) { + var regex; + o = _.mixin({}, defaults, o); + if (!o.node || !o.pattern) { + return; + } + o.pattern = _.isArray(o.pattern) ? o.pattern : [ o.pattern ]; + regex = getRegex(o.pattern, o.caseSensitive, o.wordsOnly, o.diacriticInsensitive); + traverse(o.node, hightlightTextNode); + function hightlightTextNode(textNode) { + var match, patternNode, wrapperNode; + if (match = regex.exec(textNode.data)) { + wrapperNode = doc.createElement(o.tagName); + o.className && (wrapperNode.className = o.className); + patternNode = textNode.splitText(match.index); + patternNode.splitText(match[0].length); + wrapperNode.appendChild(patternNode.cloneNode(true)); + textNode.parentNode.replaceChild(wrapperNode, patternNode); + } + return !!match; + } + function traverse(el, hightlightTextNode) { + var childNode, TEXT_NODE_TYPE = 3; + for (var i = 0; i < el.childNodes.length; i++) { + childNode = el.childNodes[i]; + if (childNode.nodeType === TEXT_NODE_TYPE) { + i += hightlightTextNode(childNode) ? 1 : 0; + } else { + traverse(childNode, hightlightTextNode); + } + } + } + }; + function accent_replacer(chr) { + return accented[chr.toUpperCase()] || chr; + } + function getRegex(patterns, caseSensitive, wordsOnly, diacriticInsensitive) { + var escapedPatterns = [], regexStr; + for (var i = 0, len = patterns.length; i < len; i++) { + var escapedWord = _.escapeRegExChars(patterns[i]); + if (diacriticInsensitive) { + escapedWord = escapedWord.replace(/\S/g, accent_replacer); + } + escapedPatterns.push(escapedWord); + } + regexStr = wordsOnly ? "\\b(" + escapedPatterns.join("|") + ")\\b" : "(" + escapedPatterns.join("|") + ")"; + return caseSensitive ? new RegExp(regexStr) : new RegExp(regexStr, "i"); + } + }(window.document); + var Input = function() { + "use strict"; + var specialKeyCodeMap; + specialKeyCodeMap = { + 9: "tab", + 27: "esc", + 37: "left", + 39: "right", + 13: "enter", + 38: "up", + 40: "down" + }; + function Input(o, www) { + var id; + o = o || {}; + if (!o.input) { + $.error("input is missing"); + } + www.mixin(this); + this.$hint = $(o.hint); + this.$input = $(o.input); + this.$menu = $(o.menu); + id = this.$input.attr("id") || _.guid(); + this.$menu.attr("id", id + "_listbox"); + this.$hint.attr({ + "aria-hidden": true + }); + this.$input.attr({ + "aria-owns": id + "_listbox", + role: "combobox", + "aria-autocomplete": "list", + "aria-expanded": false + }); + this.query = this.$input.val(); + this.queryWhenFocused = this.hasFocus() ? this.query : null; + this.$overflowHelper = buildOverflowHelper(this.$input); + this._checkLanguageDirection(); + if (this.$hint.length === 0) { + this.setHint = this.getHint = this.clearHint = this.clearHintIfInvalid = _.noop; + } + this.onSync("cursorchange", this._updateDescendent); + } + Input.normalizeQuery = function(str) { + return _.toStr(str).replace(/^\s*/g, "").replace(/\s{2,}/g, " "); + }; + _.mixin(Input.prototype, EventEmitter, { + _onBlur: function onBlur() { + this.resetInputValue(); + this.trigger("blurred"); + }, + _onFocus: function onFocus() { + this.queryWhenFocused = this.query; + this.trigger("focused"); + }, + _onKeydown: function onKeydown($e) { + var keyName = specialKeyCodeMap[$e.which || $e.keyCode]; + this._managePreventDefault(keyName, $e); + if (keyName && this._shouldTrigger(keyName, $e)) { + this.trigger(keyName + "Keyed", $e); + } + }, + _onInput: function onInput() { + this._setQuery(this.getInputValue()); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + _managePreventDefault: function managePreventDefault(keyName, $e) { + var preventDefault; + switch (keyName) { + case "up": + case "down": + preventDefault = !withModifier($e); + break; + + default: + preventDefault = false; + } + preventDefault && $e.preventDefault(); + }, + _shouldTrigger: function shouldTrigger(keyName, $e) { + var trigger; + switch (keyName) { + case "tab": + trigger = !withModifier($e); + break; + + default: + trigger = true; + } + return trigger; + }, + _checkLanguageDirection: function checkLanguageDirection() { + var dir = (this.$input.css("direction") || "ltr").toLowerCase(); + if (this.dir !== dir) { + this.dir = dir; + this.$hint.attr("dir", dir); + this.trigger("langDirChanged", dir); + } + }, + _setQuery: function setQuery(val, silent) { + var areEquivalent, hasDifferentWhitespace; + areEquivalent = areQueriesEquivalent(val, this.query); + hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; + this.query = val; + if (!silent && !areEquivalent) { + this.trigger("queryChanged", this.query); + } else if (!silent && hasDifferentWhitespace) { + this.trigger("whitespaceChanged", this.query); + } + }, + _updateDescendent: function updateDescendent(event, id) { + this.$input.attr("aria-activedescendant", id); + }, + bind: function() { + var that = this, onBlur, onFocus, onKeydown, onInput; + onBlur = _.bind(this._onBlur, this); + onFocus = _.bind(this._onFocus, this); + onKeydown = _.bind(this._onKeydown, this); + onInput = _.bind(this._onInput, this); + this.$input.on("blur.tt", onBlur).on("focus.tt", onFocus).on("keydown.tt", onKeydown); + if (!_.isMsie() || _.isMsie() > 9) { + this.$input.on("input.tt", onInput); + } else { + this.$input.on("keydown.tt keypress.tt cut.tt paste.tt", function($e) { + if (specialKeyCodeMap[$e.which || $e.keyCode]) { + return; + } + _.defer(_.bind(that._onInput, that, $e)); + }); + } + return this; + }, + focus: function focus() { + this.$input.focus(); + }, + blur: function blur() { + this.$input.blur(); + }, + getLangDir: function getLangDir() { + return this.dir; + }, + getQuery: function getQuery() { + return this.query || ""; + }, + setQuery: function setQuery(val, silent) { + this.setInputValue(val); + this._setQuery(val, silent); + }, + hasQueryChangedSinceLastFocus: function hasQueryChangedSinceLastFocus() { + return this.query !== this.queryWhenFocused; + }, + getInputValue: function getInputValue() { + return this.$input.val(); + }, + setInputValue: function setInputValue(value) { + this.$input.val(value); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + resetInputValue: function resetInputValue() { + this.setInputValue(this.query); + }, + getHint: function getHint() { + return this.$hint.val(); + }, + setHint: function setHint(value) { + this.$hint.val(value); + }, + clearHint: function clearHint() { + this.setHint(""); + }, + clearHintIfInvalid: function clearHintIfInvalid() { + var val, hint, valIsPrefixOfHint, isValid; + val = this.getInputValue(); + hint = this.getHint(); + valIsPrefixOfHint = val !== hint && hint.indexOf(val) === 0; + isValid = val !== "" && valIsPrefixOfHint && !this.hasOverflow(); + !isValid && this.clearHint(); + }, + hasFocus: function hasFocus() { + return this.$input.is(":focus"); + }, + hasOverflow: function hasOverflow() { + var constraint = this.$input.width() - 2; + this.$overflowHelper.text(this.getInputValue()); + return this.$overflowHelper.width() >= constraint; + }, + isCursorAtEnd: function() { + var valueLength, selectionStart, range; + valueLength = this.$input.val().length; + selectionStart = this.$input[0].selectionStart; + if (_.isNumber(selectionStart)) { + return selectionStart === valueLength; + } else if (document.selection) { + range = document.selection.createRange(); + range.moveStart("character", -valueLength); + return valueLength === range.text.length; + } + return true; + }, + destroy: function destroy() { + this.$hint.off(".tt"); + this.$input.off(".tt"); + this.$overflowHelper.remove(); + this.$hint = this.$input = this.$overflowHelper = $("
"); + }, + setAriaExpanded: function setAriaExpanded(value) { + this.$input.attr("aria-expanded", value); + } + }); + return Input; + function buildOverflowHelper($input) { + return $('').css({ + position: "absolute", + visibility: "hidden", + whiteSpace: "pre", + fontFamily: $input.css("font-family"), + fontSize: $input.css("font-size"), + fontStyle: $input.css("font-style"), + fontVariant: $input.css("font-variant"), + fontWeight: $input.css("font-weight"), + wordSpacing: $input.css("word-spacing"), + letterSpacing: $input.css("letter-spacing"), + textIndent: $input.css("text-indent"), + textRendering: $input.css("text-rendering"), + textTransform: $input.css("text-transform") + }).insertAfter($input); + } + function areQueriesEquivalent(a, b) { + return Input.normalizeQuery(a) === Input.normalizeQuery(b); + } + function withModifier($e) { + return $e.altKey || $e.ctrlKey || $e.metaKey || $e.shiftKey; + } + }(); + var Dataset = function() { + "use strict"; + var keys, nameGenerator; + keys = { + dataset: "tt-selectable-dataset", + val: "tt-selectable-display", + obj: "tt-selectable-object" + }; + nameGenerator = _.getIdGenerator(); + function Dataset(o, www) { + o = o || {}; + o.templates = o.templates || {}; + o.templates.notFound = o.templates.notFound || o.templates.empty; + if (!o.source) { + $.error("missing source"); + } + if (!o.node) { + $.error("missing node"); + } + if (o.name && !isValidName(o.name)) { + $.error("invalid dataset name: " + o.name); + } + www.mixin(this); + this.highlight = !!o.highlight; + this.name = _.toStr(o.name || nameGenerator()); + this.limit = o.limit || 5; + this.displayFn = getDisplayFn(o.display || o.displayKey); + this.templates = getTemplates(o.templates, this.displayFn); + this.source = o.source.__ttAdapter ? o.source.__ttAdapter() : o.source; + this.async = _.isUndefined(o.async) ? this.source.length > 2 : !!o.async; + this._resetLastSuggestion(); + this.$el = $(o.node).attr("role", "presentation").addClass(this.classes.dataset).addClass(this.classes.dataset + "-" + this.name); + } + Dataset.extractData = function extractData(el) { + var $el = $(el); + if ($el.data(keys.obj)) { + return { + dataset: $el.data(keys.dataset) || "", + val: $el.data(keys.val) || "", + obj: $el.data(keys.obj) || null + }; + } + return null; + }; + _.mixin(Dataset.prototype, EventEmitter, { + _overwrite: function overwrite(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (this.async && this.templates.pending) { + this._renderPending(query); + } else if (!this.async && this.templates.notFound) { + this._renderNotFound(query); + } else { + this._empty(); + } + this.trigger("rendered", suggestions, false, this.name); + }, + _append: function append(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length && this.$lastSuggestion.length) { + this._appendSuggestions(query, suggestions); + } else if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (!this.$lastSuggestion.length && this.templates.notFound) { + this._renderNotFound(query); + } + this.trigger("rendered", suggestions, true, this.name); + }, + _renderSuggestions: function renderSuggestions(query, suggestions) { + var $fragment; + $fragment = this._getSuggestionsFragment(query, suggestions); + this.$lastSuggestion = $fragment.children().last(); + this.$el.html($fragment).prepend(this._getHeader(query, suggestions)).append(this._getFooter(query, suggestions)); + }, + _appendSuggestions: function appendSuggestions(query, suggestions) { + var $fragment, $lastSuggestion; + $fragment = this._getSuggestionsFragment(query, suggestions); + $lastSuggestion = $fragment.children().last(); + this.$lastSuggestion.after($fragment); + this.$lastSuggestion = $lastSuggestion; + }, + _renderPending: function renderPending(query) { + var template = this.templates.pending; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _renderNotFound: function renderNotFound(query) { + var template = this.templates.notFound; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _empty: function empty() { + this.$el.empty(); + this._resetLastSuggestion(); + }, + _getSuggestionsFragment: function getSuggestionsFragment(query, suggestions) { + var that = this, fragment; + fragment = document.createDocumentFragment(); + _.each(suggestions, function getSuggestionNode(suggestion) { + var $el, context; + context = that._injectQuery(query, suggestion); + $el = $(that.templates.suggestion(context)).data(keys.dataset, that.name).data(keys.obj, suggestion).data(keys.val, that.displayFn(suggestion)).addClass(that.classes.suggestion + " " + that.classes.selectable); + fragment.appendChild($el[0]); + }); + this.highlight && highlight({ + className: this.classes.highlight, + node: fragment, + pattern: query + }); + return $(fragment); + }, + _getFooter: function getFooter(query, suggestions) { + return this.templates.footer ? this.templates.footer({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _getHeader: function getHeader(query, suggestions) { + return this.templates.header ? this.templates.header({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _resetLastSuggestion: function resetLastSuggestion() { + this.$lastSuggestion = $(); + }, + _injectQuery: function injectQuery(query, obj) { + return _.isObject(obj) ? _.mixin({ + _query: query + }, obj) : obj; + }, + update: function update(query) { + var that = this, canceled = false, syncCalled = false, rendered = 0; + this.cancel(); + this.cancel = function cancel() { + canceled = true; + that.cancel = $.noop; + that.async && that.trigger("asyncCanceled", query, that.name); + }; + this.source(query, sync, async); + !syncCalled && sync([]); + function sync(suggestions) { + if (syncCalled) { + return; + } + syncCalled = true; + suggestions = (suggestions || []).slice(0, that.limit); + rendered = suggestions.length; + that._overwrite(query, suggestions); + if (rendered < that.limit && that.async) { + that.trigger("asyncRequested", query, that.name); + } + } + function async(suggestions) { + suggestions = suggestions || []; + if (!canceled && rendered < that.limit) { + that.cancel = $.noop; + var idx = Math.abs(rendered - that.limit); + rendered += idx; + that._append(query, suggestions.slice(0, idx)); + that.async && that.trigger("asyncReceived", query, that.name); + } + } + }, + cancel: $.noop, + clear: function clear() { + this._empty(); + this.cancel(); + this.trigger("cleared"); + }, + isEmpty: function isEmpty() { + return this.$el.is(":empty"); + }, + destroy: function destroy() { + this.$el = $("
"); + } + }); + return Dataset; + function getDisplayFn(display) { + display = display || _.stringify; + return _.isFunction(display) ? display : displayFn; + function displayFn(obj) { + return obj[display]; + } + } + function getTemplates(templates, displayFn) { + return { + notFound: templates.notFound && _.templatify(templates.notFound), + pending: templates.pending && _.templatify(templates.pending), + header: templates.header && _.templatify(templates.header), + footer: templates.footer && _.templatify(templates.footer), + suggestion: templates.suggestion ? userSuggestionTemplate : suggestionTemplate + }; + function userSuggestionTemplate(context) { + var template = templates.suggestion; + return $(template(context)).attr("id", _.guid()); + } + function suggestionTemplate(context) { + return $('
').attr("id", _.guid()).text(displayFn(context)); + } + } + function isValidName(str) { + return /^[_a-zA-Z0-9-]+$/.test(str); + } + }(); + var Menu = function() { + "use strict"; + function Menu(o, www) { + var that = this; + o = o || {}; + if (!o.node) { + $.error("node is required"); + } + www.mixin(this); + this.$node = $(o.node); + this.query = null; + this.datasets = _.map(o.datasets, initializeDataset); + function initializeDataset(oDataset) { + var node = that.$node.find(oDataset.node).first(); + oDataset.node = node.length ? node : $("
").appendTo(that.$node); + return new Dataset(oDataset, www); + } + } + _.mixin(Menu.prototype, EventEmitter, { + _onSelectableClick: function onSelectableClick($e) { + this.trigger("selectableClicked", $($e.currentTarget)); + }, + _onRendered: function onRendered(type, dataset, suggestions, async) { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetRendered", dataset, suggestions, async); + }, + _onCleared: function onCleared() { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetCleared"); + }, + _propagate: function propagate() { + this.trigger.apply(this, arguments); + }, + _allDatasetsEmpty: function allDatasetsEmpty() { + return _.every(this.datasets, _.bind(function isDatasetEmpty(dataset) { + var isEmpty = dataset.isEmpty(); + this.$node.attr("aria-expanded", !isEmpty); + return isEmpty; + }, this)); + }, + _getSelectables: function getSelectables() { + return this.$node.find(this.selectors.selectable); + }, + _removeCursor: function _removeCursor() { + var $selectable = this.getActiveSelectable(); + $selectable && $selectable.removeClass(this.classes.cursor); + }, + _ensureVisible: function ensureVisible($el) { + var elTop, elBottom, nodeScrollTop, nodeHeight; + elTop = $el.position().top; + elBottom = elTop + $el.outerHeight(true); + nodeScrollTop = this.$node.scrollTop(); + nodeHeight = this.$node.height() + parseInt(this.$node.css("paddingTop"), 10) + parseInt(this.$node.css("paddingBottom"), 10); + if (elTop < 0) { + this.$node.scrollTop(nodeScrollTop + elTop); + } else if (nodeHeight < elBottom) { + this.$node.scrollTop(nodeScrollTop + (elBottom - nodeHeight)); + } + }, + bind: function() { + var that = this, onSelectableClick; + onSelectableClick = _.bind(this._onSelectableClick, this); + this.$node.on("click.tt", this.selectors.selectable, onSelectableClick); + this.$node.on("mouseover", this.selectors.selectable, function() { + that.setCursor($(this)); + }); + this.$node.on("mouseleave", function() { + that._removeCursor(); + }); + _.each(this.datasets, function(dataset) { + dataset.onSync("asyncRequested", that._propagate, that).onSync("asyncCanceled", that._propagate, that).onSync("asyncReceived", that._propagate, that).onSync("rendered", that._onRendered, that).onSync("cleared", that._onCleared, that); + }); + return this; + }, + isOpen: function isOpen() { + return this.$node.hasClass(this.classes.open); + }, + open: function open() { + this.$node.scrollTop(0); + this.$node.addClass(this.classes.open); + }, + close: function close() { + this.$node.attr("aria-expanded", false); + this.$node.removeClass(this.classes.open); + this._removeCursor(); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.attr("dir", dir); + }, + selectableRelativeToCursor: function selectableRelativeToCursor(delta) { + var $selectables, $oldCursor, oldIndex, newIndex; + $oldCursor = this.getActiveSelectable(); + $selectables = this._getSelectables(); + oldIndex = $oldCursor ? $selectables.index($oldCursor) : -1; + newIndex = oldIndex + delta; + newIndex = (newIndex + 1) % ($selectables.length + 1) - 1; + newIndex = newIndex < -1 ? $selectables.length - 1 : newIndex; + return newIndex === -1 ? null : $selectables.eq(newIndex); + }, + setCursor: function setCursor($selectable) { + this._removeCursor(); + if ($selectable = $selectable && $selectable.first()) { + $selectable.addClass(this.classes.cursor); + this._ensureVisible($selectable); + } + }, + getSelectableData: function getSelectableData($el) { + return $el && $el.length ? Dataset.extractData($el) : null; + }, + getActiveSelectable: function getActiveSelectable() { + var $selectable = this._getSelectables().filter(this.selectors.cursor).first(); + return $selectable.length ? $selectable : null; + }, + getTopSelectable: function getTopSelectable() { + var $selectable = this._getSelectables().first(); + return $selectable.length ? $selectable : null; + }, + update: function update(query) { + var isValidUpdate = query !== this.query; + if (isValidUpdate) { + this.query = query; + _.each(this.datasets, updateDataset); + } + return isValidUpdate; + function updateDataset(dataset) { + dataset.update(query); + } + }, + empty: function empty() { + _.each(this.datasets, clearDataset); + this.query = null; + this.$node.addClass(this.classes.empty); + function clearDataset(dataset) { + dataset.clear(); + } + }, + destroy: function destroy() { + this.$node.off(".tt"); + this.$node = $("
"); + _.each(this.datasets, destroyDataset); + function destroyDataset(dataset) { + dataset.destroy(); + } + } + }); + return Menu; + }(); + var Status = function() { + "use strict"; + function Status(options) { + this.$el = $("", { + role: "status", + "aria-live": "polite" + }).css({ + position: "absolute", + padding: "0", + border: "0", + height: "1px", + width: "1px", + "margin-bottom": "-1px", + "margin-right": "-1px", + overflow: "hidden", + clip: "rect(0 0 0 0)", + "white-space": "nowrap" + }); + options.$input.after(this.$el); + _.each(options.menu.datasets, _.bind(function(dataset) { + if (dataset.onSync) { + dataset.onSync("rendered", _.bind(this.update, this)); + dataset.onSync("cleared", _.bind(this.cleared, this)); + } + }, this)); + } + _.mixin(Status.prototype, { + update: function update(event, suggestions) { + var length = suggestions.length; + var words; + if (length === 1) { + words = { + result: "result", + is: "is" + }; + } else { + words = { + result: "results", + is: "are" + }; + } + this.$el.text(length + " " + words.result + " " + words.is + " available, use up and down arrow keys to navigate."); + }, + cleared: function() { + this.$el.text(""); + } + }); + return Status; + }(); + var DefaultMenu = function() { + "use strict"; + var s = Menu.prototype; + function DefaultMenu() { + Menu.apply(this, [].slice.call(arguments, 0)); + } + _.mixin(DefaultMenu.prototype, Menu.prototype, { + open: function open() { + !this._allDatasetsEmpty() && this._show(); + return s.open.apply(this, [].slice.call(arguments, 0)); + }, + close: function close() { + this._hide(); + return s.close.apply(this, [].slice.call(arguments, 0)); + }, + _onRendered: function onRendered() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onRendered.apply(this, [].slice.call(arguments, 0)); + }, + _onCleared: function onCleared() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onCleared.apply(this, [].slice.call(arguments, 0)); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.css(dir === "ltr" ? this.css.ltr : this.css.rtl); + return s.setLanguageDirection.apply(this, [].slice.call(arguments, 0)); + }, + _hide: function hide() { + this.$node.hide(); + }, + _show: function show() { + this.$node.css("display", "block"); + } + }); + return DefaultMenu; + }(); + var Typeahead = function() { + "use strict"; + function Typeahead(o, www) { + var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged; + o = o || {}; + if (!o.input) { + $.error("missing input"); + } + if (!o.menu) { + $.error("missing menu"); + } + if (!o.eventBus) { + $.error("missing event bus"); + } + www.mixin(this); + this.eventBus = o.eventBus; + this.minLength = _.isNumber(o.minLength) ? o.minLength : 1; + this.input = o.input; + this.menu = o.menu; + this.enabled = true; + this.autoselect = !!o.autoselect; + this.active = false; + this.input.hasFocus() && this.activate(); + this.dir = this.input.getLangDir(); + this._hacks(); + this.menu.bind().onSync("selectableClicked", this._onSelectableClicked, this).onSync("asyncRequested", this._onAsyncRequested, this).onSync("asyncCanceled", this._onAsyncCanceled, this).onSync("asyncReceived", this._onAsyncReceived, this).onSync("datasetRendered", this._onDatasetRendered, this).onSync("datasetCleared", this._onDatasetCleared, this); + onFocused = c(this, "activate", "open", "_onFocused"); + onBlurred = c(this, "deactivate", "_onBlurred"); + onEnterKeyed = c(this, "isActive", "isOpen", "_onEnterKeyed"); + onTabKeyed = c(this, "isActive", "isOpen", "_onTabKeyed"); + onEscKeyed = c(this, "isActive", "_onEscKeyed"); + onUpKeyed = c(this, "isActive", "open", "_onUpKeyed"); + onDownKeyed = c(this, "isActive", "open", "_onDownKeyed"); + onLeftKeyed = c(this, "isActive", "isOpen", "_onLeftKeyed"); + onRightKeyed = c(this, "isActive", "isOpen", "_onRightKeyed"); + onQueryChanged = c(this, "_openIfActive", "_onQueryChanged"); + onWhitespaceChanged = c(this, "_openIfActive", "_onWhitespaceChanged"); + this.input.bind().onSync("focused", onFocused, this).onSync("blurred", onBlurred, this).onSync("enterKeyed", onEnterKeyed, this).onSync("tabKeyed", onTabKeyed, this).onSync("escKeyed", onEscKeyed, this).onSync("upKeyed", onUpKeyed, this).onSync("downKeyed", onDownKeyed, this).onSync("leftKeyed", onLeftKeyed, this).onSync("rightKeyed", onRightKeyed, this).onSync("queryChanged", onQueryChanged, this).onSync("whitespaceChanged", onWhitespaceChanged, this).onSync("langDirChanged", this._onLangDirChanged, this); + } + _.mixin(Typeahead.prototype, { + _hacks: function hacks() { + var $input, $menu; + $input = this.input.$input || $("
"); + $menu = this.menu.$node || $("
"); + $input.on("blur.tt", function($e) { + var active, isActive, hasActive; + active = document.activeElement; + isActive = $menu.is(active); + hasActive = $menu.has(active).length > 0; + if (_.isMsie() && (isActive || hasActive)) { + $e.preventDefault(); + $e.stopImmediatePropagation(); + _.defer(function() { + $input.focus(); + }); + } + }); + $menu.on("mousedown.tt", function($e) { + $e.preventDefault(); + }); + }, + _onSelectableClicked: function onSelectableClicked(type, $el) { + this.select($el); + }, + _onDatasetCleared: function onDatasetCleared() { + this._updateHint(); + }, + _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) { + this._updateHint(); + if (this.autoselect) { + var cursorClass = this.selectors.cursor.substr(1); + this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass); + } + this.eventBus.trigger("render", suggestions, async, dataset); + }, + _onAsyncRequested: function onAsyncRequested(type, dataset, query) { + this.eventBus.trigger("asyncrequest", query, dataset); + }, + _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) { + this.eventBus.trigger("asynccancel", query, dataset); + }, + _onAsyncReceived: function onAsyncReceived(type, dataset, query) { + this.eventBus.trigger("asyncreceive", query, dataset); + }, + _onFocused: function onFocused() { + this._minLengthMet() && this.menu.update(this.input.getQuery()); + }, + _onBlurred: function onBlurred() { + if (this.input.hasQueryChangedSinceLastFocus()) { + this.eventBus.trigger("change", this.input.getQuery()); + } + }, + _onEnterKeyed: function onEnterKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + if (this.select($selectable)) { + $e.preventDefault(); + $e.stopPropagation(); + } + } else if (this.autoselect) { + if (this.select(this.menu.getTopSelectable())) { + $e.preventDefault(); + $e.stopPropagation(); + } + } + }, + _onTabKeyed: function onTabKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + this.select($selectable) && $e.preventDefault(); + } else if (this.autoselect) { + if ($selectable = this.menu.getTopSelectable()) { + this.autocomplete($selectable) && $e.preventDefault(); + } + } + }, + _onEscKeyed: function onEscKeyed() { + this.close(); + }, + _onUpKeyed: function onUpKeyed() { + this.moveCursor(-1); + }, + _onDownKeyed: function onDownKeyed() { + this.moveCursor(+1); + }, + _onLeftKeyed: function onLeftKeyed() { + if (this.dir === "rtl" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onRightKeyed: function onRightKeyed() { + if (this.dir === "ltr" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onQueryChanged: function onQueryChanged(e, query) { + this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty(); + }, + _onWhitespaceChanged: function onWhitespaceChanged() { + this._updateHint(); + }, + _onLangDirChanged: function onLangDirChanged(e, dir) { + if (this.dir !== dir) { + this.dir = dir; + this.menu.setLanguageDirection(dir); + } + }, + _openIfActive: function openIfActive() { + this.isActive() && this.open(); + }, + _minLengthMet: function minLengthMet(query) { + query = _.isString(query) ? query : this.input.getQuery() || ""; + return query.length >= this.minLength; + }, + _updateHint: function updateHint() { + var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match; + $selectable = this.menu.getTopSelectable(); + data = this.menu.getSelectableData($selectable); + val = this.input.getInputValue(); + if (data && !_.isBlankString(val) && !this.input.hasOverflow()) { + query = Input.normalizeQuery(val); + escapedQuery = _.escapeRegExChars(query); + frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i"); + match = frontMatchRegEx.exec(data.val); + match && this.input.setHint(val + match[1]); + } else { + this.input.clearHint(); + } + }, + isEnabled: function isEnabled() { + return this.enabled; + }, + enable: function enable() { + this.enabled = true; + }, + disable: function disable() { + this.enabled = false; + }, + isActive: function isActive() { + return this.active; + }, + activate: function activate() { + if (this.isActive()) { + return true; + } else if (!this.isEnabled() || this.eventBus.before("active")) { + return false; + } else { + this.active = true; + this.eventBus.trigger("active"); + return true; + } + }, + deactivate: function deactivate() { + if (!this.isActive()) { + return true; + } else if (this.eventBus.before("idle")) { + return false; + } else { + this.active = false; + this.close(); + this.eventBus.trigger("idle"); + return true; + } + }, + isOpen: function isOpen() { + return this.menu.isOpen(); + }, + open: function open() { + if (!this.isOpen() && !this.eventBus.before("open")) { + this.input.setAriaExpanded(true); + this.menu.open(); + this._updateHint(); + this.eventBus.trigger("open"); + } + return this.isOpen(); + }, + close: function close() { + if (this.isOpen() && !this.eventBus.before("close")) { + this.input.setAriaExpanded(false); + this.menu.close(); + this.input.clearHint(); + this.input.resetInputValue(); + this.eventBus.trigger("close"); + } + return !this.isOpen(); + }, + setVal: function setVal(val) { + this.input.setQuery(_.toStr(val)); + }, + getVal: function getVal() { + return this.input.getQuery(); + }, + select: function select($selectable) { + var data = this.menu.getSelectableData($selectable); + if (data && !this.eventBus.before("select", data.obj, data.dataset)) { + this.input.setQuery(data.val, true); + this.eventBus.trigger("select", data.obj, data.dataset); + this.close(); + return true; + } + return false; + }, + autocomplete: function autocomplete($selectable) { + var query, data, isValid; + query = this.input.getQuery(); + data = this.menu.getSelectableData($selectable); + isValid = data && query !== data.val; + if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) { + this.input.setQuery(data.val); + this.eventBus.trigger("autocomplete", data.obj, data.dataset); + return true; + } + return false; + }, + moveCursor: function moveCursor(delta) { + var query, $candidate, data, suggestion, datasetName, cancelMove, id; + query = this.input.getQuery(); + $candidate = this.menu.selectableRelativeToCursor(delta); + data = this.menu.getSelectableData($candidate); + suggestion = data ? data.obj : null; + datasetName = data ? data.dataset : null; + id = $candidate ? $candidate.attr("id") : null; + this.input.trigger("cursorchange", id); + cancelMove = this._minLengthMet() && this.menu.update(query); + if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) { + this.menu.setCursor($candidate); + if (data) { + if (typeof data.val === "string") { + this.input.setInputValue(data.val); + } + } else { + this.input.resetInputValue(); + this._updateHint(); + } + this.eventBus.trigger("cursorchange", suggestion, datasetName); + return true; + } + return false; + }, + destroy: function destroy() { + this.input.destroy(); + this.menu.destroy(); + } + }); + return Typeahead; + function c(ctx) { + var methods = [].slice.call(arguments, 1); + return function() { + var args = [].slice.call(arguments); + _.each(methods, function(method) { + return ctx[method].apply(ctx, args); + }); + }; + } + }(); + (function() { + "use strict"; + var old, keys, methods; + old = $.fn.typeahead; + keys = { + www: "tt-www", + attrs: "tt-attrs", + typeahead: "tt-typeahead" + }; + methods = { + initialize: function initialize(o, datasets) { + var www; + datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1); + o = o || {}; + www = WWW(o.classNames); + return this.each(attach); + function attach() { + var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor; + _.each(datasets, function(d) { + d.highlight = !!o.highlight; + }); + $input = $(this); + $wrapper = $(www.html.wrapper); + $hint = $elOrNull(o.hint); + $menu = $elOrNull(o.menu); + defaultHint = o.hint !== false && !$hint; + defaultMenu = o.menu !== false && !$menu; + defaultHint && ($hint = buildHintFromInput($input, www)); + defaultMenu && ($menu = $(www.html.menu).css(www.css.menu)); + $hint && $hint.val(""); + $input = prepInput($input, www); + if (defaultHint || defaultMenu) { + $wrapper.css(www.css.wrapper); + $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint); + $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null); + } + MenuConstructor = defaultMenu ? DefaultMenu : Menu; + eventBus = new EventBus({ + el: $input + }); + input = new Input({ + hint: $hint, + input: $input, + menu: $menu + }, www); + menu = new MenuConstructor({ + node: $menu, + datasets: datasets + }, www); + status = new Status({ + $input: $input, + menu: menu + }); + typeahead = new Typeahead({ + input: input, + menu: menu, + eventBus: eventBus, + minLength: o.minLength, + autoselect: o.autoselect + }, www); + $input.data(keys.www, www); + $input.data(keys.typeahead, typeahead); + } + }, + isEnabled: function isEnabled() { + var enabled; + ttEach(this.first(), function(t) { + enabled = t.isEnabled(); + }); + return enabled; + }, + enable: function enable() { + ttEach(this, function(t) { + t.enable(); + }); + return this; + }, + disable: function disable() { + ttEach(this, function(t) { + t.disable(); + }); + return this; + }, + isActive: function isActive() { + var active; + ttEach(this.first(), function(t) { + active = t.isActive(); + }); + return active; + }, + activate: function activate() { + ttEach(this, function(t) { + t.activate(); + }); + return this; + }, + deactivate: function deactivate() { + ttEach(this, function(t) { + t.deactivate(); + }); + return this; + }, + isOpen: function isOpen() { + var open; + ttEach(this.first(), function(t) { + open = t.isOpen(); + }); + return open; + }, + open: function open() { + ttEach(this, function(t) { + t.open(); + }); + return this; + }, + close: function close() { + ttEach(this, function(t) { + t.close(); + }); + return this; + }, + select: function select(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.select($el); + }); + return success; + }, + autocomplete: function autocomplete(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.autocomplete($el); + }); + return success; + }, + moveCursor: function moveCursoe(delta) { + var success = false; + ttEach(this.first(), function(t) { + success = t.moveCursor(delta); + }); + return success; + }, + val: function val(newVal) { + var query; + if (!arguments.length) { + ttEach(this.first(), function(t) { + query = t.getVal(); + }); + return query; + } else { + ttEach(this, function(t) { + t.setVal(_.toStr(newVal)); + }); + return this; + } + }, + destroy: function destroy() { + ttEach(this, function(typeahead, $input) { + revert($input); + typeahead.destroy(); + }); + return this; + } + }; + $.fn.typeahead = function(method) { + if (methods[method]) { + return methods[method].apply(this, [].slice.call(arguments, 1)); + } else { + return methods.initialize.apply(this, arguments); + } + }; + $.fn.typeahead.noConflict = function noConflict() { + $.fn.typeahead = old; + return this; + }; + function ttEach($els, fn) { + $els.each(function() { + var $input = $(this), typeahead; + (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input); + }); + } + function buildHintFromInput($input, www) { + return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({ + readonly: true, + required: false + }).removeAttr("id name placeholder").removeClass("required").attr({ + spellcheck: "false", + tabindex: -1 + }); + } + function prepInput($input, www) { + $input.data(keys.attrs, { + dir: $input.attr("dir"), + autocomplete: $input.attr("autocomplete"), + spellcheck: $input.attr("spellcheck"), + style: $input.attr("style") + }); + $input.addClass(www.classes.input).attr({ + spellcheck: false + }); + try { + !$input.attr("dir") && $input.attr("dir", "auto"); + } catch (e) {} + return $input; + } + function getBackgroundStyles($el) { + return { + backgroundAttachment: $el.css("background-attachment"), + backgroundClip: $el.css("background-clip"), + backgroundColor: $el.css("background-color"), + backgroundImage: $el.css("background-image"), + backgroundOrigin: $el.css("background-origin"), + backgroundPosition: $el.css("background-position"), + backgroundRepeat: $el.css("background-repeat"), + backgroundSize: $el.css("background-size") + }; + } + function revert($input) { + var www, $wrapper; + www = $input.data(keys.www); + $wrapper = $input.parent().filter(www.selectors.wrapper); + _.each($input.data(keys.attrs), function(val, key) { + _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val); + }); + $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input); + if ($wrapper.length) { + $input.detach().insertAfter($wrapper); + $wrapper.remove(); + } + } + function $elOrNull(obj) { + var isValid, $el; + isValid = _.isJQuery(obj) || _.isElement(obj); + $el = isValid ? $(obj).first() : []; + return $el.length ? $el : null; + } + })(); +}); \ No newline at end of file diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menu.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menu.js new file mode 100644 index 0000000..2fe2214 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menu.js @@ -0,0 +1,51 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+=''; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('
  • '); + } else { + $('#main-menu').append('
  • '); + } + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menudata.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menudata.js new file mode 100644 index 0000000..7eff031 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/menudata.js @@ -0,0 +1,63 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Index",url:"classes.html"}, +{text:"Class Hierarchy",url:"hierarchy.html"}, +{text:"Class Members",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"a",url:"functions.html#index_a"}, +{text:"b",url:"functions.html#index_b"}, +{text:"c",url:"functions.html#index_c"}, +{text:"d",url:"functions.html#index_d"}, +{text:"f",url:"functions.html#index_f"}, +{text:"h",url:"functions.html#index_h"}, +{text:"i",url:"functions.html#index_i"}, +{text:"l",url:"functions.html#index_l"}, +{text:"m",url:"functions.html#index_m"}, +{text:"n",url:"functions.html#index_n"}, +{text:"r",url:"functions.html#index_r"}, +{text:"s",url:"functions.html#index_s"}, +{text:"t",url:"functions.html#index_t"}, +{text:"u",url:"functions.html#index_u"}, +{text:"v",url:"functions.html#index_v"}]}, +{text:"Functions",url:"functions_func.html",children:[ +{text:"a",url:"functions_func.html#index_a"}, +{text:"b",url:"functions_func.html#index_b"}, +{text:"c",url:"functions_func.html#index_c"}, +{text:"d",url:"functions_func.html#index_d"}, +{text:"f",url:"functions_func.html#index_f"}, +{text:"i",url:"functions_func.html#index_i"}, +{text:"m",url:"functions_func.html#index_m"}, +{text:"n",url:"functions_func.html#index_n"}, +{text:"r",url:"functions_func.html#index_r"}, +{text:"s",url:"functions_func.html#index_s"}, +{text:"u",url:"functions_func.html#index_u"}, +{text:"v",url:"functions_func.html#index_v"}]}, +{text:"Properties",url:"functions_prop.html"}]}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}]}]} diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_f.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_f.png new file mode 100644 index 0000000..72a58a5 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_f.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_g.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_g.png new file mode 100644 index 0000000..2093a23 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_g.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_h.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_h.png new file mode 100644 index 0000000..33389b1 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/nav_h.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/open.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/open.png new file mode 100644 index 0000000..30f75c7 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/open.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p-members.html new file mode 100644 index 0000000..24e7e34 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <InstallerProgressDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <InstallerProgressDelegate>, including all inherited members.

    + + + +
    installerProgressShouldDisplayWithHost: (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    installerProgressShouldStop (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.html new file mode 100644 index 0000000..e383859 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: <InstallerProgressDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <InstallerProgressDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <InstallerProgressDelegate>:
    +
    +
    + + +ShowInstallerProgress + +
    + + + + + + +

    +Instance Methods

    +(void) - installerProgressShouldDisplayWithHost:
     
    +(void) - installerProgressShouldStop
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.png new file mode 100644 index 0000000..259bf7f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_installer_progress_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p-members.html new file mode 100644 index 0000000..bb83719 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUBasicUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUBasicUpdateDriverDelegate>, including all inherited members.

    + + + + +
    basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.html new file mode 100644 index 0000000..d66e2fc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: <SPUBasicUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUBasicUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUBasicUpdateDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() +SPUProbingUpdateDriver() + +
    + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
     
    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.png new file mode 100644 index 0000000..ef0913b Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_basic_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p-members.html new file mode 100644 index 0000000..baa799b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p-members.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUCoreBasedUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUCoreBasedUpdateDriverDelegate>, including all inherited members.

    + + + + + + + + + + + + + + +
    basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.html new file mode 100644 index 0000000..79c435f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.html @@ -0,0 +1,136 @@ + + + + + + + +Sparkle: <SPUCoreBasedUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUCoreBasedUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUCoreBasedUpdateDriverDelegate>:
    +
    +
    + + +SPUAutomaticUpdateDriver() +SPUUIBasedUpdateDriver() + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
     
    +(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
     
    +(void) - coreDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +(void) - downloadDriverWillBeginDownload
     
    +(void) - downloadDriverDidReceiveExpectedContentLength:
     
    +(void) - downloadDriverDidReceiveDataOfLength:
     
    +(void) - coreDriverDidStartExtractingUpdate
     
    +(void) - installerDidStartInstalling
     
    +(void) - installerDidExtractUpdateWithProgress:
     
    +(void) - installerIsSendingAppTerminationSignal
     
    +(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.png new file mode 100644 index 0000000..dfa657c Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_core_based_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p-members.html new file mode 100644 index 0000000..f46ae4c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUDownloadDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUDownloadDriverDelegate>, including all inherited members.

    + + + + + + + +
    downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.html new file mode 100644 index 0000000..456dd90 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: <SPUDownloadDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUDownloadDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUDownloadDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() +SPUReleaseNotesDriver +SUAppcastDriver() + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - downloadDriverDidFailToDownloadFileWithError:
     
    +(void) - downloadDriverWillBeginDownload
     
    +(void) - downloadDriverDidDownloadUpdate:
     
    +(void) - downloadDriverDidDownloadData:
     
    +(void) - downloadDriverDidReceiveExpectedContentLength:
     
    +(void) - downloadDriverDidReceiveDataOfLength:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.png new file mode 100644 index 0000000..4f6ca49 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_download_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p-members.html new file mode 100644 index 0000000..1e48254 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUInstallerAgentProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SPUInstallerAgentProtocol>, including all inherited members.

    + + + + + + + +
    registerApplicationBundlePath:reply: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    registerInstallationInfoData: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    relaunchApplication (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    sendTerminationSignal (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    showProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    stopProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.html new file mode 100644 index 0000000..edf2e98 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: <SPUInstallerAgentProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUInstallerAgentProtocol> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUInstallerAgentProtocol>:
    +
    +
    + + +InstallerProgressAppController() + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - registerApplicationBundlePath:reply:
     
    +(void) - registerInstallationInfoData:
     
    +(void) - sendTerminationSignal
     
    +(void) - showProgress
     
    +(void) - stopProgress
     
    +(void) - relaunchApplication
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.png new file mode 100644 index 0000000..ba75681 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_agent_protocol-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p-members.html new file mode 100644 index 0000000..ca925e3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p-members.html @@ -0,0 +1,89 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUInstallerDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUInstallerDriverDelegate>, including all inherited members.

    + + + + + + + + + + +
    installerDidExtractUpdateWithProgress: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFailToApplyDeltaUpdate (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidStartExtracting (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidStartInstalling (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerIsRequestingAbortInstallWithError: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerIsSendingAppTerminationSignal (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerWillFinishInstallationAndRelaunch: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.html new file mode 100644 index 0000000..68efcd7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: <SPUInstallerDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUInstallerDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUInstallerDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() + +
    + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - installerDidStartInstalling
     
    +(void) - installerDidStartExtracting
     
    +(void) - installerDidExtractUpdateWithProgress:
     
    +(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
     
    +(void) - installerIsSendingAppTerminationSignal
     
    +(void) - installerWillFinishInstallationAndRelaunch:
     
    +(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
     
    +(void) - installerIsRequestingAbortInstallWithError:
     
    +(void) - installerDidFailToApplyDeltaUpdate
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.png new file mode 100644 index 0000000..0e2b043 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_installer_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p-members.html new file mode 100644 index 0000000..95a99cd --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUResumableUpdate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUResumableUpdate>, including all inherited members.

    + + + +
    secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.html new file mode 100644 index 0000000..6915d5a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: <SPUResumableUpdate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUResumableUpdate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUResumableUpdate>:
    +
    +
    + + +SPUDownloadedUpdate +SPUInformationalUpdate + +
    + + + + + + +

    +Properties

    +SUAppcastItemupdateItem
     
    +SUAppcastItemsecondaryUpdateItem
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.png new file mode 100644 index 0000000..cd637d7 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_resumable_update-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p-members.html new file mode 100644 index 0000000..b0c262a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUStandardUserDriverDelegate> Member List
    +
    + + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.html new file mode 100644 index 0000000..976f8b5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.html @@ -0,0 +1,141 @@ + + + + + + + +Sparkle: <SPUStandardUserDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUStandardUserDriverDelegate> Protocol Reference
    +
    +
    + +

    A protocol for Sparkle's standard user driver's delegate. + More...

    + +

    #import <SPUStandardUserDriverDelegate.h>

    +
    +Inheritance diagram for <SPUStandardUserDriverDelegate>:
    +
    +
    + +
    + + + + + + + + + + + +

    +Instance Methods

    +(void) - standardUserDriverWillShowModalAlert
     Called before showing a modal alert window, to give the opportunity to hide attached windows that may get in the way.
     
    +(void) - standardUserDriverDidShowModalAlert
     Called after showing a modal alert window, to give the opportunity to hide attached windows that may get in the way.
     
    (_Nullable id< SUVersionDisplay >) - standardUserDriverRequestsVersionDisplayer
     Returns an object that formats version numbers for display to the user. More...
     
    +

    Detailed Description

    +

    A protocol for Sparkle's standard user driver's delegate.

    +

    This includes methods related to UI interactions

    +

    Method Documentation

    + +

    ◆ standardUserDriverRequestsVersionDisplayer

    + +
    +
    + + + + + +
    + + + + + + + +
    - (_Nullable id <SUVersionDisplay>) standardUserDriverRequestsVersionDisplayer
    +
    +optional
    +
    + +

    Returns an object that formats version numbers for display to the user.

    +

    If you don't implement this method or return nil, the standard version formatter will be used.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.png new file mode 100644 index 0000000..be4fca4 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_standard_user_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html new file mode 100644 index 0000000..eac7ebd --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUIBasedUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUIBasedUpdateDriverDelegate>, including all inherited members.

    + + + + + + +
    basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.html new file mode 100644 index 0000000..5e780b3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: <SPUUIBasedUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUIBasedUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUIBasedUpdateDriverDelegate>:
    +
    +
    + + +SPUScheduledUpdateDriver() +SPUUserInitiatedUpdateDriver() + +
    + + + + + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - coreDriverIsRequestingAbortUpdateWithError:
     
    +(void) - uiDriverIsRequestingAbortUpdateWithError:
     
    +(void) - uiDriverDidShowUpdate
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.png new file mode 100644 index 0000000..fea82ed Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_u_i_based_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p-members.html new file mode 100644 index 0000000..3b6c31f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdateDriver> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdateDriver>, including all inherited members.

    + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.html new file mode 100644 index 0000000..fb08441 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: <SPUUpdateDriver> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdateDriver> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdateDriver>:
    +
    +
    + + +SPUAutomaticUpdateDriver +SPUProbingUpdateDriver +SPUScheduledUpdateDriver +SPUUserInitiatedUpdateDriver + +
    + + + + + + + + + + + + +

    +Instance Methods

    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + +

    +Properties

    +BOOL showingUpdate
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.png new file mode 100644 index 0000000..520fa17 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_update_driver-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p-members.html new file mode 100644 index 0000000..6a1c254 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterCycleDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterCycleDelegate>, including all inherited members.

    + + +
    resetUpdateCycle (defined in <SPUUpdaterCycleDelegate>)<SPUUpdaterCycleDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.html new file mode 100644 index 0000000..2aac2f2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: <SPUUpdaterCycleDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterCycleDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdaterCycleDelegate>:
    +
    +
    + + +SPUUpdater() + +
    + + + + +

    +Instance Methods

    +(void) - resetUpdateCycle
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.png new file mode 100644 index 0000000..695d0ac Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_cycle_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p-members.html new file mode 100644 index 0000000..848e908 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p-members.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterDelegate>, including all inherited members.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    allowedChannelsForUpdater:<SPUUpdaterDelegate>
    allowedSystemProfileKeysForUpdater:<SPUUpdaterDelegate>
    bestValidUpdateInAppcast:forUpdater:<SPUUpdaterDelegate>
    decryptionPasswordForUpdater:<SPUUpdaterDelegate>
    feedParametersForUpdater:sendingSystemProfile:<SPUUpdaterDelegate>
    feedURLStringForUpdater:<SPUUpdaterDelegate>
    updater:didAbortWithError:<SPUUpdaterDelegate>
    updater:didDownloadUpdate:<SPUUpdaterDelegate>
    updater:didExtractUpdate:<SPUUpdaterDelegate>
    updater:didFindValidUpdate:<SPUUpdaterDelegate>
    updater:didFinishLoadingAppcast:<SPUUpdaterDelegate>
    updater:failedToDownloadUpdate:error:<SPUUpdaterDelegate>
    updater:shouldAllowInstallerInteractionForUpdateCheck:<SPUUpdaterDelegate>
    updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:<SPUUpdaterDelegate>
    updater:userDidSkipThisVersion:<SPUUpdaterDelegate>
    updater:willDownloadUpdate:withRequest:<SPUUpdaterDelegate>
    updater:willExtractUpdate:<SPUUpdaterDelegate>
    updater:willInstallUpdate:<SPUUpdaterDelegate>
    updater:willInstallUpdateOnQuit:immediateInstallationBlock:<SPUUpdaterDelegate>
    updater:willScheduleUpdateCheckAfterDelay:<SPUUpdaterDelegate>
    updaterDidNotFindUpdate:<SPUUpdaterDelegate>
    updaterDidNotFindUpdate:error:<SPUUpdaterDelegate>
    updaterMayCheckForUpdates:<SPUUpdaterDelegate>
    updaterShouldDownloadReleaseNotes:<SPUUpdaterDelegate>
    updaterShouldPromptForPermissionToCheckForUpdates:<SPUUpdaterDelegate>
    updaterShouldRelaunchApplication:<SPUUpdaterDelegate>
    updaterWillIdleSchedulingUpdates:<SPUUpdaterDelegate>
    updaterWillRelaunchApplication:<SPUUpdaterDelegate>
    userDidCancelDownload:<SPUUpdaterDelegate>
    versionComparatorForUpdater:<SPUUpdaterDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.html new file mode 100644 index 0000000..2a0749d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.html @@ -0,0 +1,1460 @@ + + + + + + + +Sparkle: <SPUUpdaterDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterDelegate> Protocol Reference
    +
    +
    + +

    Provides methods to control the behavior of an SPUUpdater object. + More...

    + +

    #import <SPUUpdaterDelegate.h>

    +
    +Inheritance diagram for <SPUUpdaterDelegate>:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (void) - updater:willScheduleUpdateCheckAfterDelay:
     Called when a background update will be scheduled after a delay. More...
     
    (void) - updaterWillIdleSchedulingUpdates:
     Called when no updates will be scheduled in the future. More...
     
    (BOOL) - updaterMayCheckForUpdates:
     Returns whether to allow Sparkle to pop up. More...
     
    (NSArray *) - feedParametersForUpdater:sendingSystemProfile:
     Returns additional parameters to append to the appcast URL's query string. More...
     
    (NSArray *) - allowedSystemProfileKeysForUpdater:
     Returns a list of system profile keys to be appended to the appcast URL's query string. More...
     
    (nullable NSString *) - feedURLStringForUpdater:
     Returns a custom appcast URL. More...
     
    (BOOL) - updaterShouldPromptForPermissionToCheckForUpdates:
     Returns whether Sparkle should prompt the user about automatic update checks. More...
     
    (void) - updater:didFinishLoadingAppcast:
     Called after Sparkle has downloaded the appcast from the remote server. More...
     
    (NSSet< NSString * > *) - allowedChannelsForUpdater:
     Returns the set of Sparkle channels the updater is allowed to find new updates from. More...
     
    (nullable SUAppcastItem *) - bestValidUpdateInAppcast:forUpdater:
     Returns the item in the appcast corresponding to the update that should be installed. More...
     
    (void) - updater:didFindValidUpdate:
     Called when a valid update is found by the update driver. More...
     
    (void) - updaterDidNotFindUpdate:error:
     Called when a valid update is not found. More...
     
    (void) - updaterDidNotFindUpdate:
     Called when a valid update is not found. More...
     
    (void) - updater:userDidSkipThisVersion:
     Called when an update is skipped by the user. More...
     
    (BOOL) - updaterShouldDownloadReleaseNotes:
     Returns whether the release notes (if available) should be downloaded after an update is found and shown. More...
     
    (void) - updater:willDownloadUpdate:withRequest:
     Called immediately before downloading the specified update. More...
     
    (void) - updater:didDownloadUpdate:
     Called immediately after succesfull download of the specified update. More...
     
    (void) - updater:failedToDownloadUpdate:error:
     Called after the specified update failed to download. More...
     
    (void) - userDidCancelDownload:
     Called when the user clicks the cancel button while and update is being downloaded. More...
     
    (void) - updater:willExtractUpdate:
     Called immediately before extracting the specified downloaded update. More...
     
    (void) - updater:didExtractUpdate:
     Called immediately after extracting the specified downloaded update. More...
     
    (void) - updater:willInstallUpdate:
     Called immediately before installing the specified update. More...
     
    (BOOL) - updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:
     Returns whether the relaunch should be delayed in order to perform other tasks. More...
     
    (BOOL) - updaterShouldRelaunchApplication:
     Returns whether the application should be relaunched at all. More...
     
    (void) - updaterWillRelaunchApplication:
     Called immediately before relaunching. More...
     
    (nullable id< SUVersionComparison >) - versionComparatorForUpdater:
     Returns an object that compares version numbers to determine their arithmetic relation to each other. More...
     
    (BOOL) - updater:shouldAllowInstallerInteractionForUpdateCheck:
     Returns whether or not the updater should allow interaction from the installer. More...
     
    (nullable NSString *) - decryptionPasswordForUpdater:
     Returns the decryption password (if any) which is used to extract the update archive DMG. More...
     
    (BOOL) - updater:willInstallUpdateOnQuit:immediateInstallationBlock:
     Called when an update is scheduled to be silently installed on quit after downloading the update automatically. More...
     
    (void) - updater:didAbortWithError:
     Called after an update is aborted due to an error. More...
     
    +

    Detailed Description

    +

    Provides methods to control the behavior of an SPUUpdater object.

    +

    Method Documentation

    + +

    ◆ allowedChannelsForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (NSSet<NSString *> *) allowedChannelsForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    +

    An appcast item can specify a channel the update is posted to. Without specifying a channel, the appcast item is posted to the default channel. For instance: <sparkle:version>2.0 Beta 1</sparkle:version> <sparkle:channel>beta</sparkle:channel>

    +

    This example posts an update to the 'beta' channel, so only updaters that are allowed to use the 'beta' channel can find this update.

    +

    If the <sparkle:channel> is not present, the update item is posted to the default channel and can be found by any updater.

    +

    You can pick any name you'd like for the channel. The valid characters for channel names are letters, numbers, dashes, underscores, and periods.

    +

    Note to use this feature, all app versions that your users may update from in your feed must use a version of Sparkle that supports this feature. This feature was added in Sparkle 2.

    +
    Returns
    The set of channel names the updater is allowed to find new updates in. An empty set is the default behavior, which means the updater will only look for updates in the default channel.
    + +
    +
    + +

    ◆ allowedSystemProfileKeysForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (NSArray *) allowedSystemProfileKeysForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns a list of system profile keys to be appended to the appcast URL's query string.

    +

    If this is unimplemented then all keys will be included.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    An array of system profile keys to include in the appcast URL's query string. Elements must be one of the SUSystemProfiler*Key constants
    + +
    +
    + +

    ◆ bestValidUpdateInAppcast:forUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (nullable SUAppcastItem *) bestValidUpdateInAppcast: (SUAppcast *) appcast
    forUpdater:(SPUUpdater *) updater 
    +
    +optional
    +
    + +

    Returns the item in the appcast corresponding to the update that should be installed.

    +

    Please consider using or migrating to other supported features before adopting this method. Specifically: If you want to filter out certain tagged updates (like beta updates), consider -[SPUUpdaterDelegate allowedChannelsForUpdater:] instead. If you want to treat certain updates as informational-only, consider supplying <sparkle:informationalUpdate> with a set of affected versions users are updating from.

    +

    If you're using special logic or extensions in your appcast, implement this to use your own logic for finding a valid update, if any, in the given appcast.

    +

    Do not base your logic by filtering out items with a minimum or maximum OS version or minimum autoupdate version, because Sparkle already has logic for determining whether or not those items should be filtered out. Also do not return a non-top level item from the appcast such as a delta item. Delta items will be ignored. Sparkle picks the delta item from your selection if the appropriate one is available.

    +

    This method will not be invoked with an appcast that has zero items. Pick the best item from the appcast. If an item is available that has the same version as the application or bundle to update, do not pick an item that is worse than that version.

    +

    This method may be called multiple times for different selections and filters. This method should be efficient.

    +
    Parameters
    + + + +
    appcastThe appcast that was downloaded from the remote server.
    updaterThe updater instance.
    +
    +
    +
    Returns
    The best valid appcast item. Return SUAppcastItem.emptyAppcastItem if no appcast item is valid. Return nil if you don't want to be delegated this task and want to let Sparkle handle picking the best valid update.
    + +
    +
    + +

    ◆ decryptionPasswordForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable NSString *) decryptionPasswordForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    +

    Return nil if no password should be used.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    The password used for decrypting the archive, or nil if no password should be used.
    + +
    +
    + +

    ◆ feedParametersForUpdater:sendingSystemProfile:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (NSArray *) feedParametersForUpdater: (SPUUpdater *) updater
    sendingSystemProfile:(BOOL) sendingProfile 
    +
    +optional
    +
    + +

    Returns additional parameters to append to the appcast URL's query string.

    +

    This is potentially based on whether or not Sparkle will also be sending along the system profile.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    sendingProfileWhether the system profile will also be sent.
    +
    +
    +
    Returns
    An array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user.
    + +
    +
    + +

    ◆ feedURLStringForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable NSString *) feedURLStringForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns a custom appcast URL.

    +

    Override this to dynamically specify the entire URL. Alternatively you may want to consider adding a feed parameter using -feedParametersForUpdater:sendingSystemProfile: and having the server which appcast to serve.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updater:didAbortWithError:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didAbortWithError:(NSError *) error 
    +
    +optional
    +
    + +

    Called after an update is aborted due to an error.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    errorThe error that caused the abort
    +
    +
    + +
    +
    + +

    ◆ updater:didDownloadUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didDownloadUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately after succesfull download of the specified update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that has been downloaded.
    +
    +
    + +
    +
    + +

    ◆ updater:didExtractUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didExtractUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately after extracting the specified downloaded update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that has been extracted.
    +
    +
    + +
    +
    + +

    ◆ updater:didFindValidUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didFindValidUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called when a valid update is found by the update driver.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    +
    +
    + +
    +
    + +

    ◆ updater:didFinishLoadingAppcast:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didFinishLoadingAppcast:(SUAppcast *) appcast 
    +
    +optional
    +
    + +

    Called after Sparkle has downloaded the appcast from the remote server.

    +

    Implement this if you want to do some special handling with the appcast once it finishes loading.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    appcastThe appcast that was downloaded from the remote server.
    +
    +
    + +
    +
    + +

    ◆ updater:failedToDownloadUpdate:error:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    failedToDownloadUpdate:(SUAppcastItem *) item
    error:(NSError *) error 
    +
    +optional
    +
    + +

    Called after the specified update failed to download.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that failed to download.
    errorThe error generated by the failed download.
    +
    +
    + +
    +
    + +

    ◆ updater:shouldAllowInstallerInteractionForUpdateCheck:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    shouldAllowInstallerInteractionForUpdateCheck:(SPUUpdateCheck) updateCheck 
    +
    +optional
    +
    + +

    Returns whether or not the updater should allow interaction from the installer.

    +

    Use this to override the default behavior which is to allow interaction with the installer.

    +

    If interaction is allowed, then an authorization prompt may show up to the user if they do not curently have sufficient privileges to perform the installation of the new update. The installer may also show UI and progress when interaction is allowed.

    +

    On the other hand, if interaction is not allowed, then an installation may fail if the user does not have sufficient privileges to perform the installation. In this case, the feed and update may not even be downloaded.

    +

    Note this has no effect if the update has already been downloaded in the background silently and ready to be resumed.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    updateCheckThe type of update check being performed.
    +
    +
    + +
    +
    + +

    ◆ updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    shouldPostponeRelaunchForUpdate:(SUAppcastItem *) item
    untilInvokingBlock:(void(^)(void)) installHandler 
    +
    +optional
    +
    + +

    Returns whether the relaunch should be delayed in order to perform other tasks.

    +

    This is not called if the user didn't relaunch on the previous update, in that case it will immediately restart.

    +

    This may also not be called if the application is not going to relaunch after it terminates.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    installHandlerThe install handler that must be completed before continuing with the relaunch.
    +
    +
    +
    Returns
    YES to delay the relaunch until installHandler is invoked.
    + +
    +
    + +

    ◆ updater:userDidSkipThisVersion:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    userDidSkipThisVersion:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called when an update is skipped by the user.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that the user skipped.
    +
    +
    + +
    +
    + +

    ◆ updater:willDownloadUpdate:withRequest:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willDownloadUpdate:(SUAppcastItem *) item
    withRequest:(NSMutableURLRequest *) request 
    +
    +optional
    +
    + +

    Called immediately before downloading the specified update.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be downloaded.
    requestThe mutable URL request that will be used to download the update.
    +
    +
    + +
    +
    + +

    ◆ updater:willExtractUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willExtractUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately before extracting the specified downloaded update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that is proposed to be extracted.
    +
    +
    + +
    +
    + +

    ◆ updater:willInstallUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willInstallUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately before installing the specified update.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    +
    +
    + +
    +
    + +

    ◆ updater:willInstallUpdateOnQuit:immediateInstallationBlock:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    willInstallUpdateOnQuit:(SUAppcastItem *) item
    immediateInstallationBlock:(void(^)(void)) immediateInstallHandler 
    +
    +optional
    +
    + +

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    immediateInstallHandlerThe install handler to immediately install the update. No UI interaction will be shown and the application will be relaunched after installation.
    +
    +
    +
    Returns
    Return YES if the delegate will handle installing the update or NO if the updater should be given responsibility.
    +

    If the updater is given responsibility, it can later remind the user an update is available if they have not terminated the application for a long time. Also if the updater is given responsibility and the update item is marked critical, the new update will be presented to the user immediately after. Even if the immediateInstallHandler is not invoked, the installer will attempt to install the update on termination.

    + +
    +
    + +

    ◆ updater:willScheduleUpdateCheckAfterDelay:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willScheduleUpdateCheckAfterDelay:(NSTimeInterval) delay 
    +
    +optional
    +
    + +

    Called when a background update will be scheduled after a delay.

    +

    Automatic update checks need to be enabled for this to trigger.

    +
    Parameters
    + + + +
    delayThe delay until the next scheduled update will occur.
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterDidNotFindUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterDidNotFindUpdate: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when a valid update is not found.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterDidNotFindUpdate:error:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updaterDidNotFindUpdate: (SPUUpdater *) updater
    error:(NSError *) error 
    +
    +optional
    +
    + +

    Called when a valid update is not found.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    errorAn error containing information on why a new valid update was not found There are various reasons a new update is unavailable and can't be installed. The userInfo dictionary on the error is also populated with three keys: SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found. This will be nil if it's unavailable. SPUNoUpdateFoundReasonKey: This will provide the SUNoUpdateFoundReason. For example the reason could be because the latest version in the feed requires a newer OS version or could be because the user is already on the latest version. SPUNoUpdateFoundUserInitiatedKey: A boolean that indicates if a new update was not found when the user intitiated an update check manually.
    +
    +
    + +
    +
    + +

    ◆ updaterMayCheckForUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterMayCheckForUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether to allow Sparkle to pop up.

    +

    For example, this may be used to prevent Sparkle from interrupting a setup assistant. Alternatively, you may want to consider starting the updater after eg: the setup assistant finishes

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterShouldDownloadReleaseNotes:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldDownloadReleaseNotes: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    +

    This is specifically for the releaseNotesLink element in the appcast.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    YES to download and show the release notes if available, otherwise NO. The default behavior is YES.
    + +
    +
    + +

    ◆ updaterShouldPromptForPermissionToCheckForUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldPromptForPermissionToCheckForUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether Sparkle should prompt the user about automatic update checks.

    +

    Use this to override the default behavior.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterShouldRelaunchApplication:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldRelaunchApplication: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether the application should be relaunched at all.

    +

    Some apps cannot be relaunched under certain circumstances. This method can be used to explicitly prevent a relaunch.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    YES if the updater should be relaunched, otherwise NO if it shouldn't.
    + +
    +
    + +

    ◆ updaterWillIdleSchedulingUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterWillIdleSchedulingUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when no updates will be scheduled in the future.

    +

    This may later change if automatic update checks become enabled.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterWillRelaunchApplication:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterWillRelaunchApplication: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called immediately before relaunching.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ userDidCancelDownload:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) userDidCancelDownload: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when the user clicks the cancel button while and update is being downloaded.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ versionComparatorForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable id<SUVersionComparison>) versionComparatorForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    +

    This method allows you to provide a custom version comparator. If you don't implement this method or return nil, the standard version comparator will be used. Note that the standard version comparator may be used during installation for preventing a downgrade, even if you provide a custom comparator here.

    +
    See also
    SUStandardVersionComparator
    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    The custom version comparator or nil if you don't want to be delegated this task.
    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.png new file mode 100644 index 0000000..c5e5958 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p-members.html new file mode 100644 index 0000000..81e0b85 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterTimerDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterTimerDelegate>, including all inherited members.

    + + +
    updaterTimerDidFire (defined in <SPUUpdaterTimerDelegate>)<SPUUpdaterTimerDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.html new file mode 100644 index 0000000..3183d01 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: <SPUUpdaterTimerDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterTimerDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdaterTimerDelegate>:
    +
    +
    + + +SPUUpdater() + +
    + + + + +

    +Instance Methods

    +(void) - updaterTimerDidFire
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.png new file mode 100644 index 0000000..edd3a92 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_updater_timer_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p-members.html new file mode 100644 index 0000000..51388aa --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUserDriver> Member List
    +
    + + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.html new file mode 100644 index 0000000..4310776 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.html @@ -0,0 +1,706 @@ + + + + + + + +Sparkle: <SPUUserDriver> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUserDriver> Protocol Reference
    +
    +
    + +

    The API in Sparkle for controlling the user interaction. + More...

    + +

    #import <SPUUserDriver.h>

    +
    +Inheritance diagram for <SPUUserDriver>:
    +
    +
    + + +SPUStandardUserDriver + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (void) - showUpdatePermissionRequest:reply:
     Show an updater permission request to the user. More...
     
    (void) - showUserInitiatedUpdateCheckWithCancellation:
     Show the user initating an update check. More...
     
    (void) - showUpdateFoundWithAppcastItem:state:reply:
     Show the user a new update is found. More...
     
    (void) - showUpdateReleaseNotesWithDownloadData:
     Show the user the release notes for the new update. More...
     
    (void) - showUpdateReleaseNotesFailedToDownloadWithError:
     Show the user that the new update's release notes could not be downloaded. More...
     
    (void) - showUpdateNotFoundWithError:acknowledgement:
     Show the user a new update was not found. More...
     
    (void) - showUpdaterError:acknowledgement:
     Show the user an update error occurred. More...
     
    (void) - showDownloadInitiatedWithCancellation:
     Show the user that downloading the new update initiated. More...
     
    (void) - showDownloadDidReceiveExpectedContentLength:
     Show the user the content length of the new update that will be downloaded. More...
     
    (void) - showDownloadDidReceiveDataOfLength:
     Show the user that the update download received more data. More...
     
    (void) - showDownloadDidStartExtractingUpdate
     Show the user that the update finished downloading and started extracting. More...
     
    (void) - showExtractionReceivedProgress:
     Show the user that the update is extracting with progress. More...
     
    (void) - showInstallingUpdate
     Show the user that the update is installing. More...
     
    (void) - showReadyToInstallAndRelaunch:
     Show the user that the update is ready to install & relaunch. More...
     
    (void) - showSendingTerminationSignal
     Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer. More...
     
    (void) - showUpdateInstalledAndRelaunched:acknowledgement:
     Show the user that the update installation finished. More...
     
    (void) - showUpdateInFocus
     Show the user the current presented update or its progress in utmost focus. More...
     
    (void) - dismissUpdateInstallation
     Dismiss the current update installation. More...
     
    +(void) - showUpdateNotFoundWithAcknowledgement:
     
    +(void) - showUpdateInstallationDidFinishWithAcknowledgement:
     
    +("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.") - __deprecated_msg
     
    +

    Detailed Description

    +

    The API in Sparkle for controlling the user interaction.

    +

    This protocol is used for implementing a user interface for the Sparkle updater. Sparkle's internal drivers tell an object that implements this protocol what actions to take and show to the user.

    +

    Every method in this protocol can be assumed to be called from the main thread.

    +

    Method Documentation

    + +

    ◆ dismissUpdateInstallation

    + +
    +
    + + + + + + + +
    - (void) dismissUpdateInstallation
    +
    + +

    Dismiss the current update installation.

    +

    Stop and tear down everything. Dismiss all update windows, alerts, progress, etc from the user. Basically, stop everything that could have been started. Sparkle may invoke this when aborting or finishing an update.

    + +
    +
    + +

    ◆ showDownloadDidReceiveDataOfLength:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadDidReceiveDataOfLength: (uint64_t) length
    +
    + +

    Show the user that the update download received more data.

    +

    This may be an appropriate time to advance a visible progress indicator of the download

    Parameters
    + + +
    lengthThe length of the data that was just downloaded
    +
    +
    + +
    +
    + +

    ◆ showDownloadDidReceiveExpectedContentLength:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadDidReceiveExpectedContentLength: (uint64_t) expectedContentLength
    +
    + +

    Show the user the content length of the new update that will be downloaded.

    +
    Parameters
    + + +
    expectedContentLengthThe expected content length of the new update being downloaded. An implementor should be able to handle if this value is invalid (more or less than actual content length downloaded). Additionally, this method may be called more than once for the same download in rare scenarios.
    +
    +
    + +
    +
    + +

    ◆ showDownloadDidStartExtractingUpdate

    + +
    +
    + + + + + + + +
    - (void) showDownloadDidStartExtractingUpdate
    +
    + +

    Show the user that the update finished downloading and started extracting.

    +

    Sparkle uses this to show an indeterminate progress bar.

    +

    Note that an update can resume at this point after having been downloaded before, so this may be called without any of the download callbacks being invoked prior.

    + +
    +
    + +

    ◆ showDownloadInitiatedWithCancellation:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadInitiatedWithCancellation: (void(^)(void)) cancellation
    +
    + +

    Show the user that downloading the new update initiated.

    +

    Let the user know that downloading the new update started.

    +
    Parameters
    + + +
    cancellationInvoke this cancellation block to cancel the download at any point before -showDownloadDidStartExtractingUpdate is invoked.
    +
    +
    + +
    +
    + +

    ◆ showExtractionReceivedProgress:

    + +
    +
    + + + + + + + + +
    - (void) showExtractionReceivedProgress: (double) progress
    +
    + +

    Show the user that the update is extracting with progress.

    +

    Let the user know how far along the update extraction is.

    +

    Before this point, -showDownloadDidStartExtractingUpdate is called.

    +
    Parameters
    + + +
    progressThe progress of the extraction from a 0.0 to 1.0 scale
    +
    +
    + +
    +
    + +

    ◆ showInstallingUpdate

    + +
    +
    + + + + + + + +
    - (void) showInstallingUpdate
    +
    + +

    Show the user that the update is installing.

    +

    Let the user know that the update is currently installing. Sparkle uses this to show an indeterminate progress bar.

    +

    Before this point, -showExtractionReceivedProgress: may be called.

    + +
    +
    + +

    ◆ showReadyToInstallAndRelaunch:

    + +
    +
    + + + + + + + + +
    - (void) showReadyToInstallAndRelaunch: (void(^)(SPUUserUpdateChoice)) reply
    +
    + +

    Show the user that the update is ready to install & relaunch.

    +

    Let the user know that the update is ready to install and relaunch, and ask them whether they want to proceed. Note if the target application has already terminated, this method may not be invoked.

    +
    Parameters
    + + +
    replyA reply of SPUUserUpdateChoiceInstall installs the update the new update immediately. The application is relaunched only if it is still running by the time this reply is invoked. If the application terminates on its own, Sparkle will attempt to automatically install the update.
    +
    +
    +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update installation for the time being. Note the update may still be installed automatically after the application terminates.

    +

    A reply of SPUUserUpdateChoiceSkip cancels the current update that has begun installing and dismisses the update. In this circumstance, the update is canceled but this update version is not skipped in the future.

    +

    Before this point, -showInstallingUpdate will be called.

    + +
    +
    + +

    ◆ showSendingTerminationSignal

    + +
    +
    + + + + + + + +
    - (void) showSendingTerminationSignal
    +
    + +

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer.

    +

    Terminating and relaunching the application (if requested to be relaunched) may happen quickly, or it may take some time to perform the final installation, or the termination signal can be canceled or delayed by the application or user.

    +

    It is up to the implementor whether or not to decide to continue showing installation progress or dismissing UI that won't remain obscuring other parts of the user interface.

    +

    This will not be invoked if the application that is being updated is already terminated.

    + +
    +
    + +

    ◆ showUpdateFoundWithAppcastItem:state:reply:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateFoundWithAppcastItem: (SUAppcastItem *) appcastItem
    state:(SPUUserUpdateState *) state
    reply:(void(^)(SPUUserUpdateChoice)) reply 
    +
    + +

    Show the user a new update is found.

    +

    Let the user know a new update is found and ask them what they want to do. Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    +
    Parameters
    + + + +
    appcastItemThe Appcast Item containing information that reflects the new update.
    stateThe current state of the user update. The state.stage values are: SPUUpdateStateNotDownloaded - Update has not been downloaded yet. SPUUpdateStateDownloaded - Update has already been downloaded but not started installing yet. SPUUpdateStateInstalling - Update has been downloaded and already started installing.
    +
    +
    +

    state.userInitiated indicates if the update was initiated by the user or if it was automatically scheduled in the background.

    +

    Additionally, these properties on the appcastItem are of importance: appcastItem.informationOnlyUpdate indicates if the update is only informational and should not be downloaded. You can direct the user to the infoURL property of the appcastItem in their web browser. Sometimes information only updates are used as a fallback in case a bad update is shipped, so you'll want to support this case. appcastItem.majorUpgrade indicates if the update is a major or paid upgrade. appcastItem.criticalUpdate indicates if the update is a critical update.

    +
    Parameters
    + + +
    replyA reply of SPUUserUpdateChoiceInstall begins or resumes downloading or installing the update. If the state.stage is SPUUserUpdateStateInstalling, this may send a quit event to the application and relaunch it immediately (in this state, this behaves as a fast "install and Relaunch"). Do not use this reply if appcastItem.informationOnlyUpdate is YES.
    +
    +
    +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update for the time being. The user may be reminded of the update at a later point. If the state.stage is SPUUserUpdateStateDownloaded, the downloaded update is kept after dismissing until the next time an update is shown to the user. If the state.stage is SPUUserUpdateStateInstalling, the installing update is also preserved after dismissing. In this state however, the update will also still be installed after the application is terminated.

    +

    A reply of SPUUserUpdateChoiceSkip skips this particular version and won't notify the user again, unless they initiate an update check themselves. If appcastItem.majorUpgrade is YES, the major update and any future minor updates to that major release are skipped. If the state.stage is SPUUpdateStateInstalling, the installation is also canceled when the update is skipped.

    + +
    +
    + +

    ◆ showUpdateInFocus

    + +
    +
    + + + + + + + +
    - (void) showUpdateInFocus
    +
    + +

    Show the user the current presented update or its progress in utmost focus.

    +

    The user wishes to check for updates while the user is being shown update progress. Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc).

    + +
    +
    + +

    ◆ showUpdateInstalledAndRelaunched:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateInstalledAndRelaunched: (BOOL) relaunched
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user that the update installation finished.

    +

    Let the user know that the update finished installing.

    +

    This will only be invoked if the updater process is still alive, which is typically not the case if the updater's lifetime is tied to the application it is updating. This implementation must not try to reference the old bundle prior to the installation, which will no longer be around.

    +

    Before this point, -showSendingTerminationSignal or -showReadyToInstallAndRelaunch: may be called.

    +
    Parameters
    + + + +
    relaunchedIndicates if the update was relaunched.
    acknowledgementAcknowledge to the updater that the finished installation was shown.
    +
    +
    + +
    +
    + +

    ◆ showUpdateNotFoundWithError:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateNotFoundWithError: (NSError *) error
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user a new update was not found.

    +

    Let the user know a new update was not found after they tried initiating an update check. Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    +
    Parameters
    + + +
    errorThe error associated with why a new update was not found. There are various reasons a new update is unavailable and can't be installed. This error object is populated with recovery and suggestion strings suitable to be shown in an alert.
    +
    +
    +

    The userInfo dictionary is also populated with two keys: SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found. SPUNoUpdateFoundReasonKey: if available, this will provide the SUNoUpdateFoundReason. For example the reason could be because the latest version in the feed requires a newer OS version or could be because the user is already on the latest version.

    +
    Parameters
    + + +
    acknowledgementAcknowledge to the updater that no update found error was shown.
    +
    +
    + +
    +
    + +

    ◆ showUpdatePermissionRequest:reply:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdatePermissionRequest: (SPUUpdatePermissionRequest *) request
    reply:(void(^)(SUUpdatePermissionResponse *)) reply 
    +
    + +

    Show an updater permission request to the user.

    +

    Ask the user for their permission regarding update checks. This is typically only called once per app installation.

    +
    Parameters
    + + + +
    requestThe update permission request.
    replyA reply with a update permission response.
    +
    +
    + +
    +
    + +

    ◆ showUpdateReleaseNotesFailedToDownloadWithError:

    + +
    +
    + + + + + + + + +
    - (void) showUpdateReleaseNotesFailedToDownloadWithError: (NSError *) error
    +
    + +

    Show the user that the new update's release notes could not be downloaded.

    +

    This will be called after showing the new update. This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    +
    Parameters
    + + +
    errorThe error associated with why the new update's release notes could not be downloaded.
    +
    +
    + +
    +
    + +

    ◆ showUpdateReleaseNotesWithDownloadData:

    + +
    +
    + + + + + + + + +
    - (void) showUpdateReleaseNotesWithDownloadData: (SPUDownloadData *) downloadData
    +
    + +

    Show the user the release notes for the new update.

    +

    Display the release notes to the user. This will be called after showing the new update. This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    +
    Parameters
    + + +
    downloadDataThe data for the release notes that was downloaded from the new update's appcast.
    +
    +
    + +
    +
    + +

    ◆ showUpdaterError:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdaterError: (NSError *) error
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user an update error occurred.

    +

    Let the user know that the updater failed with an error. This will not be invoked without the user having been aware that an update was in progress.

    +

    Before this point, any of the non-error user driver methods may have been invoked.

    +
    Parameters
    + + + +
    errorThe error associated with what update error occurred..
    acknowledgementAcknowledge to the updater that the error was shown.
    +
    +
    + +
    +
    + +

    ◆ showUserInitiatedUpdateCheckWithCancellation:

    + +
    +
    + + + + + + + + +
    - (void) showUserInitiatedUpdateCheckWithCancellation: (void(^)(void)) cancellation
    +
    + +

    Show the user initating an update check.

    +

    Respond to the user initiating an update check. Sparkle uses this to show the user a window with an indeterminate progress bar.

    +
    Parameters
    + + +
    cancellationInvoke this cancellation block to cancel the update check before the update check is completed.
    +
    +
    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.png new file mode 100644 index 0000000..ff05e94 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_p_u_user_driver-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p-members.html new file mode 100644 index 0000000..f66ac21 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUAppcastDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SUAppcastDriverDelegate>, including all inherited members.

    + + + + + +
    didFailToFetchAppcastWithError: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didFindValidUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didFinishLoadingAppcast: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.html new file mode 100644 index 0000000..cb9f359 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: <SUAppcastDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUAppcastDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SUAppcastDriverDelegate>:
    +
    +
    + + +SPUBasicUpdateDriver() + +
    + + + + + + + + + + +

    +Instance Methods

    +(void) - didFailToFetchAppcastWithError:
     
    +(void) - didFinishLoadingAppcast:
     
    +(void) - didFindValidUpdateWithAppcastItem:secondaryAppcastItem:
     
    +(void) - didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.png new file mode 100644 index 0000000..ebbca78 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_appcast_driver_delegate-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p-members.html new file mode 100644 index 0000000..3c8cd7f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUInstallerAgentInitiationProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SUInstallerAgentInitiationProtocol>, including all inherited members.

    + + + +
    connectionDidInitiateWithReply: (defined in <SUInstallerAgentInitiationProtocol>)<SUInstallerAgentInitiationProtocol>
    connectionWillInvalidateWithError: (defined in <SUInstallerAgentInitiationProtocol>)<SUInstallerAgentInitiationProtocol>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p.html new file mode 100644 index 0000000..4e7b353 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_agent_initiation_protocol-p.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: <SUInstallerAgentInitiationProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUInstallerAgentInitiationProtocol> Protocol Reference
    +
    +
    + + + + + + +

    +Instance Methods

    +(void) - connectionDidInitiateWithReply:
     
    +(void) - connectionWillInvalidateWithError:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p-members.html new file mode 100644 index 0000000..b2794d1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUInstallerProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SUInstallerProtocol>, including all inherited members.

    + + + + + +
    canInstallSilently (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    installationPath (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    performFinalInstallationProgressBlock:error: (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    performInitialInstallation: (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.html new file mode 100644 index 0000000..83dc76c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: <SUInstallerProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUInstallerProtocol> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SUInstallerProtocol>:
    +
    +
    + +
    + + + + + + + + + + +

    +Instance Methods

    +(BOOL) - performInitialInstallation:
     
    +(BOOL) - performFinalInstallationProgressBlock:error:
     
    +(BOOL) - canInstallSilently
     
    +(NSString *) - installationPath
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.png new file mode 100644 index 0000000..7b127fd Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_installer_protocol-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p-members.html new file mode 100644 index 0000000..a059b4a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUVersionComparison> Member List
    +
    +
    + +

    This is the complete list of members for <SUVersionComparison>, including all inherited members.

    + + +
    compareVersion:toVersion:<SUVersionComparison>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.html new file mode 100644 index 0000000..7469c5e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.html @@ -0,0 +1,140 @@ + + + + + + + +Sparkle: <SUVersionComparison> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUVersionComparison> Protocol Reference
    +
    +
    + +

    Provides version comparison facilities for Sparkle. + More...

    + +

    #import <SUVersionComparisonProtocol.h>

    +
    +Inheritance diagram for <SUVersionComparison>:
    +
    +
    + + +SUStandardVersionComparator + +
    + + + + + +

    +Instance Methods

    (NSComparisonResult) - compareVersion:toVersion:
     An abstract method to compare two version strings. More...
     
    +

    Detailed Description

    +

    Provides version comparison facilities for Sparkle.

    +

    Method Documentation

    + +

    ◆ compareVersion:toVersion:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (NSComparisonResult) compareVersion: (NSString *) versionA
    toVersion:(NSString *) versionB 
    +
    + +

    An abstract method to compare two version strings.

    +

    Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent.

    + +

    Reimplemented in SUStandardVersionComparator.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.png new file mode 100644 index 0000000..b080539 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_comparison-p.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p-members.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p-members.html new file mode 100644 index 0000000..5b20f09 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUVersionDisplay> Member List
    +
    +
    + +

    This is the complete list of members for <SUVersionDisplay>, including all inherited members.

    + + +
    formatVersion:andVersion:<SUVersionDisplay>
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p.html new file mode 100644 index 0000000..416112a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/protocol_s_u_version_display-p.html @@ -0,0 +1,129 @@ + + + + + + + +Sparkle: <SUVersionDisplay> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUVersionDisplay> Protocol Reference
    +
    +
    + +

    Applies special display formatting to version numbers. + More...

    + +

    #import <SUVersionDisplayProtocol.h>

    + + + + + +

    +Instance Methods

    (void) - formatVersion:andVersion:
     Formats two version strings. More...
     
    +

    Detailed Description

    +

    Applies special display formatting to version numbers.

    +

    Method Documentation

    + +

    ◆ formatVersion:andVersion:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) formatVersion: (NSString *_Nonnull *_Nonnull) inOutVersionA
    andVersion:(NSString *_Nonnull *_Nonnull) inOutVersionB 
    +
    + +

    Formats two version strings.

    +

    Both versions are provided so that important distinguishing information can be displayed while also leaving out unnecessary/confusing parts.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search.json b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search.json new file mode 100644 index 0000000..8a0cad3 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search.json @@ -0,0 +1 @@ +{"Protocols/SUVersionDisplay.html#/c:objc(pl)SUVersionDisplay(im)formatVersion:andVersion:":{"name":"-formatVersion:andVersion:","abstract":"

    Formats two version strings.

    ","parent_name":"SUVersionDisplay"},"Protocols/SUVersionComparison.html#/c:objc(pl)SUVersionComparison(im)compareVersion:toVersion:":{"name":"-compareVersion:toVersion:","abstract":"

    An abstract method to compare two version strings.

    ","parent_name":"SUVersionComparison"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterMayCheckForUpdates:":{"name":"-updaterMayCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)feedParametersForUpdater:sendingSystemProfile:":{"name":"-feedParametersForUpdater:sendingSystemProfile:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)feedURLStringForUpdater:":{"name":"-feedURLStringForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterShouldPromptForPermissionToCheckForUpdates:":{"name":"-updaterShouldPromptForPermissionToCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didFinishLoadingAppcast:":{"name":"-updater:didFinishLoadingAppcast:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)bestValidUpdateInAppcast:forUpdater:":{"name":"-bestValidUpdateInAppcast:forUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didFindValidUpdate:":{"name":"-updater:didFindValidUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidNotFindUpdate:":{"name":"-updaterDidNotFindUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willDownloadUpdate:withRequest:":{"name":"-updater:willDownloadUpdate:withRequest:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didDownloadUpdate:":{"name":"-updater:didDownloadUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:failedToDownloadUpdate:error:":{"name":"-updater:failedToDownloadUpdate:error:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)userDidCancelDownload:":{"name":"-userDidCancelDownload:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willExtractUpdate:":{"name":"-updater:willExtractUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didExtractUpdate:":{"name":"-updater:didExtractUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdate:":{"name":"-updater:willInstallUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:userDidSkipThisVersion:":{"name":"-updater:userDidSkipThisVersion:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:untilInvoking:":{"name":"-updater:shouldPostponeRelaunchForUpdate:untilInvoking:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:":{"name":"-updater:shouldPostponeRelaunchForUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterShouldRelaunchApplication:":{"name":"-updaterShouldRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterWillRelaunchApplication:":{"name":"-updaterWillRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidRelaunchApplication:":{"name":"-updaterDidRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)versionComparatorForUpdater:":{"name":"-versionComparatorForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)versionDisplayerForUpdater:":{"name":"-versionDisplayerForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)pathToRelaunchForUpdater:":{"name":"-pathToRelaunchForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterWillShowModalAlert:":{"name":"-updaterWillShowModalAlert:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidShowModalAlert:":{"name":"-updaterDidShowModalAlert:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationInvocation:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationInvocation:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationBlock:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationBlock:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didCancelInstallUpdateOnQuit:":{"name":"-updater:didCancelInstallUpdateOnQuit:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didAbortWithError:":{"name":"-updater:didAbortWithError:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdatePermissionRequest:reply:":{"name":"-showUpdatePermissionRequest:reply:","abstract":"

    Show an updater permission request to the user

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUserInitiatedUpdateCheckWithCancellation:":{"name":"-showUserInitiatedUpdateCheckWithCancellation:","abstract":"

    Show the user initating an update check

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateFoundWithAppcastItem:state:reply:":{"name":"-showUpdateFoundWithAppcastItem:state:reply:","abstract":"

    Show the user a new update is found.

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateReleaseNotesWithDownloadData:":{"name":"-showUpdateReleaseNotesWithDownloadData:","abstract":"

    Show the user the release notes for the new update

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateReleaseNotesFailedToDownloadWithError:":{"name":"-showUpdateReleaseNotesFailedToDownloadWithError:","abstract":"

    Show the user that the new update’s release notes could not be downloaded

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateNotFoundWithError:acknowledgement:":{"name":"-showUpdateNotFoundWithError:acknowledgement:","abstract":"

    Show the user a new update was not found

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdaterError:acknowledgement:":{"name":"-showUpdaterError:acknowledgement:","abstract":"

    Show the user an update error occurred

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadInitiatedWithCancellation:":{"name":"-showDownloadInitiatedWithCancellation:","abstract":"

    Show the user that downloading the new update initiated

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidReceiveExpectedContentLength:":{"name":"-showDownloadDidReceiveExpectedContentLength:","abstract":"

    Show the user the content length of the new update that will be downloaded

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidReceiveDataOfLength:":{"name":"-showDownloadDidReceiveDataOfLength:","abstract":"

    Show the user that the update download received more data

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidStartExtractingUpdate":{"name":"-showDownloadDidStartExtractingUpdate","abstract":"

    Show the user that the update finished downloading and started extracting

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showExtractionReceivedProgress:":{"name":"-showExtractionReceivedProgress:","abstract":"

    Show the user that the update is extracting with progress

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showInstallingUpdate":{"name":"-showInstallingUpdate","abstract":"

    Show the user that the update is installing

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showReadyToInstallAndRelaunch:":{"name":"-showReadyToInstallAndRelaunch:","abstract":"

    Show the user that the update is ready to install & relaunch

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showSendingTerminationSignal":{"name":"-showSendingTerminationSignal","abstract":"

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle’s installer

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInstalledAndRelaunched:acknowledgement:":{"name":"-showUpdateInstalledAndRelaunched:acknowledgement:","abstract":"

    Show the user that the update installation finished

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInFocus":{"name":"-showUpdateInFocus","abstract":"

    Show the user the current presented update or its progress in utmost focus

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)dismissUpdateInstallation":{"name":"-dismissUpdateInstallation","abstract":"

    Dismiss the current update installation

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateNotFoundWithAcknowledgement:":{"name":"-showUpdateNotFoundWithAcknowledgement:","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInstallationDidFinishWithAcknowledgement:":{"name":"-showUpdateInstallationDidFinishWithAcknowledgement:","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)dismissUserInitiatedUpdateCheck":{"name":"-dismissUserInitiatedUpdateCheck","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:mayPerformUpdateCheck:error:":{"name":"-updater:mayPerformUpdateCheck:error:","abstract":"

    Returns whether to allow Sparkle to check for updates.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)allowedChannelsForUpdater:":{"name":"-allowedChannelsForUpdater:","abstract":"

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)feedURLStringForUpdater:":{"name":"-feedURLStringForUpdater:","abstract":"

    Returns a custom appcast URL used for checking for new updates.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)feedParametersForUpdater:sendingSystemProfile:":{"name":"-feedParametersForUpdater:sendingSystemProfile:","abstract":"

    Returns additional parameters to append to the appcast URL’s query string.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterShouldPromptForPermissionToCheckForUpdates:":{"name":"-updaterShouldPromptForPermissionToCheckForUpdates:","abstract":"

    Returns whether Sparkle should prompt the user about checking for new updates automatically.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)allowedSystemProfileKeysForUpdater:":{"name":"-allowedSystemProfileKeysForUpdater:","abstract":"

    Returns an allowed list of system profile keys to be appended to the appcast URL’s query string.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFinishLoadingAppcast:":{"name":"-updater:didFinishLoadingAppcast:","abstract":"

    Called after Sparkle has downloaded the appcast from the remote server.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFindValidUpdate:":{"name":"-updater:didFindValidUpdate:","abstract":"

    Called when a new valid update is found by the update driver.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterDidNotFindUpdate:error:":{"name":"-updaterDidNotFindUpdate:error:","abstract":"

    Called when a valid new update is not found.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterDidNotFindUpdate:":{"name":"-updaterDidNotFindUpdate:","abstract":"

    Called when a valid new update is not found.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)bestValidUpdateInAppcast:forUpdater:":{"name":"-bestValidUpdateInAppcast:forUpdater:","abstract":"

    Returns the item in the appcast corresponding to the update that should be installed.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldProceedWithUpdate:updateCheck:error:":{"name":"-updater:shouldProceedWithUpdate:updateCheck:error:","abstract":"

    Returns whether or not the updater should proceed with the new chosen update from the appcast.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:userDidSkipThisVersion:":{"name":"-updater:userDidSkipThisVersion:","abstract":"

    Called when an update is skipped by the user.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldDownloadReleaseNotesForUpdate:":{"name":"-updater:shouldDownloadReleaseNotesForUpdate:","abstract":"

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willDownloadUpdate:withRequest:":{"name":"-updater:willDownloadUpdate:withRequest:","abstract":"

    Called immediately before downloading the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didDownloadUpdate:":{"name":"-updater:didDownloadUpdate:","abstract":"

    Called immediately after succesfull download of the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:failedToDownloadUpdate:error:":{"name":"-updater:failedToDownloadUpdate:error:","abstract":"

    Called after the specified update failed to download.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)userDidCancelDownload:":{"name":"-userDidCancelDownload:","abstract":"

    Called when the user cancels an update while it is being downloaded.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willExtractUpdate:":{"name":"-updater:willExtractUpdate:","abstract":"

    Called immediately before extracting the specified downloaded update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didExtractUpdate:":{"name":"-updater:didExtractUpdate:","abstract":"

    Called immediately after extracting the specified downloaded update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willInstallUpdate:":{"name":"-updater:willInstallUpdate:","abstract":"

    Called immediately before installing the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:":{"name":"-updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:","abstract":"

    Returns whether the relaunch should be delayed in order to perform other tasks.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterShouldRelaunchApplication:":{"name":"-updaterShouldRelaunchApplication:","abstract":"

    Returns whether the application should be relaunched at all.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterWillRelaunchApplication:":{"name":"-updaterWillRelaunchApplication:","abstract":"

    Called immediately before relaunching.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)versionComparatorForUpdater:":{"name":"-versionComparatorForUpdater:","abstract":"

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willScheduleUpdateCheckAfterDelay:":{"name":"-updater:willScheduleUpdateCheckAfterDelay:","abstract":"

    Called when a background update will be scheduled after a delay.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterWillNotScheduleUpdateCheck:":{"name":"-updaterWillNotScheduleUpdateCheck:","abstract":"

    Called when no update checks will be scheduled in the future.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)decryptionPasswordForUpdater:":{"name":"-decryptionPasswordForUpdater:","abstract":"

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationBlock:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationBlock:","abstract":"

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didAbortWithError:":{"name":"-updater:didAbortWithError:","abstract":"

    Called after the update driver aborts due to an error.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFinishUpdateCycleForUpdateCheck:error:":{"name":"-updater:didFinishUpdateCycleForUpdateCheck:error:","abstract":"

    Called after the update driver finishes.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterMayCheckForUpdates:":{"name":"-updaterMayCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverWillShowModalAlert":{"name":"-standardUserDriverWillShowModalAlert","abstract":"

    Called before showing a modal alert window,","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverDidShowModalAlert":{"name":"-standardUserDriverDidShowModalAlert","abstract":"

    Called after showing a modal alert window,","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverRequestsVersionDisplayer":{"name":"-standardUserDriverRequestsVersionDisplayer","abstract":"

    Returns an object that formats version numbers for display to the user.","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html":{"name":"SPUStandardUserDriverDelegate","abstract":"

    A protocol for Sparkle’s standard user driver’s delegate

    "},"Protocols/SPUUpdaterDelegate.html":{"name":"SPUUpdaterDelegate","abstract":"

    Provides delegation methods to control the behavior of an SPUUpdater object.

    "},"Protocols/SPUUserDriver.html":{"name":"SPUUserDriver","abstract":"

    The API in Sparkle for controlling the user interaction.

    "},"Protocols/SUUpdaterDelegate.html":{"name":"SUUpdaterDelegate","abstract":"

    Undocumented

    "},"Protocols/SUVersionComparison.html":{"name":"SUVersionComparison","abstract":"

    Provides version comparison facilities for Sparkle.

    "},"Protocols/SUVersionDisplay.html":{"name":"SUVersionDisplay","abstract":"

    Applies special display formatting to version numbers.

    "},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonUnknown":{"name":"SPUNoUpdateFoundReasonUnknown","abstract":"

    A new update is unavailable for an unknown reason.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonOnLatestVersion":{"name":"SPUNoUpdateFoundReasonOnLatestVersion","abstract":"

    A new update is unavailable because the user is on the latest known version in the appcast feed.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonOnNewerThanLatestVersion":{"name":"SPUNoUpdateFoundReasonOnNewerThanLatestVersion","abstract":"

    A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonSystemIsTooOld":{"name":"SPUNoUpdateFoundReasonSystemIsTooOld","abstract":"

    A new update is unavailable because the user’s operating system version is too old for the update.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonSystemIsTooNew":{"name":"SPUNoUpdateFoundReasonSystemIsTooNew","abstract":"

    A new update is unavailable because the user’s operating system version is too new for the update.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SUError.html#/c:@E@SUError@SUNoPublicDSAFoundError":{"name":"SUNoPublicDSAFoundError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInsufficientSigningError":{"name":"SUInsufficientSigningError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInsecureFeedURLError":{"name":"SUInsecureFeedURLError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidFeedURLError":{"name":"SUInvalidFeedURLError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidUpdaterError":{"name":"SUInvalidUpdaterError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidHostBundleIdentifierError":{"name":"SUInvalidHostBundleIdentifierError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidHostVersionError":{"name":"SUInvalidHostVersionError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAppcastParseError":{"name":"SUAppcastParseError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUNoUpdateError":{"name":"SUNoUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAppcastError":{"name":"SUAppcastError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURunningFromDiskImageError":{"name":"SURunningFromDiskImageError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUResumeAppcastError":{"name":"SUResumeAppcastError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURunningTranslocated":{"name":"SURunningTranslocated","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUWebKitTerminationError":{"name":"SUWebKitTerminationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUTemporaryDirectoryError":{"name":"SUTemporaryDirectoryError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUDownloadError":{"name":"SUDownloadError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUUnarchivingError":{"name":"SUUnarchivingError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUSignatureError":{"name":"SUSignatureError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUValidationError":{"name":"SUValidationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUFileCopyFailure":{"name":"SUFileCopyFailure","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAuthenticationFailure":{"name":"SUAuthenticationFailure","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUMissingUpdateError":{"name":"SUMissingUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUMissingInstallerToolError":{"name":"SUMissingInstallerToolError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURelaunchError":{"name":"SURelaunchError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationError":{"name":"SUInstallationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUDowngradeError":{"name":"SUDowngradeError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationCanceledError":{"name":"SUInstallationCanceledError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationAuthorizeLaterError":{"name":"SUInstallationAuthorizeLaterError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUNotValidUpdateError":{"name":"SUNotValidUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAgentInvalidationError":{"name":"SUAgentInvalidationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUIncorrectAPIUsageError":{"name":"SUIncorrectAPIUsageError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageNotDownloaded":{"name":"SPUUserUpdateStageNotDownloaded","abstract":"

    The update has not been downloaded.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageDownloaded":{"name":"SPUUserUpdateStageDownloaded","abstract":"

    The update has already been downloaded but not begun installing.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageInstalling":{"name":"SPUUserUpdateStageInstalling","abstract":"

    The update has already been downloaded and began installing in the background.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceSkip":{"name":"SPUUserUpdateChoiceSkip","abstract":"

    Dismisses the update and skips being notified of it in the future.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceInstall":{"name":"SPUUserUpdateChoiceInstall","abstract":"

    Downloads (if needed) and installs the update.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceDismiss":{"name":"SPUUserUpdateChoiceDismiss","abstract":"

    Dismisses the update until Sparkle reminds the user of it at a later time.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdates":{"name":"SPUUpdateCheckUpdates","abstract":"

    The user-initiated update check corresponding to -[SPUUpdater checkForUpdates].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdatesInBackground":{"name":"SPUUpdateCheckUpdatesInBackground","abstract":"

    The background scheduled update check corresponding to -[SPUUpdater checkForUpdatesInBackground].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdateInformation":{"name":"SPUUpdateCheckUpdateInformation","abstract":"

    The informational probe update check corresponding to -[SPUUpdater checkForUpdateInformation].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html":{"name":"SPUUpdateCheck","abstract":"

    Describes the type of update check being performed.

    "},"Enums/SPUUserUpdateChoice.html":{"name":"SPUUserUpdateChoice","abstract":"

    A choice made by the user when prompted with a new update.

    "},"Enums/SPUUserUpdateStage.html":{"name":"SPUUserUpdateStage","abstract":"

    Describes the current stage an update is undergoing.

    "},"Enums/SUError.html":{"name":"SUError","abstract":"

    Undocumented

    "},"Enums/SPUNoUpdateFoundReason.html":{"name":"SPUNoUpdateFoundReason","abstract":"

    The reason why a new update is not available.

    "},"Constants.html#/c:@SUUpdaterDidFinishLoadingAppCastNotification":{"name":"SUUpdaterDidFinishLoadingAppCastNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterDidFindValidUpdateNotification":{"name":"SUUpdaterDidFindValidUpdateNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterDidNotFindUpdateNotification":{"name":"SUUpdaterDidNotFindUpdateNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterWillRestartNotification":{"name":"SUUpdaterWillRestartNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterAppcastItemNotificationKey":{"name":"SUUpdaterAppcastItemNotificationKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterAppcastNotificationKey":{"name":"SUUpdaterAppcastNotificationKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerApplicationNameKey":{"name":"SUSystemProfilerApplicationNameKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerApplicationVersionKey":{"name":"SUSystemProfilerApplicationVersionKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPU64bitKey":{"name":"SUSystemProfilerCPU64bitKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUCountKey":{"name":"SUSystemProfilerCPUCountKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUFrequencyKey":{"name":"SUSystemProfilerCPUFrequencyKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUTypeKey":{"name":"SUSystemProfilerCPUTypeKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUSubtypeKey":{"name":"SUSystemProfilerCPUSubtypeKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerHardwareModelKey":{"name":"SUSystemProfilerHardwareModelKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerMemoryKey":{"name":"SUSystemProfilerMemoryKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerOperatingSystemVersionKey":{"name":"SUSystemProfilerOperatingSystemVersionKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerPreferredLanguageKey":{"name":"SUSystemProfilerPreferredLanguageKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSparkleErrorDomain":{"name":"SUSparkleErrorDomain","abstract":"

    Error domain used by Sparkle

    "},"Constants.html#/c:@SPUNoUpdateFoundReasonKey":{"name":"SPUNoUpdateFoundReasonKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SPULatestAppcastItemFoundKey":{"name":"SPULatestAppcastItemFoundKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SPUNoUpdateFoundUserInitiatedKey":{"name":"SPUNoUpdateFoundUserInitiatedKey","abstract":"

    Undocumented

    "},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)delegate":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(cm)sharedUpdater":{"name":"+sharedUpdater","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(cm)updaterForBundle:":{"name":"+updaterForBundle:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)initForBundle:":{"name":"-initForBundle:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdates:":{"name":"-checkForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)validateMenuItem:":{"name":"-validateMenuItem:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdatesInBackground":{"name":"-checkForUpdatesInBackground","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdateInformation":{"name":"-checkForUpdateInformation","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)feedURL":{"name":"feedURL","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)hostBundle":{"name":"hostBundle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)sparkleBundle":{"name":"sparkleBundle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)userAgentString":{"name":"userAgentString","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)httpHeaders":{"name":"httpHeaders","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)decryptionPassword":{"name":"decryptionPassword","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)lastUpdateCheckDate":{"name":"lastUpdateCheckDate","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)resetUpdateCycle":{"name":"-resetUpdateCycle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)updateInProgress":{"name":"updateInProgress","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(im)initWithAutomaticUpdateChecks:sendSystemProfile:":{"name":"-initWithAutomaticUpdateChecks:sendSystemProfile:","abstract":"

    Initializes a new update permission response instance.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(py)automaticUpdateChecks":{"name":"automaticUpdateChecks","abstract":"

    A read-only property indicating whether automatic update checks are allowed or not.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(py)sendSystemProfile":{"name":"sendSystemProfile","abstract":"

    A read-only property indicating if system profile should be sent or not.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(im)init":{"name":"-init","abstract":"

    Initializes a new instance of the standard version comparator.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(cpy)defaultComparator":{"name":"defaultComparator","abstract":"

    A singleton instance of the comparator.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(im)compareVersion:toVersion:":{"name":"-compareVersion:toVersion:","abstract":"

    Compares two version strings through textual analysis.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)versionString":{"name":"versionString","abstract":"

    The version of the update item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)displayVersionString":{"name":"displayVersionString","abstract":"

    The human-readable display version of the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)fileURL":{"name":"fileURL","abstract":"

    The file URL to the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)contentLength":{"name":"contentLength","abstract":"

    The content length of the download in bytes.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)infoURL":{"name":"infoURL","abstract":"

    The info URL to the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)informationOnlyUpdate":{"name":"informationOnlyUpdate","abstract":"

    Indicates whether or not the update item is only informational and has no download.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)title":{"name":"title","abstract":"

    The title of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)dateString":{"name":"dateString","abstract":"

    The date string of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)date":{"name":"date","abstract":"

    The date constructed from the dateString property if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)releaseNotesURL":{"name":"releaseNotesURL","abstract":"

    The release notes URL of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)itemDescription":{"name":"itemDescription","abstract":"

    The description of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumSystemVersion":{"name":"minimumSystemVersion","abstract":"

    The required minimum system operating version string for this update if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumOperatingSystemVersionIsOK":{"name":"minimumOperatingSystemVersionIsOK","abstract":"

    Indicates whether or not the current running system passes the minimumSystemVersion requirement.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)maximumSystemVersion":{"name":"maximumSystemVersion","abstract":"

    The required maximum system operating version string for this update if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)maximumOperatingSystemVersionIsOK":{"name":"maximumOperatingSystemVersionIsOK","abstract":"

    Indicates whether or not the current running system passes the maximumSystemVersion requirement.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)channel":{"name":"channel","abstract":"

    The channel the update item is on if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)installationType":{"name":"installationType","abstract":"

    The installation type of the update at fileURL

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)phasedRolloutInterval":{"name":"phasedRolloutInterval","abstract":"

    The phased rollout interval of the update item in seconds if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumAutoupdateVersion":{"name":"minimumAutoupdateVersion","abstract":"

    The minimum bundle version string this update requires for automatically downloading and installing updates if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)majorUpgrade":{"name":"majorUpgrade","abstract":"

    Indicates whether or not the update item is a major upgrade.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)criticalUpdate":{"name":"criticalUpdate","abstract":"

    Indicates whether or not the update item is critical.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)osString":{"name":"osString","abstract":"

    Specifies the operating system the download update is available for if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)macOsUpdate":{"name":"macOsUpdate","abstract":"

    Indicates whether or not this update item is for macOS.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)deltaUpdates":{"name":"deltaUpdates","abstract":"

    The delta updates for this update item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)deltaUpdate":{"name":"deltaUpdate","abstract":"

    Indicates whether or not the update item is a delta update.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)propertiesDictionary":{"name":"propertiesDictionary","abstract":"

    The dictionary representing the entire appcast item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(cm)emptyAppcastItem":{"name":"+emptyAppcastItem","abstract":"

    An empty appcast item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:":{"name":"-initWithDictionary:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:failureReason:":{"name":"-initWithDictionary:failureReason:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:relativeToURL:failureReason:":{"name":"-initWithDictionary:relativeToURL:failureReason:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcast.html#/c:objc(cs)SUAppcast(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUAppcast"},"Classes/SUAppcast.html#/c:objc(cs)SUAppcast(py)items":{"name":"items","abstract":"

    The collection of update items.

    ","parent_name":"SUAppcast"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(py)stage":{"name":"stage","abstract":"

    The current update stage.

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(py)userInitiated":{"name":"userInitiated","abstract":"

    Indicates whether or not the update check was initiated by the user.

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(im)initWithHostBundle:":{"name":"-initWithHostBundle:","abstract":"

    Undocumented

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    Indicates whether or not automatic update checks are enabled.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    The regular update check interval.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)allowsAutomaticUpdates":{"name":"allowsAutomaticUpdates","abstract":"

    Indicates whether or not automatically downloading updates is allowed to be turned on by the user.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    Indicates whether or not automatically downloading updates is enabled by the user or developer.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    Indicates whether or not anonymous system profile information is sent when checking for updates.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)initWithHostBundle:applicationBundle:userDriver:delegate:":{"name":"-initWithHostBundle:applicationBundle:userDriver:delegate:","abstract":"

    Initializes a new SPUUpdater instance

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)init":{"name":"-init","abstract":"

    Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)startUpdater:":{"name":"-startUpdater:","abstract":"

    Starts the updater.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdates":{"name":"-checkForUpdates","abstract":"

    Checks for updates, and displays progress while doing so if needed.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdatesInBackground":{"name":"-checkForUpdatesInBackground","abstract":"

    Checks for updates, but does not display any UI unless an update is found.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdateInformation":{"name":"-checkForUpdateInformation","abstract":"

    Begins a “probing” check for updates which will not actually offer to","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)canCheckForUpdates":{"name":"canCheckForUpdates","abstract":"

    A property indicating whether or not updates can be checked by the user.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)sessionInProgress":{"name":"sessionInProgress","abstract":"

    A property indicating whether or not an update session is in progress.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    A property indicating whether or not to check for updates automatically.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    A property indicating the current automatic update check interval in seconds.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    A property indicating whether or not updates can be automatically downloaded in the background.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)feedURL":{"name":"feedURL","abstract":"

    The URL of the appcast used to download update information.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)hostBundle":{"name":"hostBundle","abstract":"

    The host bundle that is being updated.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)userAgentString":{"name":"userAgentString","abstract":"

    The user agent used when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)httpHeaders":{"name":"httpHeaders","abstract":"

    The HTTP headers used when checking for updates, downloading release notes, and downloading updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    A property indicating whether or not the user’s system profile information is sent when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)lastUpdateCheckDate":{"name":"lastUpdateCheckDate","abstract":"

    The date of the last update check or nil if no check has been performed yet.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)resetUpdateCycle":{"name":"-resetUpdateCycle","abstract":"

    Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)systemProfileArray":{"name":"systemProfileArray","abstract":"

    The system profile information that is sent when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdatePermissionRequest.html#/c:objc(cs)SPUUpdatePermissionRequest(im)initWithSystemProfile:":{"name":"-initWithSystemProfile:","abstract":"

    Initializes a new update permission request instance.

    ","parent_name":"SPUUpdatePermissionRequest"},"Classes/SPUUpdatePermissionRequest.html#/c:objc(cs)SPUUpdatePermissionRequest(py)systemProfile":{"name":"systemProfile","abstract":"

    A read-only property for the user’s system profile.

    ","parent_name":"SPUUpdatePermissionRequest"},"Classes/SPUStandardUserDriver.html#/c:objc(cs)SPUStandardUserDriver(im)initWithHostBundle:delegate:":{"name":"-initWithHostBundle:delegate:","abstract":"

    Initializes a Sparkle’s standard user driver for user update interactions

    ","parent_name":"SPUStandardUserDriver"},"Classes/SPUStandardUserDriver.html#/c:objc(cs)SPUStandardUserDriver(im)init":{"name":"-init","abstract":"

    Use initWithHostBundle:delegate: instead.

    ","parent_name":"SPUStandardUserDriver"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)updaterDelegate":{"name":"updaterDelegate","abstract":"

    Interface builder outlet for the updater’s delegate.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)userDriverDelegate":{"name":"userDriverDelegate","abstract":"

    Interface builder outlet for the user driver’s delegate.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)updater":{"name":"updater","abstract":"

    Accessible property for the updater. Some properties on the updater can be binded via KVO

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)userDriver":{"name":"userDriver","abstract":"

    Accessible property for the updater’s user driver.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)init":{"name":"-init","abstract":"

    Create a new SPUStandardUpdaterController from a nib.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)initWithUpdaterDelegate:userDriverDelegate:":{"name":"-initWithUpdaterDelegate:userDriverDelegate:","abstract":"

    Create a new SPUStandardUpdaterController programmatically.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)initWithStartingUpdater:updaterDelegate:userDriverDelegate:":{"name":"-initWithStartingUpdater:updaterDelegate:userDriverDelegate:","abstract":"

    Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)startUpdater":{"name":"-startUpdater","abstract":"

    Starts the updater if it has not already been started.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)checkForUpdates:":{"name":"-checkForUpdates:","abstract":"

    Explicitly checks for updates and displays a progress dialog while doing so.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)data":{"name":"data","abstract":"

    The raw data that was downloaded.

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)URL":{"name":"URL","abstract":"

    The URL that was fetched from.

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)textEncodingName":{"name":"textEncodingName","abstract":"

    The IANA charset encoding name if available. Eg: “utf-8”

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)MIMEType":{"name":"MIMEType","abstract":"

    The MIME type if available. Eg: “text/plain”

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html":{"name":"SPUDownloadData","abstract":"

    A class for containing downloaded data along with some information about it.

    "},"Classes/SPUStandardUpdaterController.html":{"name":"SPUStandardUpdaterController","abstract":"

    A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

    "},"Classes/SPUStandardUserDriver.html":{"name":"SPUStandardUserDriver","abstract":"

    Sparkle’s standard built-in user driver for updater interactions

    "},"Classes/SPUUpdatePermissionRequest.html":{"name":"SPUUpdatePermissionRequest","abstract":"

    This class represents information needed to make a permission request for checking updates.

    "},"Classes/SPUUpdater.html":{"name":"SPUUpdater","abstract":"

    The main API in Sparkle for controlling the update mechanism.

    "},"Classes/SPUUpdaterSettings.html":{"name":"SPUUpdaterSettings","abstract":"

    This class can be used for reading certain updater settings.

    "},"Classes/SPUUserUpdateState.html":{"name":"SPUUserUpdateState","abstract":"

    This represents the user’s current update state.

    "},"Classes/SUAppcast.html":{"name":"SUAppcast","abstract":"

    The appcast representing a collection of SUAppcastItem items in the feed.

    "},"Classes/SUAppcastItem.html":{"name":"SUAppcastItem","abstract":"

    The appcast item describing an update in the application’s appcast feed.

    "},"Classes/SUStandardVersionComparator.html":{"name":"SUStandardVersionComparator","abstract":"

    Sparkle’s default version comparator.

    "},"Classes/SUUpdatePermissionResponse.html":{"name":"SUUpdatePermissionResponse","abstract":"

    This class represents a response for permission to check updates.

    "},"Classes/SUUpdater.html":{"name":"SUUpdater","abstract":"

    The legacy API in Sparkle for controlling the update mechanism.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "}} \ No newline at end of file diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.html new file mode 100644 index 0000000..1ec5b2d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.js new file mode 100644 index 0000000..605bdd6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_0.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['allowedchannelsforupdater_3a_0',['allowedChannelsForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a717db8ad85d47309e3f4deebdc09e7b4',1,'SPUUpdaterDelegate-p']]], + ['allowedsystemprofilekeysforupdater_3a_1',['allowedSystemProfileKeysForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aec7e4b19a2fc4afdcc86286c3bbf06b1',1,'SPUUpdaterDelegate-p']]], + ['allowsautomaticupdates_2',['allowsAutomaticUpdates',['../interface_s_p_u_updater_settings.html#ae9b58785573e4d3e2abea0c57544681f',1,'SPUUpdaterSettings']]], + ['automaticallychecksforupdates_3',['automaticallyChecksForUpdates',['../interface_s_p_u_updater.html#a9a154002bdbe3306e763d000502a0980',1,'SPUUpdater::automaticallyChecksForUpdates()'],['../interface_s_p_u_updater_settings.html#a41e4d0f0e10e9afa92fe5c81d21bfde3',1,'SPUUpdaterSettings::automaticallyChecksForUpdates()']]], + ['automaticallydownloadsupdates_4',['automaticallyDownloadsUpdates',['../interface_s_p_u_updater.html#aa5f5578c29e6496cb90546aca35804e6',1,'SPUUpdater::automaticallyDownloadsUpdates()'],['../interface_s_p_u_updater_settings.html#af1a1fba7d6dcd05b52339f173c7a0a8d',1,'SPUUpdaterSettings::automaticallyDownloadsUpdates()']]], + ['automaticupdatechecks_5',['automaticUpdateChecks',['../interface_s_u_update_permission_response.html#a84a21b766bcbbe1fff16c26b8689aa56',1,'SUUpdatePermissionResponse']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.html new file mode 100644 index 0000000..9f80e90 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.js new file mode 100644 index 0000000..797ad91 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['bestvalidupdateinappcast_3aforupdater_3a_6',['bestValidUpdateInAppcast:forUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a0f38585740c428ce8904bf38f712396d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.html new file mode 100644 index 0000000..02cfffc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.js new file mode 100644 index 0000000..712d85e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_2.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['cancheckforupdates_7',['canCheckForUpdates',['../interface_s_p_u_updater.html#aa8ec4e87308007ae49228165534e683c',1,'SPUUpdater']]], + ['changeownerandgroupofitematrooturl_3atomatchurl_3aerror_3a_8',['changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:',['../interface_s_u_file_manager.html#af0defc82017c43bd1f0eab5540c05f09',1,'SUFileManager']]], + ['checkforupdateinformation_9',['checkForUpdateInformation',['../interface_s_p_u_updater.html#ad38751e23aa42be220206e7e671c697d',1,'SPUUpdater']]], + ['checkforupdates_10',['checkForUpdates',['../interface_s_p_u_updater.html#a7df56bb150d327beb72b7b050799790d',1,'SPUUpdater']]], + ['checkforupdates_3a_11',['checkForUpdates:',['../interface_s_p_u_standard_updater_controller.html#af2d2c860e3f3ae9d8feba95d196c4dc9',1,'SPUStandardUpdaterController']]], + ['checkforupdatesinbackground_12',['checkForUpdatesInBackground',['../interface_s_p_u_updater.html#a2e1e3ca715f29bae7ee0b16e15e34850',1,'SPUUpdater']]], + ['compareversion_3atoversion_3a_13',['compareVersion:toVersion:',['../interface_s_u_standard_version_comparator.html#a50d145ce078dd80d55346f17e946d282',1,'SUStandardVersionComparator::compareVersion:toVersion:()'],['../protocol_s_u_version_comparison-p.html#a0f94aedcc244ce41757e1fa620d0eb40',1,'SUVersionComparison-p::compareVersion:toVersion:()']]], + ['copyitematurl_3atourl_3aerror_3a_14',['copyItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#ac33297bd6dfbf11a23c3c0ded059f4d0',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.html new file mode 100644 index 0000000..39767b8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.js new file mode 100644 index 0000000..6409f82 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_3.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['data_15',['data',['../interface_s_p_u_download_data.html#ae8c680d14f0213633c117684e58fbef2',1,'SPUDownloadData']]], + ['decryptionpasswordforupdater_3a_16',['decryptionPasswordForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aaf8dbbcdef45b16d2fc43a4cc5487051',1,'SPUUpdaterDelegate-p']]], + ['defaultcomparator_17',['defaultComparator',['../interface_s_u_standard_version_comparator.html#a67be5d5bf36c4774432d912261cb3048',1,'SUStandardVersionComparator']]], + ['dismissupdateinstallation_18',['dismissUpdateInstallation',['../protocol_s_p_u_user_driver-p.html#a5df3b42fd77ab1b5c971c8df9ef35048',1,'SPUUserDriver-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.html new file mode 100644 index 0000000..fc40463 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.js new file mode 100644 index 0000000..62f3039 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_4.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['feedparametersforupdater_3asendingsystemprofile_3a_19',['feedParametersForUpdater:sendingSystemProfile:',['../protocol_s_p_u_updater_delegate-p.html#a43cee9820784cffdffc3b48d8b07407e',1,'SPUUpdaterDelegate-p']]], + ['feedurl_20',['feedURL',['../interface_s_p_u_updater.html#af49bc6a058dc0e758943a4b4b1ff98dc',1,'SPUUpdater']]], + ['feedurlstringforupdater_3a_21',['feedURLStringForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#afd1a89b0133a35faf849b58944349516',1,'SPUUpdaterDelegate-p']]], + ['formatversion_3aandversion_3a_22',['formatVersion:andVersion:',['../protocol_s_u_version_display-p.html#afb8728137859a22c1ed795637e654dbd',1,'SUVersionDisplay-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.html new file mode 100644 index 0000000..9dd9344 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.js new file mode 100644 index 0000000..96e99e0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hasanykeys_23',['hasAnyKeys',['../interface_s_u_public_keys.html#ae2a53f6befe084d9a6fa7369a0dbe78a',1,'SUPublicKeys']]], + ['hostbundle_24',['hostBundle',['../interface_s_p_u_updater.html#aeae19dba9dc83ae9098279b0eed76d47',1,'SPUUpdater']]], + ['httpheaders_25',['httpHeaders',['../interface_s_p_u_updater.html#a2e2747823e204ebc07800ae31c201ad1',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.html new file mode 100644 index 0000000..f1e516d --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.js new file mode 100644 index 0000000..550eedf --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_6.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['init_26',['init',['../interface_s_u_file_manager.html#a972da7c2fb112d09d4903ada3564126a',1,'SUFileManager::init()'],['../interface_s_u_standard_version_comparator.html#aef2dc178fc9895961ccb8ba966c1446b',1,'SUStandardVersionComparator::init()']]], + ['initwithautomaticupdatechecks_3asendsystemprofile_3a_27',['initWithAutomaticUpdateChecks:sendSystemProfile:',['../interface_s_u_update_permission_response.html#a09be7ccbcaf1521fc9a3f5dd420785ee',1,'SUUpdatePermissionResponse']]], + ['initwithdictionary_3arelativetourl_3astateresolver_3afailurereason_3a_28',['initWithDictionary:relativeToURL:stateResolver:failureReason:',['../category_s_u_appcast_item_07_private_08.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem(Private)::initWithDictionary:relativeToURL:stateResolver:failureReason:()'],['../interface_s_u_appcast_item.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem::initWithDictionary:relativeToURL:stateResolver:failureReason:()']]], + ['initwithhostbundle_3aapplicationbundle_3auserdriver_3adelegate_3a_29',['initWithHostBundle:applicationBundle:userDriver:delegate:',['../interface_s_p_u_updater.html#aed247e3fde0667e50b8d2345e84033e1',1,'SPUUpdater']]], + ['initwithhostbundle_3adelegate_3a_30',['initWithHostBundle:delegate:',['../interface_s_p_u_standard_user_driver.html#a153eafa16df66af096947673762c2deb',1,'SPUStandardUserDriver']]], + ['initwithstartingupdater_3aupdaterdelegate_3auserdriverdelegate_3a_31',['initWithStartingUpdater:updaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a5612aa1955b41cd306200dc451c2079c',1,'SPUStandardUpdaterController']]], + ['initwithsystemprofile_3a_32',['initWithSystemProfile:',['../interface_s_p_u_update_permission_request.html#a111cc1f6605e481954f1ea57f833b6ab',1,'SPUUpdatePermissionRequest']]], + ['initwithupdaterdelegate_3auserdriverdelegate_3a_33',['initWithUpdaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a696072b114786259d2e6744914b55850',1,'SPUStandardUpdaterController']]], + ['installerprogressappcontroller_34',['InstallerProgressAppController',['../interface_installer_progress_app_controller.html',1,'']]], + ['installerprogressappcontroller_28_29_35',['InstallerProgressAppController()',['../category_installer_progress_app_controller_07_08.html',1,'']]], + ['installerprogressdelegate_2dp_36',['InstallerProgressDelegate-p',['../protocol_installer_progress_delegate-p.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.html new file mode 100644 index 0000000..8ddbf6c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.js new file mode 100644 index 0000000..a25460b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['lastupdatecheckdate_37',['lastUpdateCheckDate',['../interface_s_p_u_updater.html#a22a62559c6938c7a34b1787f22043010',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.html new file mode 100644 index 0000000..83c55ae --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.js new file mode 100644 index 0000000..2402d38 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['makedirectoryaturl_3aerror_3a_38',['makeDirectoryAtURL:error:',['../interface_s_u_file_manager.html#ace4c529974dc1b64360db12689c2e9aa',1,'SUFileManager']]], + ['maketemporarydirectorywithpreferredname_3aappropriatefordirectoryurl_3aerror_3a_39',['makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:',['../interface_s_u_file_manager.html#a055d2ef9910e85c90a7d0dc34b34ce92',1,'SUFileManager']]], + ['mimetype_40',['MIMEType',['../interface_s_p_u_download_data.html#a108d9dec279550089dbea559e449321c',1,'SPUDownloadData']]], + ['moveitematurl_3atourl_3aerror_3a_41',['moveItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#a8f9d15f622a08284e2d5157ebea440f3',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.html new file mode 100644 index 0000000..1e263c1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.js new file mode 100644 index 0000000..ee69966 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_9.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['ns_5funavailable_42',['NS_UNAVAILABLE',['../interface_s_p_u_standard_updater_controller.html#a3c582fd7f0de322edc97915c9405eced',1,'SPUStandardUpdaterController::NS_UNAVAILABLE()'],['../interface_s_p_u_standard_user_driver.html#a9ad2b659b5760b2f4274e5c63b1f8094',1,'SPUStandardUserDriver::NS_UNAVAILABLE()'],['../interface_s_p_u_updater.html#ac2907583983833ce9f09bee2867d7654',1,'SPUUpdater::NS_UNAVAILABLE()']]], + ['nsbutton_28sierrasdk_29_43',['NSButton(SierraSDK)',['../category_n_s_button_07_sierra_s_d_k_08.html',1,'']]], + ['nsdata_28susignatureverifier_29_44',['NSData(SUSignatureVerifier)',['../category_n_s_data_07_s_u_signature_verifier_08.html',1,'']]], + ['nsobject_28privatedelegatemethods_29_45',['NSObject(PrivateDelegateMethods)',['../category_n_s_object_07_private_delegate_methods_08.html',1,'']]], + ['nsoperatingsystemversion_46',['NSOperatingSystemVersion',['../struct_n_s_operating_system_version.html',1,'']]], + ['nsprocessinfo_28_29_47',['NSProcessInfo()',['../category_n_s_process_info_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.html new file mode 100644 index 0000000..3a6cac1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.js new file mode 100644 index 0000000..9bbc556 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_a.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['releaseitemfromquarantineatrooturl_3aerror_3a_48',['releaseItemFromQuarantineAtRootURL:error:',['../interface_s_u_file_manager.html#a8599b8160422edbb38f34e547889f727',1,'SUFileManager']]], + ['removeitematurl_3aerror_3a_49',['removeItemAtURL:error:',['../interface_s_u_file_manager.html#aea79ee52a31937c33f5e00e60f873b4b',1,'SUFileManager']]], + ['replaceitematurl_3awithitematurl_3aerror_3a_50',['replaceItemAtURL:withItemAtURL:error:',['../interface_s_u_file_manager.html#aec3de47f6e37353f905b855951b37c65',1,'SUFileManager']]], + ['resetupdatecycle_51',['resetUpdateCycle',['../interface_s_p_u_updater.html#aefe1e7f5ae5b8e02f1d7beab189b51af',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.html new file mode 100644 index 0000000..130deb4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.js new file mode 100644 index 0000000..ec526d6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_b.js @@ -0,0 +1,121 @@ +var searchData= +[ + ['sendssystemprofile_52',['sendsSystemProfile',['../interface_s_p_u_updater.html#a521d2f6d09ceec6af979f6116bc58f7f',1,'SPUUpdater::sendsSystemProfile()'],['../interface_s_p_u_updater_settings.html#a97b5102512608a905bda83b33dd0bb5d',1,'SPUUpdaterSettings::sendsSystemProfile()']]], + ['sendsystemprofile_53',['sendSystemProfile',['../interface_s_u_update_permission_response.html#af9436f4e07219513c68dbad51daf9c8d',1,'SUUpdatePermissionResponse']]], + ['sessioninprogress_54',['sessionInProgress',['../interface_s_p_u_updater.html#aebc820be90ea36d0d97c6f11e80f3a4f',1,'SPUUpdater']]], + ['setfeedurl_3a_55',['setFeedURL:',['../interface_s_p_u_updater.html#adfaabdc767d7a7668c8e472e45abd635',1,'SPUUpdater']]], + ['showdownloaddidreceivedataoflength_3a_56',['showDownloadDidReceiveDataOfLength:',['../protocol_s_p_u_user_driver-p.html#ac86c11d9dd8f66cc54bc3f3dd303fb6c',1,'SPUUserDriver-p']]], + ['showdownloaddidreceiveexpectedcontentlength_3a_57',['showDownloadDidReceiveExpectedContentLength:',['../protocol_s_p_u_user_driver-p.html#abf58b5974797500618b7745f1987833a',1,'SPUUserDriver-p']]], + ['showdownloaddidstartextractingupdate_58',['showDownloadDidStartExtractingUpdate',['../protocol_s_p_u_user_driver-p.html#a19ada57d6b77c7ea3ed402833dcda44c',1,'SPUUserDriver-p']]], + ['showdownloadinitiatedwithcancellation_3a_59',['showDownloadInitiatedWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a3c6cd7f7b93f6d2777b04f3c9f0bb62c',1,'SPUUserDriver-p']]], + ['showextractionreceivedprogress_3a_60',['showExtractionReceivedProgress:',['../protocol_s_p_u_user_driver-p.html#a3ffb49c0f51864011685049b7225dfbf',1,'SPUUserDriver-p']]], + ['showinstallerprogress_61',['ShowInstallerProgress',['../interface_show_installer_progress.html',1,'']]], + ['showinstallerprogress_28_29_62',['ShowInstallerProgress()',['../category_show_installer_progress_07_08.html',1,'']]], + ['showinstallingupdate_63',['showInstallingUpdate',['../protocol_s_p_u_user_driver-p.html#ab774cef0a00dbc7c074f8850c1e6c21f',1,'SPUUserDriver-p']]], + ['showreadytoinstallandrelaunch_3a_64',['showReadyToInstallAndRelaunch:',['../protocol_s_p_u_user_driver-p.html#a91ad34f8469dc022c7b1ed42b0f1575d',1,'SPUUserDriver-p']]], + ['showsendingterminationsignal_65',['showSendingTerminationSignal',['../protocol_s_p_u_user_driver-p.html#a3eb11e826fe5c1f68112a73600c23bf2',1,'SPUUserDriver-p']]], + ['showupdatefoundwithappcastitem_3astate_3areply_3a_66',['showUpdateFoundWithAppcastItem:state:reply:',['../protocol_s_p_u_user_driver-p.html#ac0f8e99c60962476ea55729833a0e3f2',1,'SPUUserDriver-p']]], + ['showupdateinfocus_67',['showUpdateInFocus',['../protocol_s_p_u_user_driver-p.html#ac6d613d4689dbc6415774d0ab63afd55',1,'SPUUserDriver-p']]], + ['showupdateinstalledandrelaunched_3aacknowledgement_3a_68',['showUpdateInstalledAndRelaunched:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#aa8b7ae192288db21ab43b4413b2d80c3',1,'SPUUserDriver-p']]], + ['showupdatenotfoundwitherror_3aacknowledgement_3a_69',['showUpdateNotFoundWithError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#abf3ca2a6bb84fe26a4ce53ae5b6f2233',1,'SPUUserDriver-p']]], + ['showupdatepermissionrequest_3areply_3a_70',['showUpdatePermissionRequest:reply:',['../protocol_s_p_u_user_driver-p.html#a6382048832f06216f505659c251dc1e0',1,'SPUUserDriver-p']]], + ['showupdatereleasenotesfailedtodownloadwitherror_3a_71',['showUpdateReleaseNotesFailedToDownloadWithError:',['../protocol_s_p_u_user_driver-p.html#ab304bc81459aa83fc617eb5047cd93a1',1,'SPUUserDriver-p']]], + ['showupdatereleasenoteswithdownloaddata_3a_72',['showUpdateReleaseNotesWithDownloadData:',['../protocol_s_p_u_user_driver-p.html#ae5fe75d599aae6597d81bd2449919be8',1,'SPUUserDriver-p']]], + ['showupdatererror_3aacknowledgement_3a_73',['showUpdaterError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#ac10bbf2fbe588106bf3a8c951caa2d53',1,'SPUUserDriver-p']]], + ['showuserinitiatedupdatecheckwithcancellation_3a_74',['showUserInitiatedUpdateCheckWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a797fb61eacdd1fba10a232d7b2b5ceac',1,'SPUUserDriver-p']]], + ['sparklebundle_75',['sparkleBundle',['../interface_s_p_u_updater.html#aa0e335f7212dbd90668ea0bbef0f00c2',1,'SPUUpdater']]], + ['spuappcastitemstate_76',['SPUAppcastItemState',['../interface_s_p_u_appcast_item_state.html',1,'']]], + ['spuappcastitemstate_28_29_77',['SPUAppcastItemState()',['../category_s_p_u_appcast_item_state_07_08.html',1,'']]], + ['spuappcastitemstateresolver_78',['SPUAppcastItemStateResolver',['../interface_s_p_u_appcast_item_state_resolver.html',1,'']]], + ['spuautomaticupdatedriver_79',['SPUAutomaticUpdateDriver',['../interface_s_p_u_automatic_update_driver.html',1,'']]], + ['spuautomaticupdatedriver_28_29_80',['SPUAutomaticUpdateDriver()',['../category_s_p_u_automatic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriver_81',['SPUBasicUpdateDriver',['../interface_s_p_u_basic_update_driver.html',1,'']]], + ['spubasicupdatedriver_28_29_82',['SPUBasicUpdateDriver()',['../category_s_p_u_basic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriverdelegate_2dp_83',['SPUBasicUpdateDriverDelegate-p',['../protocol_s_p_u_basic_update_driver_delegate-p.html',1,'']]], + ['spucorebasedupdatedriver_84',['SPUCoreBasedUpdateDriver',['../interface_s_p_u_core_based_update_driver.html',1,'']]], + ['spucorebasedupdatedriver_28_29_85',['SPUCoreBasedUpdateDriver()',['../category_s_p_u_core_based_update_driver_07_08.html',1,'']]], + ['spucorebasedupdatedriverdelegate_2dp_86',['SPUCoreBasedUpdateDriverDelegate-p',['../protocol_s_p_u_core_based_update_driver_delegate-p.html',1,'']]], + ['spudownloaddata_87',['SPUDownloadData',['../interface_s_p_u_download_data.html',1,'']]], + ['spudownloaddriver_88',['SPUDownloadDriver',['../interface_s_p_u_download_driver.html',1,'']]], + ['spudownloaddriver_28_29_89',['SPUDownloadDriver()',['../category_s_p_u_download_driver_07_08.html',1,'']]], + ['spudownloaddriverdelegate_2dp_90',['SPUDownloadDriverDelegate-p',['../protocol_s_p_u_download_driver_delegate-p.html',1,'']]], + ['spudownloadedupdate_91',['SPUDownloadedUpdate',['../interface_s_p_u_downloaded_update.html',1,'']]], + ['spuinformationalupdate_92',['SPUInformationalUpdate',['../interface_s_p_u_informational_update.html',1,'']]], + ['spuinstalleragentprotocol_2dp_93',['SPUInstallerAgentProtocol-p',['../protocol_s_p_u_installer_agent_protocol-p.html',1,'']]], + ['spuinstallerdriver_94',['SPUInstallerDriver',['../interface_s_p_u_installer_driver.html',1,'']]], + ['spuinstallerdriver_28_29_95',['SPUInstallerDriver()',['../category_s_p_u_installer_driver_07_08.html',1,'']]], + ['spuinstallerdriverdelegate_2dp_96',['SPUInstallerDriverDelegate-p',['../protocol_s_p_u_installer_driver_delegate-p.html',1,'']]], + ['spulocalcachedirectory_97',['SPULocalCacheDirectory',['../interface_s_p_u_local_cache_directory.html',1,'']]], + ['spuprobeinstallstatus_98',['SPUProbeInstallStatus',['../interface_s_p_u_probe_install_status.html',1,'']]], + ['spuprobingupdatedriver_99',['SPUProbingUpdateDriver',['../interface_s_p_u_probing_update_driver.html',1,'']]], + ['spuprobingupdatedriver_28_29_100',['SPUProbingUpdateDriver()',['../category_s_p_u_probing_update_driver_07_08.html',1,'']]], + ['spureleasenotesdriver_101',['SPUReleaseNotesDriver',['../interface_s_p_u_release_notes_driver.html',1,'']]], + ['spuresumableupdate_2dp_102',['SPUResumableUpdate-p',['../protocol_s_p_u_resumable_update-p.html',1,'']]], + ['spuscheduledupdatedriver_103',['SPUScheduledUpdateDriver',['../interface_s_p_u_scheduled_update_driver.html',1,'']]], + ['spuscheduledupdatedriver_28_29_104',['SPUScheduledUpdateDriver()',['../category_s_p_u_scheduled_update_driver_07_08.html',1,'']]], + ['spuskippedupdate_105',['SPUSkippedUpdate',['../interface_s_p_u_skipped_update.html',1,'']]], + ['spustandardupdatercontroller_106',['SPUStandardUpdaterController',['../interface_s_p_u_standard_updater_controller.html',1,'']]], + ['spustandarduserdriver_107',['SPUStandardUserDriver',['../interface_s_p_u_standard_user_driver.html',1,'']]], + ['spustandarduserdriverdelegate_2dp_108',['SPUStandardUserDriverDelegate-p',['../protocol_s_p_u_standard_user_driver_delegate-p.html',1,'']]], + ['spuuibasedupdatedriver_109',['SPUUIBasedUpdateDriver',['../interface_s_p_u_u_i_based_update_driver.html',1,'']]], + ['spuuibasedupdatedriver_28_29_110',['SPUUIBasedUpdateDriver()',['../category_s_p_u_u_i_based_update_driver_07_08.html',1,'']]], + ['spuuibasedupdatedriverdelegate_2dp_111',['SPUUIBasedUpdateDriverDelegate-p',['../protocol_s_p_u_u_i_based_update_driver_delegate-p.html',1,'']]], + ['spuupdatedriver_2dp_112',['SPUUpdateDriver-p',['../protocol_s_p_u_update_driver-p.html',1,'']]], + ['spuupdatepermissionrequest_113',['SPUUpdatePermissionRequest',['../interface_s_p_u_update_permission_request.html',1,'']]], + ['spuupdater_114',['SPUUpdater',['../interface_s_p_u_updater.html',1,'']]], + ['spuupdater_28_29_115',['SPUUpdater()',['../category_s_p_u_updater_07_08.html',1,'']]], + ['spuupdatercycle_116',['SPUUpdaterCycle',['../interface_s_p_u_updater_cycle.html',1,'']]], + ['spuupdatercycle_28_29_117',['SPUUpdaterCycle()',['../category_s_p_u_updater_cycle_07_08.html',1,'']]], + ['spuupdatercycledelegate_2dp_118',['SPUUpdaterCycleDelegate-p',['../protocol_s_p_u_updater_cycle_delegate-p.html',1,'']]], + ['spuupdaterdelegate_2dp_119',['SPUUpdaterDelegate-p',['../protocol_s_p_u_updater_delegate-p.html',1,'']]], + ['spuupdatersettings_120',['SPUUpdaterSettings',['../interface_s_p_u_updater_settings.html',1,'']]], + ['spuupdatersettings_28_29_121',['SPUUpdaterSettings()',['../category_s_p_u_updater_settings_07_08.html',1,'']]], + ['spuupdatertimer_122',['SPUUpdaterTimer',['../interface_s_p_u_updater_timer.html',1,'']]], + ['spuupdatertimer_28_29_123',['SPUUpdaterTimer()',['../category_s_p_u_updater_timer_07_08.html',1,'']]], + ['spuupdatertimerdelegate_2dp_124',['SPUUpdaterTimerDelegate-p',['../protocol_s_p_u_updater_timer_delegate-p.html',1,'']]], + ['spuurlrequest_125',['SPUURLRequest',['../interface_s_p_u_u_r_l_request.html',1,'']]], + ['spuurlrequest_28_29_126',['SPUURLRequest()',['../category_s_p_u_u_r_l_request_07_08.html',1,'']]], + ['spuuserdriver_2dp_127',['SPUUserDriver-p',['../protocol_s_p_u_user_driver-p.html',1,'']]], + ['spuuserinitiatedupdatedriver_128',['SPUUserInitiatedUpdateDriver',['../interface_s_p_u_user_initiated_update_driver.html',1,'']]], + ['spuuserinitiatedupdatedriver_28_29_129',['SPUUserInitiatedUpdateDriver()',['../category_s_p_u_user_initiated_update_driver_07_08.html',1,'']]], + ['spuuserupdatestate_130',['SPUUserUpdateState',['../interface_s_p_u_user_update_state.html',1,'']]], + ['spuuserupdatestate_28_29_131',['SPUUserUpdateState()',['../category_s_p_u_user_update_state_07_08.html',1,'']]], + ['spuuserupdatestate_28private_29_132',['SPUUserUpdateState(Private)',['../category_s_p_u_user_update_state_07_private_08.html',1,'']]], + ['standarduserdriverdidshowmodalalert_133',['standardUserDriverDidShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#aaaafb308354867990fed28c308dc881d',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverrequestsversiondisplayer_134',['standardUserDriverRequestsVersionDisplayer',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ae96836bc3c2fb3104d6586e5067001b3',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverwillshowmodalalert_135',['standardUserDriverWillShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ad3bbc4db85bf302e8d6db6b4f030969a',1,'SPUStandardUserDriverDelegate-p']]], + ['startupdater_136',['startUpdater',['../interface_s_p_u_standard_updater_controller.html#a13632a2dd07a4d49333ec23091a3c6a5',1,'SPUStandardUpdaterController']]], + ['startupdater_3a_137',['startUpdater:',['../interface_s_p_u_updater.html#a30c0f163e0fbc7b100f84c64b491b353',1,'SPUUpdater']]], + ['suappcast_138',['SUAppcast',['../interface_s_u_appcast.html',1,'']]], + ['suappcast_28_29_139',['SUAppcast()',['../category_s_u_appcast_07_08.html',1,'']]], + ['suappcast_28private_29_140',['SUAppcast(Private)',['../category_s_u_appcast_07_private_08.html',1,'']]], + ['suappcastdriver_141',['SUAppcastDriver',['../interface_s_u_appcast_driver.html',1,'']]], + ['suappcastdriver_28_29_142',['SUAppcastDriver()',['../category_s_u_appcast_driver_07_08.html',1,'']]], + ['suappcastdriverdelegate_2dp_143',['SUAppcastDriverDelegate-p',['../protocol_s_u_appcast_driver_delegate-p.html',1,'']]], + ['suappcastitem_144',['SUAppcastItem',['../interface_s_u_appcast_item.html',1,'']]], + ['suappcastitem_28_29_145',['SUAppcastItem()',['../category_s_u_appcast_item_07_08.html',1,'']]], + ['suappcastitem_28private_29_146',['SUAppcastItem(Private)',['../category_s_u_appcast_item_07_private_08.html',1,'']]], + ['suapplicationinfo_147',['SUApplicationInfo',['../interface_s_u_application_info.html',1,'']]], + ['subundleicon_148',['SUBundleIcon',['../interface_s_u_bundle_icon.html',1,'']]], + ['sufilemanager_149',['SUFileManager',['../interface_s_u_file_manager.html',1,'']]], + ['suhost_150',['SUHost',['../interface_s_u_host.html',1,'']]], + ['suhost_28_29_151',['SUHost()',['../category_s_u_host_07_08.html',1,'']]], + ['suinstalleragentinitiationprotocol_2dp_152',['SUInstallerAgentInitiationProtocol-p',['../protocol_s_u_installer_agent_initiation_protocol-p.html',1,'']]], + ['suinstallerprotocol_2dp_153',['SUInstallerProtocol-p',['../protocol_s_u_installer_protocol-p.html',1,'']]], + ['suoperatingsystem_154',['SUOperatingSystem',['../interface_s_u_operating_system.html',1,'']]], + ['suphasedupdategroupinfo_155',['SUPhasedUpdateGroupInfo',['../interface_s_u_phased_update_group_info.html',1,'']]], + ['supublickeys_156',['SUPublicKeys',['../interface_s_u_public_keys.html',1,'']]], + ['susignatures_157',['SUSignatures',['../interface_s_u_signatures.html',1,'']]], + ['sustandardversioncomparator_158',['SUStandardVersionComparator',['../interface_s_u_standard_version_comparator.html',1,'']]], + ['sustatuscontroller_159',['SUStatusController',['../interface_s_u_status_controller.html',1,'']]], + ['sustatuscontroller_28_29_160',['SUStatusController()',['../category_s_u_status_controller_07_08.html',1,'']]], + ['susystemprofiler_161',['SUSystemProfiler',['../interface_s_u_system_profiler.html',1,'']]], + ['sutouchbarbuttongroup_162',['SUTouchBarButtonGroup',['../interface_s_u_touch_bar_button_group.html',1,'']]], + ['suupdatepermissionresponse_163',['SUUpdatePermissionResponse',['../interface_s_u_update_permission_response.html',1,'']]], + ['suupdatevalidator_164',['SUUpdateValidator',['../interface_s_u_update_validator.html',1,'']]], + ['suupdatevalidator_28_29_165',['SUUpdateValidator()',['../category_s_u_update_validator_07_08.html',1,'']]], + ['suversioncomparison_2dp_166',['SUVersionComparison-p',['../protocol_s_u_version_comparison-p.html',1,'']]], + ['suversiondisplay_2dp_167',['SUVersionDisplay-p',['../protocol_s_u_version_display-p.html',1,'']]], + ['systemprofile_168',['systemProfile',['../interface_s_p_u_update_permission_request.html#a318086878d3e1ec1efa9b8d2424f9844',1,'SPUUpdatePermissionRequest']]], + ['systemprofilearray_169',['systemProfileArray',['../interface_s_p_u_updater.html#a90e21876539a0dab3eacfccad863aaa2',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.html new file mode 100644 index 0000000..3dd5af0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.js new file mode 100644 index 0000000..cc57e5f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_c.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['terminationlistener_170',['TerminationListener',['../interface_termination_listener.html',1,'']]], + ['terminationlistener_28_29_171',['TerminationListener()',['../category_termination_listener_07_08.html',1,'']]], + ['textencodingname_172',['textEncodingName',['../interface_s_p_u_download_data.html#a8316fe998bf3afa7bc4d6df7dc0ac070',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.html new file mode 100644 index 0000000..af7f2f0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.js new file mode 100644 index 0000000..1d6772a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_d.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['updateaccesstimeofitematrooturl_3aerror_3a_173',['updateAccessTimeOfItemAtRootURL:error:',['../interface_s_u_file_manager.html#ae7b47ef3936d2ab36d32d1f496c9b133',1,'SUFileManager']]], + ['updatecheckinterval_174',['updateCheckInterval',['../interface_s_p_u_updater.html#a1b2a4bc575d1f9de57e189ca93bda22a',1,'SPUUpdater::updateCheckInterval()'],['../interface_s_p_u_updater_settings.html#affb7ac205324036803bda21826bde524',1,'SPUUpdaterSettings::updateCheckInterval()']]], + ['updatemodificationandaccesstimeofitematurl_3aerror_3a_175',['updateModificationAndAccessTimeOfItemAtURL:error:',['../interface_s_u_file_manager.html#ad81e3246bf42d50c7c0ed2df06ff41de',1,'SUFileManager']]], + ['updater_176',['updater',['../interface_s_p_u_standard_updater_controller.html#afa35dd9683576ac1126d1ebbb6d0f3d3',1,'SPUStandardUpdaterController']]], + ['updater_3adidabortwitherror_3a_177',['updater:didAbortWithError:',['../protocol_s_p_u_updater_delegate-p.html#a71df9732bf67636a1b61a76a54d57878',1,'SPUUpdaterDelegate-p']]], + ['updater_3adiddownloadupdate_3a_178',['updater:didDownloadUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a3f8066b02a7a3c1c215bee70458e6db0',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidextractupdate_3a_179',['updater:didExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a8d7a087d6f25ded00f80acfd3555e504',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfindvalidupdate_3a_180',['updater:didFindValidUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a155defe95c694f91c46f81baff2c99d9',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfinishloadingappcast_3a_181',['updater:didFinishLoadingAppcast:',['../protocol_s_p_u_updater_delegate-p.html#a67f5d81863a898df881ddbbaed9371a8',1,'SPUUpdaterDelegate-p']]], + ['updater_3afailedtodownloadupdate_3aerror_3a_182',['updater:failedToDownloadUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#ab446fa17e9b9adfda488ca48641c203a',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldallowinstallerinteractionforupdatecheck_3a_183',['updater:shouldAllowInstallerInteractionForUpdateCheck:',['../protocol_s_p_u_updater_delegate-p.html#a232aa864ac8c86b266bc043dfd1136b4',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldpostponerelaunchforupdate_3auntilinvokingblock_3a_184',['updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:',['../protocol_s_p_u_updater_delegate-p.html#aeef90220bddc5727c5e6529b58e48164',1,'SPUUpdaterDelegate-p']]], + ['updater_3auserdidskipthisversion_3a_185',['updater:userDidSkipThisVersion:',['../protocol_s_p_u_updater_delegate-p.html#a1f8fcf730b45b3b650b19627dd1ac36c',1,'SPUUpdaterDelegate-p']]], + ['updater_3awilldownloadupdate_3awithrequest_3a_186',['updater:willDownloadUpdate:withRequest:',['../protocol_s_p_u_updater_delegate-p.html#a2255ef7b18b135306e871e1471a4a399',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillextractupdate_3a_187',['updater:willExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a2573857b492ea895f099407a92321a3f',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdate_3a_188',['updater:willInstallUpdate:',['../protocol_s_p_u_updater_delegate-p.html#acf34be619b8fb7f66693837849d5e228',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdateonquit_3aimmediateinstallationblock_3a_189',['updater:willInstallUpdateOnQuit:immediateInstallationBlock:',['../protocol_s_p_u_updater_delegate-p.html#a64585159f4bef97e47de8359e202f3ad',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillscheduleupdatecheckafterdelay_3a_190',['updater:willScheduleUpdateCheckAfterDelay:',['../protocol_s_p_u_updater_delegate-p.html#aafac150db4d32c06c84ee3ad01b0f036',1,'SPUUpdaterDelegate-p']]], + ['updaterdelegate_191',['updaterDelegate',['../interface_s_p_u_standard_updater_controller.html#a8ee554e7555314565b582ea7ddfb91fe',1,'SPUStandardUpdaterController']]], + ['updaterdidnotfindupdate_3a_192',['updaterDidNotFindUpdate:',['../protocol_s_p_u_updater_delegate-p.html#ad112453ce92617e3356a7cd5c4d0658b',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3aerror_3a_193',['updaterDidNotFindUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#a5ad88d4c57d19fe73080273b13ded22d',1,'SPUUpdaterDelegate-p']]], + ['updatermaycheckforupdates_3a_194',['updaterMayCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a1745cb021956a38c2439b370e9cda904',1,'SPUUpdaterDelegate-p']]], + ['updatershoulddownloadreleasenotes_3a_195',['updaterShouldDownloadReleaseNotes:',['../protocol_s_p_u_updater_delegate-p.html#a8b966f752f5a19942534698d5271544a',1,'SPUUpdaterDelegate-p']]], + ['updatershouldpromptforpermissiontocheckforupdates_3a_196',['updaterShouldPromptForPermissionToCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a5cd8012b35bec5de906e70c4dabce602',1,'SPUUpdaterDelegate-p']]], + ['updatershouldrelaunchapplication_3a_197',['updaterShouldRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a703e4aa94c2b4fe835c99b1f2b8f1c48',1,'SPUUpdaterDelegate-p']]], + ['updaterwillidleschedulingupdates_3a_198',['updaterWillIdleSchedulingUpdates:',['../protocol_s_p_u_updater_delegate-p.html#afccc281852fd4f497d815cda9b4695bb',1,'SPUUpdaterDelegate-p']]], + ['updaterwillrelaunchapplication_3a_199',['updaterWillRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a6fa486e14d915cd18ac3791a905647f2',1,'SPUUpdaterDelegate-p']]], + ['url_200',['URL',['../interface_s_p_u_download_data.html#a5eabdc79a39c2de6e0c79b2d6d4e5b0e',1,'SPUDownloadData']]], + ['useragentstring_201',['userAgentString',['../interface_s_p_u_updater.html#a62757b3c7dea957c737527e854408e96',1,'SPUUpdater']]], + ['userdidcanceldownload_3a_202',['userDidCancelDownload:',['../protocol_s_p_u_updater_delegate-p.html#a06e1e03dea92513fd284e263b9f80d02',1,'SPUUpdaterDelegate-p']]], + ['userdriver_203',['userDriver',['../interface_s_p_u_standard_updater_controller.html#a22c96bbd966c2d92884a2cfc6fb4f6f6',1,'SPUStandardUpdaterController']]], + ['userdriverdelegate_204',['userDriverDelegate',['../interface_s_p_u_standard_updater_controller.html#a4afcf2d6fc104bf1186a0e757aa267d7',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.html new file mode 100644 index 0000000..e25df42 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.js new file mode 100644 index 0000000..9e8d984 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/all_e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['versioncomparatorforupdater_3a_205',['versionComparatorForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a8bea6508b8e81a51c1087a1f3b501c1d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.html new file mode 100644 index 0000000..af8159e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.js new file mode 100644 index 0000000..9e35133 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_0.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['installerprogressappcontroller_206',['InstallerProgressAppController',['../interface_installer_progress_app_controller.html',1,'']]], + ['installerprogressappcontroller_28_29_207',['InstallerProgressAppController()',['../category_installer_progress_app_controller_07_08.html',1,'']]], + ['installerprogressdelegate_2dp_208',['InstallerProgressDelegate-p',['../protocol_installer_progress_delegate-p.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.html new file mode 100644 index 0000000..576e916 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.js new file mode 100644 index 0000000..8da5fe2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_1.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['nsbutton_28sierrasdk_29_209',['NSButton(SierraSDK)',['../category_n_s_button_07_sierra_s_d_k_08.html',1,'']]], + ['nsdata_28susignatureverifier_29_210',['NSData(SUSignatureVerifier)',['../category_n_s_data_07_s_u_signature_verifier_08.html',1,'']]], + ['nsobject_28privatedelegatemethods_29_211',['NSObject(PrivateDelegateMethods)',['../category_n_s_object_07_private_delegate_methods_08.html',1,'']]], + ['nsoperatingsystemversion_212',['NSOperatingSystemVersion',['../struct_n_s_operating_system_version.html',1,'']]], + ['nsprocessinfo_28_29_213',['NSProcessInfo()',['../category_n_s_process_info_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.html new file mode 100644 index 0000000..956405e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.js new file mode 100644 index 0000000..be0d489 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_2.js @@ -0,0 +1,92 @@ +var searchData= +[ + ['showinstallerprogress_214',['ShowInstallerProgress',['../interface_show_installer_progress.html',1,'']]], + ['showinstallerprogress_28_29_215',['ShowInstallerProgress()',['../category_show_installer_progress_07_08.html',1,'']]], + ['spuappcastitemstate_216',['SPUAppcastItemState',['../interface_s_p_u_appcast_item_state.html',1,'']]], + ['spuappcastitemstate_28_29_217',['SPUAppcastItemState()',['../category_s_p_u_appcast_item_state_07_08.html',1,'']]], + ['spuappcastitemstateresolver_218',['SPUAppcastItemStateResolver',['../interface_s_p_u_appcast_item_state_resolver.html',1,'']]], + ['spuautomaticupdatedriver_219',['SPUAutomaticUpdateDriver',['../interface_s_p_u_automatic_update_driver.html',1,'']]], + ['spuautomaticupdatedriver_28_29_220',['SPUAutomaticUpdateDriver()',['../category_s_p_u_automatic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriver_221',['SPUBasicUpdateDriver',['../interface_s_p_u_basic_update_driver.html',1,'']]], + ['spubasicupdatedriver_28_29_222',['SPUBasicUpdateDriver()',['../category_s_p_u_basic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriverdelegate_2dp_223',['SPUBasicUpdateDriverDelegate-p',['../protocol_s_p_u_basic_update_driver_delegate-p.html',1,'']]], + ['spucorebasedupdatedriver_224',['SPUCoreBasedUpdateDriver',['../interface_s_p_u_core_based_update_driver.html',1,'']]], + ['spucorebasedupdatedriver_28_29_225',['SPUCoreBasedUpdateDriver()',['../category_s_p_u_core_based_update_driver_07_08.html',1,'']]], + ['spucorebasedupdatedriverdelegate_2dp_226',['SPUCoreBasedUpdateDriverDelegate-p',['../protocol_s_p_u_core_based_update_driver_delegate-p.html',1,'']]], + ['spudownloaddata_227',['SPUDownloadData',['../interface_s_p_u_download_data.html',1,'']]], + ['spudownloaddriver_228',['SPUDownloadDriver',['../interface_s_p_u_download_driver.html',1,'']]], + ['spudownloaddriver_28_29_229',['SPUDownloadDriver()',['../category_s_p_u_download_driver_07_08.html',1,'']]], + ['spudownloaddriverdelegate_2dp_230',['SPUDownloadDriverDelegate-p',['../protocol_s_p_u_download_driver_delegate-p.html',1,'']]], + ['spudownloadedupdate_231',['SPUDownloadedUpdate',['../interface_s_p_u_downloaded_update.html',1,'']]], + ['spuinformationalupdate_232',['SPUInformationalUpdate',['../interface_s_p_u_informational_update.html',1,'']]], + ['spuinstalleragentprotocol_2dp_233',['SPUInstallerAgentProtocol-p',['../protocol_s_p_u_installer_agent_protocol-p.html',1,'']]], + ['spuinstallerdriver_234',['SPUInstallerDriver',['../interface_s_p_u_installer_driver.html',1,'']]], + ['spuinstallerdriver_28_29_235',['SPUInstallerDriver()',['../category_s_p_u_installer_driver_07_08.html',1,'']]], + ['spuinstallerdriverdelegate_2dp_236',['SPUInstallerDriverDelegate-p',['../protocol_s_p_u_installer_driver_delegate-p.html',1,'']]], + ['spulocalcachedirectory_237',['SPULocalCacheDirectory',['../interface_s_p_u_local_cache_directory.html',1,'']]], + ['spuprobeinstallstatus_238',['SPUProbeInstallStatus',['../interface_s_p_u_probe_install_status.html',1,'']]], + ['spuprobingupdatedriver_239',['SPUProbingUpdateDriver',['../interface_s_p_u_probing_update_driver.html',1,'']]], + ['spuprobingupdatedriver_28_29_240',['SPUProbingUpdateDriver()',['../category_s_p_u_probing_update_driver_07_08.html',1,'']]], + ['spureleasenotesdriver_241',['SPUReleaseNotesDriver',['../interface_s_p_u_release_notes_driver.html',1,'']]], + ['spuresumableupdate_2dp_242',['SPUResumableUpdate-p',['../protocol_s_p_u_resumable_update-p.html',1,'']]], + ['spuscheduledupdatedriver_243',['SPUScheduledUpdateDriver',['../interface_s_p_u_scheduled_update_driver.html',1,'']]], + ['spuscheduledupdatedriver_28_29_244',['SPUScheduledUpdateDriver()',['../category_s_p_u_scheduled_update_driver_07_08.html',1,'']]], + ['spuskippedupdate_245',['SPUSkippedUpdate',['../interface_s_p_u_skipped_update.html',1,'']]], + ['spustandardupdatercontroller_246',['SPUStandardUpdaterController',['../interface_s_p_u_standard_updater_controller.html',1,'']]], + ['spustandarduserdriver_247',['SPUStandardUserDriver',['../interface_s_p_u_standard_user_driver.html',1,'']]], + ['spustandarduserdriverdelegate_2dp_248',['SPUStandardUserDriverDelegate-p',['../protocol_s_p_u_standard_user_driver_delegate-p.html',1,'']]], + ['spuuibasedupdatedriver_249',['SPUUIBasedUpdateDriver',['../interface_s_p_u_u_i_based_update_driver.html',1,'']]], + ['spuuibasedupdatedriver_28_29_250',['SPUUIBasedUpdateDriver()',['../category_s_p_u_u_i_based_update_driver_07_08.html',1,'']]], + ['spuuibasedupdatedriverdelegate_2dp_251',['SPUUIBasedUpdateDriverDelegate-p',['../protocol_s_p_u_u_i_based_update_driver_delegate-p.html',1,'']]], + ['spuupdatedriver_2dp_252',['SPUUpdateDriver-p',['../protocol_s_p_u_update_driver-p.html',1,'']]], + ['spuupdatepermissionrequest_253',['SPUUpdatePermissionRequest',['../interface_s_p_u_update_permission_request.html',1,'']]], + ['spuupdater_254',['SPUUpdater',['../interface_s_p_u_updater.html',1,'']]], + ['spuupdater_28_29_255',['SPUUpdater()',['../category_s_p_u_updater_07_08.html',1,'']]], + ['spuupdatercycle_256',['SPUUpdaterCycle',['../interface_s_p_u_updater_cycle.html',1,'']]], + ['spuupdatercycle_28_29_257',['SPUUpdaterCycle()',['../category_s_p_u_updater_cycle_07_08.html',1,'']]], + ['spuupdatercycledelegate_2dp_258',['SPUUpdaterCycleDelegate-p',['../protocol_s_p_u_updater_cycle_delegate-p.html',1,'']]], + ['spuupdaterdelegate_2dp_259',['SPUUpdaterDelegate-p',['../protocol_s_p_u_updater_delegate-p.html',1,'']]], + ['spuupdatersettings_260',['SPUUpdaterSettings',['../interface_s_p_u_updater_settings.html',1,'']]], + ['spuupdatersettings_28_29_261',['SPUUpdaterSettings()',['../category_s_p_u_updater_settings_07_08.html',1,'']]], + ['spuupdatertimer_262',['SPUUpdaterTimer',['../interface_s_p_u_updater_timer.html',1,'']]], + ['spuupdatertimer_28_29_263',['SPUUpdaterTimer()',['../category_s_p_u_updater_timer_07_08.html',1,'']]], + ['spuupdatertimerdelegate_2dp_264',['SPUUpdaterTimerDelegate-p',['../protocol_s_p_u_updater_timer_delegate-p.html',1,'']]], + ['spuurlrequest_265',['SPUURLRequest',['../interface_s_p_u_u_r_l_request.html',1,'']]], + ['spuurlrequest_28_29_266',['SPUURLRequest()',['../category_s_p_u_u_r_l_request_07_08.html',1,'']]], + ['spuuserdriver_2dp_267',['SPUUserDriver-p',['../protocol_s_p_u_user_driver-p.html',1,'']]], + ['spuuserinitiatedupdatedriver_268',['SPUUserInitiatedUpdateDriver',['../interface_s_p_u_user_initiated_update_driver.html',1,'']]], + ['spuuserinitiatedupdatedriver_28_29_269',['SPUUserInitiatedUpdateDriver()',['../category_s_p_u_user_initiated_update_driver_07_08.html',1,'']]], + ['spuuserupdatestate_270',['SPUUserUpdateState',['../interface_s_p_u_user_update_state.html',1,'']]], + ['spuuserupdatestate_28_29_271',['SPUUserUpdateState()',['../category_s_p_u_user_update_state_07_08.html',1,'']]], + ['spuuserupdatestate_28private_29_272',['SPUUserUpdateState(Private)',['../category_s_p_u_user_update_state_07_private_08.html',1,'']]], + ['suappcast_273',['SUAppcast',['../interface_s_u_appcast.html',1,'']]], + ['suappcast_28_29_274',['SUAppcast()',['../category_s_u_appcast_07_08.html',1,'']]], + ['suappcast_28private_29_275',['SUAppcast(Private)',['../category_s_u_appcast_07_private_08.html',1,'']]], + ['suappcastdriver_276',['SUAppcastDriver',['../interface_s_u_appcast_driver.html',1,'']]], + ['suappcastdriver_28_29_277',['SUAppcastDriver()',['../category_s_u_appcast_driver_07_08.html',1,'']]], + ['suappcastdriverdelegate_2dp_278',['SUAppcastDriverDelegate-p',['../protocol_s_u_appcast_driver_delegate-p.html',1,'']]], + ['suappcastitem_279',['SUAppcastItem',['../interface_s_u_appcast_item.html',1,'']]], + ['suappcastitem_28_29_280',['SUAppcastItem()',['../category_s_u_appcast_item_07_08.html',1,'']]], + ['suappcastitem_28private_29_281',['SUAppcastItem(Private)',['../category_s_u_appcast_item_07_private_08.html',1,'']]], + ['suapplicationinfo_282',['SUApplicationInfo',['../interface_s_u_application_info.html',1,'']]], + ['subundleicon_283',['SUBundleIcon',['../interface_s_u_bundle_icon.html',1,'']]], + ['sufilemanager_284',['SUFileManager',['../interface_s_u_file_manager.html',1,'']]], + ['suhost_285',['SUHost',['../interface_s_u_host.html',1,'']]], + ['suhost_28_29_286',['SUHost()',['../category_s_u_host_07_08.html',1,'']]], + ['suinstalleragentinitiationprotocol_2dp_287',['SUInstallerAgentInitiationProtocol-p',['../protocol_s_u_installer_agent_initiation_protocol-p.html',1,'']]], + ['suinstallerprotocol_2dp_288',['SUInstallerProtocol-p',['../protocol_s_u_installer_protocol-p.html',1,'']]], + ['suoperatingsystem_289',['SUOperatingSystem',['../interface_s_u_operating_system.html',1,'']]], + ['suphasedupdategroupinfo_290',['SUPhasedUpdateGroupInfo',['../interface_s_u_phased_update_group_info.html',1,'']]], + ['supublickeys_291',['SUPublicKeys',['../interface_s_u_public_keys.html',1,'']]], + ['susignatures_292',['SUSignatures',['../interface_s_u_signatures.html',1,'']]], + ['sustandardversioncomparator_293',['SUStandardVersionComparator',['../interface_s_u_standard_version_comparator.html',1,'']]], + ['sustatuscontroller_294',['SUStatusController',['../interface_s_u_status_controller.html',1,'']]], + ['sustatuscontroller_28_29_295',['SUStatusController()',['../category_s_u_status_controller_07_08.html',1,'']]], + ['susystemprofiler_296',['SUSystemProfiler',['../interface_s_u_system_profiler.html',1,'']]], + ['sutouchbarbuttongroup_297',['SUTouchBarButtonGroup',['../interface_s_u_touch_bar_button_group.html',1,'']]], + ['suupdatepermissionresponse_298',['SUUpdatePermissionResponse',['../interface_s_u_update_permission_response.html',1,'']]], + ['suupdatevalidator_299',['SUUpdateValidator',['../interface_s_u_update_validator.html',1,'']]], + ['suupdatevalidator_28_29_300',['SUUpdateValidator()',['../category_s_u_update_validator_07_08.html',1,'']]], + ['suversioncomparison_2dp_301',['SUVersionComparison-p',['../protocol_s_u_version_comparison-p.html',1,'']]], + ['suversiondisplay_2dp_302',['SUVersionDisplay-p',['../protocol_s_u_version_display-p.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.html new file mode 100644 index 0000000..d33343b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.js new file mode 100644 index 0000000..5ee7f50 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/classes_3.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['terminationlistener_303',['TerminationListener',['../interface_termination_listener.html',1,'']]], + ['terminationlistener_28_29_304',['TerminationListener()',['../category_termination_listener_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/close.svg b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/close.svg new file mode 100644 index 0000000..a933eea --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.html new file mode 100644 index 0000000..eb4c501 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.js new file mode 100644 index 0000000..a7361fe --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_0.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['allowedchannelsforupdater_3a_305',['allowedChannelsForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a717db8ad85d47309e3f4deebdc09e7b4',1,'SPUUpdaterDelegate-p']]], + ['allowedsystemprofilekeysforupdater_3a_306',['allowedSystemProfileKeysForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aec7e4b19a2fc4afdcc86286c3bbf06b1',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.html new file mode 100644 index 0000000..ef4088b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.js new file mode 100644 index 0000000..107de75 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['bestvalidupdateinappcast_3aforupdater_3a_307',['bestValidUpdateInAppcast:forUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a0f38585740c428ce8904bf38f712396d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.html new file mode 100644 index 0000000..ca5aa10 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.js new file mode 100644 index 0000000..15be9ff --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_2.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['changeownerandgroupofitematrooturl_3atomatchurl_3aerror_3a_308',['changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:',['../interface_s_u_file_manager.html#af0defc82017c43bd1f0eab5540c05f09',1,'SUFileManager']]], + ['checkforupdateinformation_309',['checkForUpdateInformation',['../interface_s_p_u_updater.html#ad38751e23aa42be220206e7e671c697d',1,'SPUUpdater']]], + ['checkforupdates_310',['checkForUpdates',['../interface_s_p_u_updater.html#a7df56bb150d327beb72b7b050799790d',1,'SPUUpdater']]], + ['checkforupdates_3a_311',['checkForUpdates:',['../interface_s_p_u_standard_updater_controller.html#af2d2c860e3f3ae9d8feba95d196c4dc9',1,'SPUStandardUpdaterController']]], + ['checkforupdatesinbackground_312',['checkForUpdatesInBackground',['../interface_s_p_u_updater.html#a2e1e3ca715f29bae7ee0b16e15e34850',1,'SPUUpdater']]], + ['compareversion_3atoversion_3a_313',['compareVersion:toVersion:',['../interface_s_u_standard_version_comparator.html#a50d145ce078dd80d55346f17e946d282',1,'SUStandardVersionComparator::compareVersion:toVersion:()'],['../protocol_s_u_version_comparison-p.html#a0f94aedcc244ce41757e1fa620d0eb40',1,'SUVersionComparison-p::compareVersion:toVersion:()']]], + ['copyitematurl_3atourl_3aerror_3a_314',['copyItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#ac33297bd6dfbf11a23c3c0ded059f4d0',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.html new file mode 100644 index 0000000..d79f55b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.js new file mode 100644 index 0000000..2b2a29f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_3.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['decryptionpasswordforupdater_3a_315',['decryptionPasswordForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aaf8dbbcdef45b16d2fc43a4cc5487051',1,'SPUUpdaterDelegate-p']]], + ['defaultcomparator_316',['defaultComparator',['../interface_s_u_standard_version_comparator.html#a67be5d5bf36c4774432d912261cb3048',1,'SUStandardVersionComparator']]], + ['dismissupdateinstallation_317',['dismissUpdateInstallation',['../protocol_s_p_u_user_driver-p.html#a5df3b42fd77ab1b5c971c8df9ef35048',1,'SPUUserDriver-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.html new file mode 100644 index 0000000..1657cad --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.js new file mode 100644 index 0000000..cfb2484 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['feedparametersforupdater_3asendingsystemprofile_3a_318',['feedParametersForUpdater:sendingSystemProfile:',['../protocol_s_p_u_updater_delegate-p.html#a43cee9820784cffdffc3b48d8b07407e',1,'SPUUpdaterDelegate-p']]], + ['feedurlstringforupdater_3a_319',['feedURLStringForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#afd1a89b0133a35faf849b58944349516',1,'SPUUpdaterDelegate-p']]], + ['formatversion_3aandversion_3a_320',['formatVersion:andVersion:',['../protocol_s_u_version_display-p.html#afb8728137859a22c1ed795637e654dbd',1,'SUVersionDisplay-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.html new file mode 100644 index 0000000..9301d6b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.js new file mode 100644 index 0000000..f86fe25 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_5.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['init_321',['init',['../interface_s_u_file_manager.html#a972da7c2fb112d09d4903ada3564126a',1,'SUFileManager::init()'],['../interface_s_u_standard_version_comparator.html#aef2dc178fc9895961ccb8ba966c1446b',1,'SUStandardVersionComparator::init()']]], + ['initwithautomaticupdatechecks_3asendsystemprofile_3a_322',['initWithAutomaticUpdateChecks:sendSystemProfile:',['../interface_s_u_update_permission_response.html#a09be7ccbcaf1521fc9a3f5dd420785ee',1,'SUUpdatePermissionResponse']]], + ['initwithdictionary_3arelativetourl_3astateresolver_3afailurereason_3a_323',['initWithDictionary:relativeToURL:stateResolver:failureReason:',['../category_s_u_appcast_item_07_private_08.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem(Private)::initWithDictionary:relativeToURL:stateResolver:failureReason:()'],['../interface_s_u_appcast_item.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem::initWithDictionary:relativeToURL:stateResolver:failureReason:()']]], + ['initwithhostbundle_3aapplicationbundle_3auserdriver_3adelegate_3a_324',['initWithHostBundle:applicationBundle:userDriver:delegate:',['../interface_s_p_u_updater.html#aed247e3fde0667e50b8d2345e84033e1',1,'SPUUpdater']]], + ['initwithhostbundle_3adelegate_3a_325',['initWithHostBundle:delegate:',['../interface_s_p_u_standard_user_driver.html#a153eafa16df66af096947673762c2deb',1,'SPUStandardUserDriver']]], + ['initwithstartingupdater_3aupdaterdelegate_3auserdriverdelegate_3a_326',['initWithStartingUpdater:updaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a5612aa1955b41cd306200dc451c2079c',1,'SPUStandardUpdaterController']]], + ['initwithsystemprofile_3a_327',['initWithSystemProfile:',['../interface_s_p_u_update_permission_request.html#a111cc1f6605e481954f1ea57f833b6ab',1,'SPUUpdatePermissionRequest']]], + ['initwithupdaterdelegate_3auserdriverdelegate_3a_328',['initWithUpdaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a696072b114786259d2e6744914b55850',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.html new file mode 100644 index 0000000..9c4f5fc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.js new file mode 100644 index 0000000..04d86f2 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['makedirectoryaturl_3aerror_3a_329',['makeDirectoryAtURL:error:',['../interface_s_u_file_manager.html#ace4c529974dc1b64360db12689c2e9aa',1,'SUFileManager']]], + ['maketemporarydirectorywithpreferredname_3aappropriatefordirectoryurl_3aerror_3a_330',['makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:',['../interface_s_u_file_manager.html#a055d2ef9910e85c90a7d0dc34b34ce92',1,'SUFileManager']]], + ['moveitematurl_3atourl_3aerror_3a_331',['moveItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#a8f9d15f622a08284e2d5157ebea440f3',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.html new file mode 100644 index 0000000..46b5c0f --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.js new file mode 100644 index 0000000..5631163 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ns_5funavailable_332',['NS_UNAVAILABLE',['../interface_s_p_u_standard_updater_controller.html#a3c582fd7f0de322edc97915c9405eced',1,'SPUStandardUpdaterController::NS_UNAVAILABLE()'],['../interface_s_p_u_standard_user_driver.html#a9ad2b659b5760b2f4274e5c63b1f8094',1,'SPUStandardUserDriver::NS_UNAVAILABLE()'],['../interface_s_p_u_updater.html#ac2907583983833ce9f09bee2867d7654',1,'SPUUpdater::NS_UNAVAILABLE()']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.html new file mode 100644 index 0000000..31a1d95 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.js new file mode 100644 index 0000000..c761fdd --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['releaseitemfromquarantineatrooturl_3aerror_3a_333',['releaseItemFromQuarantineAtRootURL:error:',['../interface_s_u_file_manager.html#a8599b8160422edbb38f34e547889f727',1,'SUFileManager']]], + ['removeitematurl_3aerror_3a_334',['removeItemAtURL:error:',['../interface_s_u_file_manager.html#aea79ee52a31937c33f5e00e60f873b4b',1,'SUFileManager']]], + ['replaceitematurl_3awithitematurl_3aerror_3a_335',['replaceItemAtURL:withItemAtURL:error:',['../interface_s_u_file_manager.html#aec3de47f6e37353f905b855951b37c65',1,'SUFileManager']]], + ['resetupdatecycle_336',['resetUpdateCycle',['../interface_s_p_u_updater.html#aefe1e7f5ae5b8e02f1d7beab189b51af',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.html new file mode 100644 index 0000000..9a8e429 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.js new file mode 100644 index 0000000..0aeed47 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_9.js @@ -0,0 +1,26 @@ +var searchData= +[ + ['setfeedurl_3a_337',['setFeedURL:',['../interface_s_p_u_updater.html#adfaabdc767d7a7668c8e472e45abd635',1,'SPUUpdater']]], + ['showdownloaddidreceivedataoflength_3a_338',['showDownloadDidReceiveDataOfLength:',['../protocol_s_p_u_user_driver-p.html#ac86c11d9dd8f66cc54bc3f3dd303fb6c',1,'SPUUserDriver-p']]], + ['showdownloaddidreceiveexpectedcontentlength_3a_339',['showDownloadDidReceiveExpectedContentLength:',['../protocol_s_p_u_user_driver-p.html#abf58b5974797500618b7745f1987833a',1,'SPUUserDriver-p']]], + ['showdownloaddidstartextractingupdate_340',['showDownloadDidStartExtractingUpdate',['../protocol_s_p_u_user_driver-p.html#a19ada57d6b77c7ea3ed402833dcda44c',1,'SPUUserDriver-p']]], + ['showdownloadinitiatedwithcancellation_3a_341',['showDownloadInitiatedWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a3c6cd7f7b93f6d2777b04f3c9f0bb62c',1,'SPUUserDriver-p']]], + ['showextractionreceivedprogress_3a_342',['showExtractionReceivedProgress:',['../protocol_s_p_u_user_driver-p.html#a3ffb49c0f51864011685049b7225dfbf',1,'SPUUserDriver-p']]], + ['showinstallingupdate_343',['showInstallingUpdate',['../protocol_s_p_u_user_driver-p.html#ab774cef0a00dbc7c074f8850c1e6c21f',1,'SPUUserDriver-p']]], + ['showreadytoinstallandrelaunch_3a_344',['showReadyToInstallAndRelaunch:',['../protocol_s_p_u_user_driver-p.html#a91ad34f8469dc022c7b1ed42b0f1575d',1,'SPUUserDriver-p']]], + ['showsendingterminationsignal_345',['showSendingTerminationSignal',['../protocol_s_p_u_user_driver-p.html#a3eb11e826fe5c1f68112a73600c23bf2',1,'SPUUserDriver-p']]], + ['showupdatefoundwithappcastitem_3astate_3areply_3a_346',['showUpdateFoundWithAppcastItem:state:reply:',['../protocol_s_p_u_user_driver-p.html#ac0f8e99c60962476ea55729833a0e3f2',1,'SPUUserDriver-p']]], + ['showupdateinfocus_347',['showUpdateInFocus',['../protocol_s_p_u_user_driver-p.html#ac6d613d4689dbc6415774d0ab63afd55',1,'SPUUserDriver-p']]], + ['showupdateinstalledandrelaunched_3aacknowledgement_3a_348',['showUpdateInstalledAndRelaunched:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#aa8b7ae192288db21ab43b4413b2d80c3',1,'SPUUserDriver-p']]], + ['showupdatenotfoundwitherror_3aacknowledgement_3a_349',['showUpdateNotFoundWithError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#abf3ca2a6bb84fe26a4ce53ae5b6f2233',1,'SPUUserDriver-p']]], + ['showupdatepermissionrequest_3areply_3a_350',['showUpdatePermissionRequest:reply:',['../protocol_s_p_u_user_driver-p.html#a6382048832f06216f505659c251dc1e0',1,'SPUUserDriver-p']]], + ['showupdatereleasenotesfailedtodownloadwitherror_3a_351',['showUpdateReleaseNotesFailedToDownloadWithError:',['../protocol_s_p_u_user_driver-p.html#ab304bc81459aa83fc617eb5047cd93a1',1,'SPUUserDriver-p']]], + ['showupdatereleasenoteswithdownloaddata_3a_352',['showUpdateReleaseNotesWithDownloadData:',['../protocol_s_p_u_user_driver-p.html#ae5fe75d599aae6597d81bd2449919be8',1,'SPUUserDriver-p']]], + ['showupdatererror_3aacknowledgement_3a_353',['showUpdaterError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#ac10bbf2fbe588106bf3a8c951caa2d53',1,'SPUUserDriver-p']]], + ['showuserinitiatedupdatecheckwithcancellation_3a_354',['showUserInitiatedUpdateCheckWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a797fb61eacdd1fba10a232d7b2b5ceac',1,'SPUUserDriver-p']]], + ['standarduserdriverdidshowmodalalert_355',['standardUserDriverDidShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#aaaafb308354867990fed28c308dc881d',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverrequestsversiondisplayer_356',['standardUserDriverRequestsVersionDisplayer',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ae96836bc3c2fb3104d6586e5067001b3',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverwillshowmodalalert_357',['standardUserDriverWillShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ad3bbc4db85bf302e8d6db6b4f030969a',1,'SPUStandardUserDriverDelegate-p']]], + ['startupdater_358',['startUpdater',['../interface_s_p_u_standard_updater_controller.html#a13632a2dd07a4d49333ec23091a3c6a5',1,'SPUStandardUpdaterController']]], + ['startupdater_3a_359',['startUpdater:',['../interface_s_p_u_updater.html#a30c0f163e0fbc7b100f84c64b491b353',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.html new file mode 100644 index 0000000..5ecc152 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.js new file mode 100644 index 0000000..0b01297 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_a.js @@ -0,0 +1,28 @@ +var searchData= +[ + ['updateaccesstimeofitematrooturl_3aerror_3a_360',['updateAccessTimeOfItemAtRootURL:error:',['../interface_s_u_file_manager.html#ae7b47ef3936d2ab36d32d1f496c9b133',1,'SUFileManager']]], + ['updatemodificationandaccesstimeofitematurl_3aerror_3a_361',['updateModificationAndAccessTimeOfItemAtURL:error:',['../interface_s_u_file_manager.html#ad81e3246bf42d50c7c0ed2df06ff41de',1,'SUFileManager']]], + ['updater_3adidabortwitherror_3a_362',['updater:didAbortWithError:',['../protocol_s_p_u_updater_delegate-p.html#a71df9732bf67636a1b61a76a54d57878',1,'SPUUpdaterDelegate-p']]], + ['updater_3adiddownloadupdate_3a_363',['updater:didDownloadUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a3f8066b02a7a3c1c215bee70458e6db0',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidextractupdate_3a_364',['updater:didExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a8d7a087d6f25ded00f80acfd3555e504',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfindvalidupdate_3a_365',['updater:didFindValidUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a155defe95c694f91c46f81baff2c99d9',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfinishloadingappcast_3a_366',['updater:didFinishLoadingAppcast:',['../protocol_s_p_u_updater_delegate-p.html#a67f5d81863a898df881ddbbaed9371a8',1,'SPUUpdaterDelegate-p']]], + ['updater_3afailedtodownloadupdate_3aerror_3a_367',['updater:failedToDownloadUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#ab446fa17e9b9adfda488ca48641c203a',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldallowinstallerinteractionforupdatecheck_3a_368',['updater:shouldAllowInstallerInteractionForUpdateCheck:',['../protocol_s_p_u_updater_delegate-p.html#a232aa864ac8c86b266bc043dfd1136b4',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldpostponerelaunchforupdate_3auntilinvokingblock_3a_369',['updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:',['../protocol_s_p_u_updater_delegate-p.html#aeef90220bddc5727c5e6529b58e48164',1,'SPUUpdaterDelegate-p']]], + ['updater_3auserdidskipthisversion_3a_370',['updater:userDidSkipThisVersion:',['../protocol_s_p_u_updater_delegate-p.html#a1f8fcf730b45b3b650b19627dd1ac36c',1,'SPUUpdaterDelegate-p']]], + ['updater_3awilldownloadupdate_3awithrequest_3a_371',['updater:willDownloadUpdate:withRequest:',['../protocol_s_p_u_updater_delegate-p.html#a2255ef7b18b135306e871e1471a4a399',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillextractupdate_3a_372',['updater:willExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a2573857b492ea895f099407a92321a3f',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdate_3a_373',['updater:willInstallUpdate:',['../protocol_s_p_u_updater_delegate-p.html#acf34be619b8fb7f66693837849d5e228',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdateonquit_3aimmediateinstallationblock_3a_374',['updater:willInstallUpdateOnQuit:immediateInstallationBlock:',['../protocol_s_p_u_updater_delegate-p.html#a64585159f4bef97e47de8359e202f3ad',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillscheduleupdatecheckafterdelay_3a_375',['updater:willScheduleUpdateCheckAfterDelay:',['../protocol_s_p_u_updater_delegate-p.html#aafac150db4d32c06c84ee3ad01b0f036',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3a_376',['updaterDidNotFindUpdate:',['../protocol_s_p_u_updater_delegate-p.html#ad112453ce92617e3356a7cd5c4d0658b',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3aerror_3a_377',['updaterDidNotFindUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#a5ad88d4c57d19fe73080273b13ded22d',1,'SPUUpdaterDelegate-p']]], + ['updatermaycheckforupdates_3a_378',['updaterMayCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a1745cb021956a38c2439b370e9cda904',1,'SPUUpdaterDelegate-p']]], + ['updatershoulddownloadreleasenotes_3a_379',['updaterShouldDownloadReleaseNotes:',['../protocol_s_p_u_updater_delegate-p.html#a8b966f752f5a19942534698d5271544a',1,'SPUUpdaterDelegate-p']]], + ['updatershouldpromptforpermissiontocheckforupdates_3a_380',['updaterShouldPromptForPermissionToCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a5cd8012b35bec5de906e70c4dabce602',1,'SPUUpdaterDelegate-p']]], + ['updatershouldrelaunchapplication_3a_381',['updaterShouldRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a703e4aa94c2b4fe835c99b1f2b8f1c48',1,'SPUUpdaterDelegate-p']]], + ['updaterwillidleschedulingupdates_3a_382',['updaterWillIdleSchedulingUpdates:',['../protocol_s_p_u_updater_delegate-p.html#afccc281852fd4f497d815cda9b4695bb',1,'SPUUpdaterDelegate-p']]], + ['updaterwillrelaunchapplication_3a_383',['updaterWillRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a6fa486e14d915cd18ac3791a905647f2',1,'SPUUpdaterDelegate-p']]], + ['userdidcanceldownload_3a_384',['userDidCancelDownload:',['../protocol_s_p_u_updater_delegate-p.html#a06e1e03dea92513fd284e263b9f80d02',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.html new file mode 100644 index 0000000..e301fed --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.js new file mode 100644 index 0000000..ffd4c8e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/functions_b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['versioncomparatorforupdater_3a_385',['versionComparatorForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a8bea6508b8e81a51c1087a1f3b501c1d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/mag_sel.svg b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/mag_sel.svg new file mode 100644 index 0000000..03626f6 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/nomatches.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/nomatches.html new file mode 100644 index 0000000..2b9360b --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/nomatches.html @@ -0,0 +1,13 @@ + + + + + + + + +
    +
    No Matches
    +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.html new file mode 100644 index 0000000..91e9306 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.js new file mode 100644 index 0000000..eb0e85c --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_0.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['allowsautomaticupdates_386',['allowsAutomaticUpdates',['../interface_s_p_u_updater_settings.html#ae9b58785573e4d3e2abea0c57544681f',1,'SPUUpdaterSettings']]], + ['automaticallychecksforupdates_387',['automaticallyChecksForUpdates',['../interface_s_p_u_updater.html#a9a154002bdbe3306e763d000502a0980',1,'SPUUpdater::automaticallyChecksForUpdates()'],['../interface_s_p_u_updater_settings.html#a41e4d0f0e10e9afa92fe5c81d21bfde3',1,'SPUUpdaterSettings::automaticallyChecksForUpdates()']]], + ['automaticallydownloadsupdates_388',['automaticallyDownloadsUpdates',['../interface_s_p_u_updater.html#aa5f5578c29e6496cb90546aca35804e6',1,'SPUUpdater::automaticallyDownloadsUpdates()'],['../interface_s_p_u_updater_settings.html#af1a1fba7d6dcd05b52339f173c7a0a8d',1,'SPUUpdaterSettings::automaticallyDownloadsUpdates()']]], + ['automaticupdatechecks_389',['automaticUpdateChecks',['../interface_s_u_update_permission_response.html#a84a21b766bcbbe1fff16c26b8689aa56',1,'SUUpdatePermissionResponse']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.html new file mode 100644 index 0000000..19753dc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.js new file mode 100644 index 0000000..16f4ef4 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['cancheckforupdates_390',['canCheckForUpdates',['../interface_s_p_u_updater.html#aa8ec4e87308007ae49228165534e683c',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.html new file mode 100644 index 0000000..5799756 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.js new file mode 100644 index 0000000..260b853 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['data_391',['data',['../interface_s_p_u_download_data.html#ae8c680d14f0213633c117684e58fbef2',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.html new file mode 100644 index 0000000..b1eb716 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.js new file mode 100644 index 0000000..263fe17 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['feedurl_392',['feedURL',['../interface_s_p_u_updater.html#af49bc6a058dc0e758943a4b4b1ff98dc',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.html new file mode 100644 index 0000000..6f3262e --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.js new file mode 100644 index 0000000..7b164c0 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hasanykeys_393',['hasAnyKeys',['../interface_s_u_public_keys.html#ae2a53f6befe084d9a6fa7369a0dbe78a',1,'SUPublicKeys']]], + ['hostbundle_394',['hostBundle',['../interface_s_p_u_updater.html#aeae19dba9dc83ae9098279b0eed76d47',1,'SPUUpdater']]], + ['httpheaders_395',['httpHeaders',['../interface_s_p_u_updater.html#a2e2747823e204ebc07800ae31c201ad1',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.html new file mode 100644 index 0000000..b14d3a8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.js new file mode 100644 index 0000000..da1bed1 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['lastupdatecheckdate_396',['lastUpdateCheckDate',['../interface_s_p_u_updater.html#a22a62559c6938c7a34b1787f22043010',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.html new file mode 100644 index 0000000..19d3d2a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.js new file mode 100644 index 0000000..97dd548 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['mimetype_397',['MIMEType',['../interface_s_p_u_download_data.html#a108d9dec279550089dbea559e449321c',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.html new file mode 100644 index 0000000..42aa68a --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.js new file mode 100644 index 0000000..e78b4cc --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_7.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['sendssystemprofile_398',['sendsSystemProfile',['../interface_s_p_u_updater.html#a521d2f6d09ceec6af979f6116bc58f7f',1,'SPUUpdater::sendsSystemProfile()'],['../interface_s_p_u_updater_settings.html#a97b5102512608a905bda83b33dd0bb5d',1,'SPUUpdaterSettings::sendsSystemProfile()']]], + ['sendsystemprofile_399',['sendSystemProfile',['../interface_s_u_update_permission_response.html#af9436f4e07219513c68dbad51daf9c8d',1,'SUUpdatePermissionResponse']]], + ['sessioninprogress_400',['sessionInProgress',['../interface_s_p_u_updater.html#aebc820be90ea36d0d97c6f11e80f3a4f',1,'SPUUpdater']]], + ['sparklebundle_401',['sparkleBundle',['../interface_s_p_u_updater.html#aa0e335f7212dbd90668ea0bbef0f00c2',1,'SPUUpdater']]], + ['systemprofile_402',['systemProfile',['../interface_s_p_u_update_permission_request.html#a318086878d3e1ec1efa9b8d2424f9844',1,'SPUUpdatePermissionRequest']]], + ['systemprofilearray_403',['systemProfileArray',['../interface_s_p_u_updater.html#a90e21876539a0dab3eacfccad863aaa2',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.html new file mode 100644 index 0000000..f13fcd8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.js new file mode 100644 index 0000000..04e96d9 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['textencodingname_404',['textEncodingName',['../interface_s_p_u_download_data.html#a8316fe998bf3afa7bc4d6df7dc0ac070',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.html new file mode 100644 index 0000000..f8bedc8 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.js new file mode 100644 index 0000000..7f9ab55 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/properties_9.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['updatecheckinterval_405',['updateCheckInterval',['../interface_s_p_u_updater.html#a1b2a4bc575d1f9de57e189ca93bda22a',1,'SPUUpdater::updateCheckInterval()'],['../interface_s_p_u_updater_settings.html#affb7ac205324036803bda21826bde524',1,'SPUUpdaterSettings::updateCheckInterval()']]], + ['updater_406',['updater',['../interface_s_p_u_standard_updater_controller.html#afa35dd9683576ac1126d1ebbb6d0f3d3',1,'SPUStandardUpdaterController']]], + ['updaterdelegate_407',['updaterDelegate',['../interface_s_p_u_standard_updater_controller.html#a8ee554e7555314565b582ea7ddfb91fe',1,'SPUStandardUpdaterController']]], + ['url_408',['URL',['../interface_s_p_u_download_data.html#a5eabdc79a39c2de6e0c79b2d6d4e5b0e',1,'SPUDownloadData']]], + ['useragentstring_409',['userAgentString',['../interface_s_p_u_updater.html#a62757b3c7dea957c737527e854408e96',1,'SPUUpdater']]], + ['userdriver_410',['userDriver',['../interface_s_p_u_standard_updater_controller.html#a22c96bbd966c2d92884a2cfc6fb4f6f6',1,'SPUStandardUpdaterController']]], + ['userdriverdelegate_411',['userDriverDelegate',['../interface_s_p_u_standard_updater_controller.html#a4afcf2d6fc104bf1186a0e757aa267d7',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.css b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.css new file mode 100644 index 0000000..9074198 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.css @@ -0,0 +1,257 @@ +/*---------------- Search Box */ + +#MSearchBox { + white-space : nowrap; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; + z-index: 102; +} + +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; +} + +#MSearchSelect { + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; +} + +#MSearchField { + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; + border:none; + color: #909090; + outline: none; + font-family: Arial, Verdana, sans-serif; + -webkit-border-radius: 0px; + border-radius: 0px; + background: none; +} + + +#MSearchBox .right { + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; +} + +#MSearchClose { + display: none; + font-size: inherit; + background : none; + border: none; + margin: 0; + padding: 0; + outline: none; + +} + +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; + z-index:10000; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; + font-family: Arial, Verdana, sans-serif; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; + font-family: Arial, Verdana, sans-serif; +} + +.SRResult { + display: none; +} + +div.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.js b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.js new file mode 100644 index 0000000..fb226f7 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/search/search.js @@ -0,0 +1,816 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches' + this.extension; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline-block'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    NSOperatingSystemVersion Member List
    +
    +
    + +

    This is the complete list of members for NSOperatingSystemVersion, including all inherited members.

    + + + + +
    majorVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    minorVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    patchVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/struct_n_s_operating_system_version.html b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/struct_n_s_operating_system_version.html new file mode 100644 index 0000000..17e9d07 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/struct_n_s_operating_system_version.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: NSOperatingSystemVersion Struct Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    NSOperatingSystemVersion Struct Reference
    +
    +
    + + + + + + + + +

    +Public Attributes

    +NSInteger majorVersion
     
    +NSInteger minorVersion
     
    +NSInteger patchVersion
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_off.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_off.png new file mode 100644 index 0000000..3b443fc Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_off.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_on.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_on.png new file mode 100644 index 0000000..e08320f Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/sync_on.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_a.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_a.png new file mode 100644 index 0000000..3b725c4 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_a.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_b.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_b.png new file mode 100644 index 0000000..e2b4a86 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_b.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_h.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_h.png new file mode 100644 index 0000000..fd5cb70 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_h.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_s.png b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_s.png new file mode 100644 index 0000000..ab478c9 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tab_s.png differ diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tabs.css b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tabs.css new file mode 100644 index 0000000..85a0cd5 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/undocumented.json b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/undocumented.json new file mode 100644 index 0000000..eea2899 --- /dev/null +++ b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/Documents/undocumented.json @@ -0,0 +1,866 @@ +{ + "warnings": [ + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 29, + "symbol": "SUUpdaterDidFinishLoadingAppCastNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 30, + "symbol": "SUUpdaterDidFindValidUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 31, + "symbol": "SUUpdaterDidNotFindUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 32, + "symbol": "SUUpdaterWillRestartNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 37, + "symbol": "SUUpdaterAppcastItemNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 39, + "symbol": "SUUpdaterAppcastNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 45, + "symbol": "SUSystemProfilerApplicationNameKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 46, + "symbol": "SUSystemProfilerApplicationVersionKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 47, + "symbol": "SUSystemProfilerCPU64bitKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 48, + "symbol": "SUSystemProfilerCPUCountKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 49, + "symbol": "SUSystemProfilerCPUFrequencyKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 50, + "symbol": "SUSystemProfilerCPUTypeKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 51, + "symbol": "SUSystemProfilerCPUSubtypeKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 52, + "symbol": "SUSystemProfilerHardwareModelKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 53, + "symbol": "SUSystemProfilerMemoryKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 54, + "symbol": "SUSystemProfilerOperatingSystemVersionKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 55, + "symbol": "SUSystemProfilerPreferredLanguageKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 447, + "symbol": "SPUUpdaterDelegate.-updaterMayCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterSettings.h", + "line": 29, + "symbol": "SPUUpdaterSettings.-initWithHostBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 278, + "symbol": "SPUUserDriver.-showUpdateNotFoundWithAcknowledgement:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 280, + "symbol": "SPUUserDriver.-showUpdateInstallationDidFinishWithAcknowledgement:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 282, + "symbol": "SPUUserDriver.-dismissUserInitiatedUpdateCheck", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserUpdateState.h", + "line": 66, + "symbol": "SPUUserUpdateState.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcast.h", + "line": 31, + "symbol": "SUAppcast.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 332, + "symbol": "SUAppcastItem.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 342, + "symbol": "SUAppcastItem.-initWithDictionary:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 343, + "symbol": "SUAppcastItem.-initWithDictionary:failureReason:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 344, + "symbol": "SUAppcastItem.-initWithDictionary:relativeToURL:failureReason:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 36, + "symbol": "SUError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enum", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 36, + "symbol": "SUError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 38, + "symbol": "SUError.SUNoPublicDSAFoundError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 39, + "symbol": "SUError.SUInsufficientSigningError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 40, + "symbol": "SUError.SUInsecureFeedURLError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 41, + "symbol": "SUError.SUInvalidFeedURLError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 42, + "symbol": "SUError.SUInvalidUpdaterError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 43, + "symbol": "SUError.SUInvalidHostBundleIdentifierError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 44, + "symbol": "SUError.SUInvalidHostVersionError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 47, + "symbol": "SUError.SUAppcastParseError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 48, + "symbol": "SUError.SUNoUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 49, + "symbol": "SUError.SUAppcastError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 50, + "symbol": "SUError.SURunningFromDiskImageError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 51, + "symbol": "SUError.SUResumeAppcastError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 52, + "symbol": "SUError.SURunningTranslocated", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 53, + "symbol": "SUError.SUWebKitTerminationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 56, + "symbol": "SUError.SUTemporaryDirectoryError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 57, + "symbol": "SUError.SUDownloadError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 60, + "symbol": "SUError.SUUnarchivingError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 61, + "symbol": "SUError.SUSignatureError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 62, + "symbol": "SUError.SUValidationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 65, + "symbol": "SUError.SUFileCopyFailure", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 66, + "symbol": "SUError.SUAuthenticationFailure", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 67, + "symbol": "SUError.SUMissingUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 68, + "symbol": "SUError.SUMissingInstallerToolError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 69, + "symbol": "SUError.SURelaunchError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 70, + "symbol": "SUError.SUInstallationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 71, + "symbol": "SUError.SUDowngradeError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 72, + "symbol": "SUError.SUInstallationCanceledError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 73, + "symbol": "SUError.SUInstallationAuthorizeLaterError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 74, + "symbol": "SUError.SUNotValidUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 75, + "symbol": "SUError.SUAgentInvalidationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 78, + "symbol": "SUError.SUIncorrectAPIUsageError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 107, + "symbol": "SPUNoUpdateFoundReasonKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 108, + "symbol": "SPULatestAppcastItemFoundKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 109, + "symbol": "SPUNoUpdateFoundUserInitiatedKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdatePermissionResponse.h", + "line": 35, + "symbol": "SUUpdatePermissionResponse.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 39, + "symbol": "SUUpdater.delegate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 46, + "symbol": "SUUpdater.+sharedUpdater", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.class", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 52, + "symbol": "SUUpdater.+updaterForBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.class", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 59, + "symbol": "SUUpdater.-initForBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 71, + "symbol": "SUUpdater.-checkForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 76, + "symbol": "SUUpdater.-validateMenuItem:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 91, + "symbol": "SUUpdater.-checkForUpdatesInBackground", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 100, + "symbol": "SUUpdater.automaticallyChecksForUpdates", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 110, + "symbol": "SUUpdater.automaticallyDownloadsUpdates", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 119, + "symbol": "SUUpdater.updateCheckInterval", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 132, + "symbol": "SUUpdater.-checkForUpdateInformation", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 143, + "symbol": "SUUpdater.feedURL", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 148, + "symbol": "SUUpdater.hostBundle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 153, + "symbol": "SUUpdater.sparkleBundle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 160, + "symbol": "SUUpdater.userAgentString", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 167, + "symbol": "SUUpdater.httpHeaders", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 174, + "symbol": "SUUpdater.sendsSystemProfile", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 179, + "symbol": "SUUpdater.decryptionPassword", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 186, + "symbol": "SUUpdater.lastUpdateCheckDate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 195, + "symbol": "SUUpdater.-resetUpdateCycle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 203, + "symbol": "SUUpdater.updateInProgress", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 28, + "symbol": "SUUpdaterDidFinishLoadingAppCastNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 29, + "symbol": "SUUpdaterDidFindValidUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 30, + "symbol": "SUUpdaterDidNotFindUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 31, + "symbol": "SUUpdaterWillRestartNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 36, + "symbol": "SUUpdaterAppcastItemNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 38, + "symbol": "SUUpdaterAppcastNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 48, + "symbol": "SUUpdaterDelegate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 58, + "symbol": "SUUpdaterDelegate.-updaterMayCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 70, + "symbol": "SUUpdaterDelegate.-feedParametersForUpdater:sendingSystemProfile:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 82, + "symbol": "SUUpdaterDelegate.-feedURLStringForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 91, + "symbol": "SUUpdaterDelegate.-updaterShouldPromptForPermissionToCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 101, + "symbol": "SUUpdaterDelegate.-updater:didFinishLoadingAppcast:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 113, + "symbol": "SUUpdaterDelegate.-bestValidUpdateInAppcast:forUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 121, + "symbol": "SUUpdaterDelegate.-updater:didFindValidUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 128, + "symbol": "SUUpdaterDelegate.-updaterDidNotFindUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 137, + "symbol": "SUUpdaterDelegate.-updater:willDownloadUpdate:withRequest:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 145, + "symbol": "SUUpdaterDelegate.-updater:didDownloadUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 154, + "symbol": "SUUpdaterDelegate.-updater:failedToDownloadUpdate:error:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 161, + "symbol": "SUUpdaterDelegate.-userDidCancelDownload:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 169, + "symbol": "SUUpdaterDelegate.-updater:willExtractUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 177, + "symbol": "SUUpdaterDelegate.-updater:didExtractUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 185, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 193, + "symbol": "SUUpdaterDelegate.-updater:userDidSkipThisVersion:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 209, + "symbol": "SUUpdaterDelegate.-updater:shouldPostponeRelaunchForUpdate:untilInvoking:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 224, + "symbol": "SUUpdaterDelegate.-updater:shouldPostponeRelaunchForUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 234, + "symbol": "SUUpdaterDelegate.-updaterShouldRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 241, + "symbol": "SUUpdaterDelegate.-updaterWillRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 248, + "symbol": "SUUpdaterDelegate.-updaterDidRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 263, + "symbol": "SUUpdaterDelegate.-versionComparatorForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 272, + "symbol": "SUUpdaterDelegate.-versionDisplayerForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 283, + "symbol": "SUUpdaterDelegate.-pathToRelaunchForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 291, + "symbol": "SUUpdaterDelegate.-updaterWillShowModalAlert:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 299, + "symbol": "SUUpdaterDelegate.-updaterDidShowModalAlert:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 311, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdateOnQuit:immediateInstallationInvocation:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 322, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdateOnQuit:immediateInstallationBlock:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 332, + "symbol": "SUUpdaterDelegate.-updater:didCancelInstallUpdateOnQuit:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 340, + "symbol": "SUUpdaterDelegate.-updater:didAbortWithError:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + } + ], + "source_directory": "/Users/msp/Documents/Programming/Sparkle" +} \ No newline at end of file diff --git a/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/docSet.dsidx b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/docSet.dsidx new file mode 100644 index 0000000..1f2f295 Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.docset/Contents/Resources/docSet.dsidx differ diff --git a/documentation/api-reference/docsets/Sparkle.tgz b/documentation/api-reference/docsets/Sparkle.tgz new file mode 100644 index 0000000..8ad12bd Binary files /dev/null and b/documentation/api-reference/docsets/Sparkle.tgz differ diff --git a/documentation/api-reference/doxygen.css b/documentation/api-reference/doxygen.css new file mode 100644 index 0000000..ffbff02 --- /dev/null +++ b/documentation/api-reference/doxygen.css @@ -0,0 +1,1793 @@ +/* The standard CSS for doxygen 1.9.1 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +p.reference, p.definition { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.navtab { + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; +} + +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +.contents a.qindexHL:visited { + color: #FFFFFF; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #FFFFFF; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +blockquote.DocNodeRTL { + border-left: 0; + border-right: 2px solid #9CAFD4; + margin: 0 4px 0 24px; + padding: 0 16px 0 12px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */ +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.section.DocNodeRTL { + margin-right: 0px; + padding-right: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.note.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.warning.DocNodeRTL, dl.attention.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.deprecated.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.todo.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.test.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +dl.bug.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +.PageDocRTL-title div.toc { + float: left !important; + text-align: right; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +.PageDocRTL-title div.toc li { + background-position-x: right !important; + padding-left: 0 !important; + padding-right: 10px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +.PageDocRTL-title div.toc li.level1 { + margin-left: 0 !important; + margin-right: 0; +} + +.PageDocRTL-title div.toc li.level2 { + margin-left: 0 !important; + margin-right: 15px; +} + +.PageDocRTL-title div.toc li.level3 { + margin-left: 0 !important; + margin-right: 30px; +} + +.PageDocRTL-title div.toc li.level4 { + margin-left: 0 !important; + margin-right: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +.DocNodeRTL { + text-align: right; + direction: rtl; +} + +.DocNodeLTR { + text-align: left; + direction: ltr; +} + +table.DocNodeRTL { + width: auto; + margin-right: 0; + margin-left: auto; +} + +table.DocNodeLTR { + width: auto; + margin-right: auto; + margin-left: 0; +} + +tt, code, kbd, samp +{ + display: inline-block; + direction:ltr; +} +/* @end */ + +u { + text-decoration: underline; +} + diff --git a/documentation/api-reference/doxygen.svg b/documentation/api-reference/doxygen.svg new file mode 100644 index 0000000..d42dad5 --- /dev/null +++ b/documentation/api-reference/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/documentation/api-reference/dynsections.js b/documentation/api-reference/dynsections.js new file mode 100644 index 0000000..3174bd7 --- /dev/null +++ b/documentation/api-reference/dynsections.js @@ -0,0 +1,121 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + + +Sparkle: File List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    File List
    +
    +
    +
    Here is a list of all documented files with brief descriptions:
    +
    [detail level 123]
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Sparkle
      Autoupdate
     TerminationListener.h
      InstallerProgress
     InstallerProgressAppController.h
     InstallerProgressDelegate.h
     ShowInstallerProgress.h
     SPUInstallerAgentProtocol.h
     SUInstallerAgentInitiationProtocol.h
     AppKitPrevention.h
     Sparkle.h
     SPUAppcastItemState.h
     SPUAppcastItemStateResolver+Private.h
     SPUAppcastItemStateResolver.h
     SPUAutomaticUpdateDriver.h
     SPUBasicUpdateDriver.h
     SPUCoreBasedUpdateDriver.h
     SPUDownloadData.h
     SPUDownloadDriver.h
     SPUDownloadedUpdate.h
     SPUInformationalUpdate.h
     SPUInstallationType.h
     SPUInstallerDriver.h
     SPULocalCacheDirectory.h
     SPUProbeInstallStatus.h
     SPUProbingUpdateDriver.h
     SPUResumableUpdate.h
     SPUScheduledUpdateDriver.h
     SPUSecureCoding.h
     SPUSkippedUpdate.h
     SPUStandardUpdaterController.h
     SPUStandardUserDriver.h
     SPUStandardUserDriverDelegate.h
     SPUUIBasedUpdateDriver.h
     SPUUpdateDriver.h
     SPUUpdatePermissionRequest.h
     SPUUpdater.h
     SPUUpdaterCycle.h
     SPUUpdaterDelegate.h
     SPUUpdaterSettings.h
     SPUUpdaterTimer.h
     SPUURLRequest.h
     SPUUserDriver.h
     SPUUserInitiatedUpdateDriver.h
     SPUUserUpdateState+Private.h
     SPUUserUpdateState.h
     SPUXPCServiceInfo.h
     SUAppcast+Private.h
     SUAppcast.h
     SUAppcastDriver.h
     SUAppcastItem+Private.h
     SUAppcastItem.h
     SUApplicationInfo.h
     SUBundleIcon.h
     SUConstants.h
     SUErrors.h
     SUExport.h
     SUFileManager.h
     SUHost.h
     SUInstallerProtocol.h
     SULegacyWebView.h
     SULocalizations.h
     SULog+NSError.h
     SULog.h
     SUNormalization.h
     SUOperatingSystem.h
     SUPhasedUpdateGroupInfo.h
     SUSignatures.h
     SUStandardVersionComparator.h
     SUStatusController.h
     SUSystemProfiler.h
     SUTouchBarButtonGroup.h
     SUTouchBarForwardDeclarations.h
     SUUpdateAlert.h
     SUUpdatePermissionPrompt.h
     SUUpdatePermissionResponse.h
     SUUpdater.h
     SUUpdaterDelegate.h
     SUUpdateValidator.h
     SUVersionComparisonProtocol.h
     SUVersionDisplayProtocol.h
     SUWebView.h
     SUWebViewCommon.h
     SUWKWebView.h
    +
    +
    + + + + diff --git a/documentation/api-reference/folderclosed.png b/documentation/api-reference/folderclosed.png new file mode 100644 index 0000000..bb8ab35 Binary files /dev/null and b/documentation/api-reference/folderclosed.png differ diff --git a/documentation/api-reference/folderopen.png b/documentation/api-reference/folderopen.png new file mode 100644 index 0000000..d6c7f67 Binary files /dev/null and b/documentation/api-reference/folderopen.png differ diff --git a/documentation/api-reference/functions.html b/documentation/api-reference/functions.html new file mode 100644 index 0000000..7027702 --- /dev/null +++ b/documentation/api-reference/functions.html @@ -0,0 +1,463 @@ + + + + + + + +Sparkle: Class Members + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +
    Here is a list of all documented class members with links to the class documentation for each member:
    + +

    - a -

    + + +

    - b -

    + + +

    - c -

    + + +

    - d -

    + + +

    - f -

    + + +

    - h -

    + + +

    - i -

    + + +

    - l -

    + + +

    - m -

    + + +

    - n -

    + + +

    - r -

    + + +

    - s -

    + + +

    - t -

    + + +

    - u -

    + + +

    - v -

    +
    + + + + diff --git a/documentation/api-reference/functions_func.html b/documentation/api-reference/functions_func.html new file mode 100644 index 0000000..14e54bb --- /dev/null +++ b/documentation/api-reference/functions_func.html @@ -0,0 +1,369 @@ + + + + + + + +Sparkle: Class Members - Functions + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +  + +

    - a -

    + + +

    - b -

    + + +

    - c -

    + + +

    - d -

    + + +

    - f -

    + + +

    - i -

    + + +

    - m -

    + + +

    - n -

    + + +

    - r -

    + + +

    - s -

    + + +

    - u -

    + + +

    - v -

    +
    + + + + diff --git a/documentation/api-reference/functions_prop.html b/documentation/api-reference/functions_prop.html new file mode 100644 index 0000000..e31589a --- /dev/null +++ b/documentation/api-reference/functions_prop.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: Class Members - Properties + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +
    + + + + diff --git a/documentation/api-reference/hierarchy.html b/documentation/api-reference/hierarchy.html new file mode 100644 index 0000000..beb07f3 --- /dev/null +++ b/documentation/api-reference/hierarchy.html @@ -0,0 +1,210 @@ + + + + + + + +Sparkle: Class Hierarchy + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    Class Hierarchy
    +
    +
    +
    This inheritance list is sorted roughly, but not completely, alphabetically:
    +
    [detail level 123]
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     C<NSApplicationDelegate>
     CNSButton(SierraSDK)
     CNSData(SUSignatureVerifier)
     CNSObject
     CNSObject(PrivateDelegateMethods)
     C<NSObject>
     CNSOperatingSystemVersion
     CNSProcessInfo()
     C<NSSecureCoding>
     C<NSTouchBarDelegate>
     CNSViewController
     CNSWindowController
     CShowInstallerProgress()
     C<SPUDownloaderDelegate>
     C<SPUInstallerAgentProtocol>
     CSPUUpdaterCycle()
     CSPUUpdaterSettings()
     CSPUUpdaterTimer()
     CSPUURLRequest()
     CSPUUserUpdateState(Private)
     CSUAppcast()
     CSUAppcast(Private)
     CSUAppcastItem()
     CSUHost()
     C<SUInstallerAgentInitiationProtocol>
     C<SUInstallerCommunicationProtocol>
     CSUUpdateValidator()
     C<SUVersionComparison>Provides version comparison facilities for Sparkle
     C<SUVersionDisplay>Applies special display formatting to version numbers
     CTerminationListener()
    +
    +
    + + + + diff --git a/documentation/api-reference/icon_32x32@2x.png b/documentation/api-reference/icon_32x32@2x.png new file mode 100644 index 0000000..aef9fc4 Binary files /dev/null and b/documentation/api-reference/icon_32x32@2x.png differ diff --git a/documentation/api-reference/img/carat.png b/documentation/api-reference/img/carat.png new file mode 100755 index 0000000..29d2f7f Binary files /dev/null and b/documentation/api-reference/img/carat.png differ diff --git a/documentation/api-reference/img/dash.png b/documentation/api-reference/img/dash.png new file mode 100755 index 0000000..6f694c7 Binary files /dev/null and b/documentation/api-reference/img/dash.png differ diff --git a/documentation/api-reference/img/gh.png b/documentation/api-reference/img/gh.png new file mode 100755 index 0000000..628da97 Binary files /dev/null and b/documentation/api-reference/img/gh.png differ diff --git a/documentation/api-reference/img/spinner.gif b/documentation/api-reference/img/spinner.gif new file mode 100644 index 0000000..e3038d0 Binary files /dev/null and b/documentation/api-reference/img/spinner.gif differ diff --git a/documentation/api-reference/index.html b/documentation/api-reference/index.html new file mode 100644 index 0000000..2cfaea8 --- /dev/null +++ b/documentation/api-reference/index.html @@ -0,0 +1,228 @@ + + + + Sparkle Reference + + + + + + + + + + +
    +
    +

    + Sparkle 2.0.0-beta.1 Docs + (58% documented) +

    + + +
    +
    + +
    +
    +
    +
    +
    + +

    Sparkle 2 API Reference

    + +

    These are the primary classes and protocols in Sparkle 2 you may be interested in:

    + + + +

    If you are migrating from Sparkle 1, please refer to SPUStandardUpdaterController and SPUUpdater.

    + +

    Please also visit the Basic Setup guide which shows how to instantiate an updater in a nib or how to create one programmatically.

    + +
    +
    +
    +
    + + +
    + +
  • + diff --git a/documentation/api-reference/interface_installer_progress_app_controller-members.html b/documentation/api-reference/interface_installer_progress_app_controller-members.html new file mode 100644 index 0000000..85132cf --- /dev/null +++ b/documentation/api-reference/interface_installer_progress_app_controller-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    InstallerProgressAppController Member List
    +
    +
    + +

    This is the complete list of members for InstallerProgressAppController, including all inherited members.

    + + + + +
    cleanupAndExitWithStatus:error: (defined in InstallerProgressAppController)InstallerProgressAppController
    initWithApplication:arguments:delegate: (defined in InstallerProgressAppController)InstallerProgressAppController
    run (defined in InstallerProgressAppController)InstallerProgressAppController
    + + + + diff --git a/documentation/api-reference/interface_installer_progress_app_controller.html b/documentation/api-reference/interface_installer_progress_app_controller.html new file mode 100644 index 0000000..53b071f --- /dev/null +++ b/documentation/api-reference/interface_installer_progress_app_controller.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: InstallerProgressAppController Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    InstallerProgressAppController Class Reference
    +
    +
    +
    +Inheritance diagram for InstallerProgressAppController:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithApplication:arguments:delegate:
     
    +(void) - run
     
    +(void) - cleanupAndExitWithStatus:error:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_installer_progress_app_controller.png b/documentation/api-reference/interface_installer_progress_app_controller.png new file mode 100644 index 0000000..0d6253c Binary files /dev/null and b/documentation/api-reference/interface_installer_progress_app_controller.png differ diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state-members.html b/documentation/api-reference/interface_s_p_u_appcast_item_state-members.html new file mode 100644 index 0000000..6776f82 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_appcast_item_state-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUAppcastItemState Member List
    +
    +
    + +

    This is the complete list of members for SPUAppcastItemState, including all inherited members.

    + + + + + + + + +
    criticalUpdate (defined in SPUAppcastItemState)SPUAppcastItemState
    informationalUpdate (defined in SPUAppcastItemState)SPUAppcastItemState
    initWithMajorUpgrade:criticalUpdate:informationalUpdate:minimumOperatingSystemVersionIsOK:maximumOperatingSystemVersionIsOK: (defined in SPUAppcastItemState)SPUAppcastItemState
    majorUpgrade (defined in SPUAppcastItemState)SPUAppcastItemState
    maximumOperatingSystemVersionIsOK (defined in SPUAppcastItemState)SPUAppcastItemState
    minimumOperatingSystemVersionIsOK (defined in SPUAppcastItemState)SPUAppcastItemState
    NS_UNAVAILABLE (defined in SPUAppcastItemState)SPUAppcastItemState
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state.html b/documentation/api-reference/interface_s_p_u_appcast_item_state.html new file mode 100644 index 0000000..e34ade9 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_appcast_item_state.html @@ -0,0 +1,119 @@ + + + + + + + +Sparkle: SPUAppcastItemState Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUAppcastItemState Class Reference
    +
    +
    +
    +Inheritance diagram for SPUAppcastItemState:
    +
    +
    + +
    + + + + + + +

    +Instance Methods

    +(instancetype) - NS_UNAVAILABLE
     
    +(instancetype) - initWithMajorUpgrade:criticalUpdate:informationalUpdate:minimumOperatingSystemVersionIsOK:maximumOperatingSystemVersionIsOK:
     
    + + + + + + + + + + + +

    +Properties

    +BOOL majorUpgrade
     
    +BOOL criticalUpdate
     
    +BOOL informationalUpdate
     
    +BOOL minimumOperatingSystemVersionIsOK
     
    +BOOL maximumOperatingSystemVersionIsOK
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state.png b/documentation/api-reference/interface_s_p_u_appcast_item_state.png new file mode 100644 index 0000000..f44cdef Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_appcast_item_state.png differ diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver-members.html b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver-members.html new file mode 100644 index 0000000..dd48183 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUAppcastItemStateResolver Member List
    +
    +
    + +

    This is the complete list of members for SPUAppcastItemStateResolver, including all inherited members.

    + + + + + + + + +
    applicationVersionComparator (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
    hostVersion (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
    initWithHostVersion:applicationVersionComparator:standardVersionComparator: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver
    isMinimumAutoupdateVersionOK:hostVersion:versionComparator: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()static
    NS_UNAVAILABLE (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver
    resolveStateWithInformationalUpdateVersions:minimumOperatingSystemVersion:maximumOperatingSystemVersion:minimumAutoupdateVersion:criticalUpdateDictionary: (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
    standardVersionComparator (defined in SPUAppcastItemStateResolver)SPUAppcastItemStateResolver()
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.html b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.html new file mode 100644 index 0000000..461e7f9 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.html @@ -0,0 +1,131 @@ + + + + + + + +Sparkle: SPUAppcastItemStateResolver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUAppcastItemStateResolver Class Reference
    +
    +
    + +

    Private exposed class used to resolve Appcast Item properties that rely on external factors such as a host. + More...

    + +

    #import <SPUAppcastItemStateResolver.h>

    +
    +Inheritance diagram for SPUAppcastItemStateResolver:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - NS_UNAVAILABLE
     
    +(instancetype) - initWithHostVersion:applicationVersionComparator:standardVersionComparator:
     
    +(SPUAppcastItemState *) - resolveStateWithInformationalUpdateVersions:minimumOperatingSystemVersion:maximumOperatingSystemVersion:minimumAutoupdateVersion:criticalUpdateDictionary: [implementation]
     
    + + + +

    +Class Methods

    +(BOOL) + isMinimumAutoupdateVersionOK:hostVersion:versionComparator: [implementation]
     
    + + + + + + + +

    +Properties

    +NSString * hostVersion [implementation]
     
    +id< SUVersionComparisonapplicationVersionComparator [implementation]
     
    +SUStandardVersionComparatorstandardVersionComparator [implementation]
     
    +

    Detailed Description

    +

    Private exposed class used to resolve Appcast Item properties that rely on external factors such as a host.

    +

    This resolver is used for constructing appcast items.

    +

    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.png b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.png new file mode 100644 index 0000000..86911a7 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_appcast_item_state_resolver.png differ diff --git a/documentation/api-reference/interface_s_p_u_automatic_update_driver-members.html b/documentation/api-reference/interface_s_p_u_automatic_update_driver-members.html new file mode 100644 index 0000000..ba7749d --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_automatic_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUAutomaticUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUAutomaticUpdateDriver, including all inherited members.

    + + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUAutomaticUpdateDriver)SPUAutomaticUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_automatic_update_driver.html b/documentation/api-reference/interface_s_p_u_automatic_update_driver.html new file mode 100644 index 0000000..17be91d --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_automatic_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUAutomaticUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUAutomaticUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUAutomaticUpdateDriver:
    +
    +
    + + +<SPUUpdateDriver> + +
    + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
     
    - Instance Methods inherited from <SPUUpdateDriver>
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + + +

    +Additional Inherited Members

    - Properties inherited from <SPUUpdateDriver>
    +BOOL showingUpdate
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_automatic_update_driver.png b/documentation/api-reference/interface_s_p_u_automatic_update_driver.png new file mode 100644 index 0000000..6c297b3 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_automatic_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_basic_update_driver-members.html b/documentation/api-reference/interface_s_p_u_basic_update_driver-members.html new file mode 100644 index 0000000..bae5f33 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_basic_update_driver-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUBasicUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUBasicUpdateDriver, including all inherited members.

    + + + + + + + +
    abortUpdateAndShowNextUpdateImmediately:resumableUpdate:error: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    initWithHost:updater:updaterDelegate:delegate: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    prepareCheckForUpdatesWithCompletion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    resumeUpdate:completion: (defined in SPUBasicUpdateDriver)SPUBasicUpdateDriver
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_basic_update_driver.html b/documentation/api-reference/interface_s_p_u_basic_update_driver.html new file mode 100644 index 0000000..db7165a --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_basic_update_driver.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: SPUBasicUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUBasicUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUBasicUpdateDriver:
    +
    +
    + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:updater:updaterDelegate:delegate:
     
    +(void) - prepareCheckForUpdatesWithCompletion:
     
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdateAndShowNextUpdateImmediately:resumableUpdate:error:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_basic_update_driver.png b/documentation/api-reference/interface_s_p_u_basic_update_driver.png new file mode 100644 index 0000000..ea64745 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_basic_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_core_based_update_driver-members.html b/documentation/api-reference/interface_s_p_u_core_based_update_driver-members.html new file mode 100644 index 0000000..18f2a1c --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_core_based_update_driver-members.html @@ -0,0 +1,92 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUCoreBasedUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUCoreBasedUpdateDriver, including all inherited members.

    + + + + + + + + + + + + + +
    abortUpdateAndShowNextUpdateImmediately:error: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:requiresSilentInstall: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    clearDownloadedUpdate (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    deferInformationalUpdate:secondaryUpdate: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    downloadUpdateFromAppcastItem:secondaryAppcastItem:inBackground: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    extractDownloadedUpdate (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    finishInstallationWithResponse:displayingUserInterface: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    preflightForUpdatePermissionPreventingInstallerInteraction:reply: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    prepareCheckForUpdatesWithCompletion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    resumeUpdate:completion: (defined in SPUCoreBasedUpdateDriver)SPUCoreBasedUpdateDriver
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_core_based_update_driver.html b/documentation/api-reference/interface_s_p_u_core_based_update_driver.html new file mode 100644 index 0000000..ea1590b --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_core_based_update_driver.html @@ -0,0 +1,130 @@ + + + + + + + +Sparkle: SPUCoreBasedUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUCoreBasedUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUCoreBasedUpdateDriver:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate:
     
    +(void) - prepareCheckForUpdatesWithCompletion:
     
    +(void) - preflightForUpdatePermissionPreventingInstallerInteraction:reply:
     
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:requiresSilentInstall:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - downloadUpdateFromAppcastItem:secondaryAppcastItem:inBackground:
     
    +(void) - deferInformationalUpdate:secondaryUpdate:
     
    +(void) - extractDownloadedUpdate
     
    +(void) - clearDownloadedUpdate
     
    +(void) - finishInstallationWithResponse:displayingUserInterface:
     
    +(void) - abortUpdateAndShowNextUpdateImmediately:error:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_core_based_update_driver.png b/documentation/api-reference/interface_s_p_u_core_based_update_driver.png new file mode 100644 index 0000000..48dee7f Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_core_based_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_download_data-members.html b/documentation/api-reference/interface_s_p_u_download_data-members.html new file mode 100644 index 0000000..71bc182 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_download_data-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUDownloadData Member List
    +
    +
    + +

    This is the complete list of members for SPUDownloadData, including all inherited members.

    + + + + + + +
    dataSPUDownloadData
    initWithData:URL:textEncodingName:MIMEType: (defined in SPUDownloadData)SPUDownloadData
    MIMETypeSPUDownloadData
    textEncodingNameSPUDownloadData
    URLSPUDownloadData
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_download_data.html b/documentation/api-reference/interface_s_p_u_download_data.html new file mode 100644 index 0000000..3017e66 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_download_data.html @@ -0,0 +1,196 @@ + + + + + + + +Sparkle: SPUDownloadData Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUDownloadData Class Reference
    +
    +
    + +

    A class for containing downloaded data along with some information about it. + More...

    + +

    #import <SPUDownloadData.h>

    +
    +Inheritance diagram for SPUDownloadData:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithData:URL:textEncodingName:MIMEType:
     
    + + + + + + + + + + + + + +

    +Properties

    +NSData * data
     The raw data that was downloaded.
     
    NSURL * URL
     The URL that was fetched from. More...
     
    NSString * textEncodingName
     The IANA charset encoding name if available. More...
     
    NSString * MIMEType
     The MIME type if available. More...
     
    +

    Detailed Description

    +

    A class for containing downloaded data along with some information about it.

    +

    Property Documentation

    + +

    ◆ MIMEType

    + +
    +
    + + + + + +
    + + + + +
    - (NSString*) MIMEType
    +
    +readnonatomiccopy
    +
    + +

    The MIME type if available.

    +

    Eg: "text/plain"

    + +
    +
    + +

    ◆ textEncodingName

    + +
    +
    + + + + + +
    + + + + +
    - (NSString*) textEncodingName
    +
    +readnonatomiccopy
    +
    + +

    The IANA charset encoding name if available.

    +

    Eg: "utf-8"

    + +
    +
    + +

    ◆ URL

    + +
    +
    + + + + + +
    + + + + +
    - (NSURL*) URL
    +
    +readnonatomiccopy
    +
    + +

    The URL that was fetched from.

    +

    This may be different from the URL in the request if there were redirects involved.

    + +
    +
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_download_data.png b/documentation/api-reference/interface_s_p_u_download_data.png new file mode 100644 index 0000000..8b87264 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_download_data.png differ diff --git a/documentation/api-reference/interface_s_p_u_download_driver-members.html b/documentation/api-reference/interface_s_p_u_download_driver-members.html new file mode 100644 index 0000000..7f5a882 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_download_driver-members.html @@ -0,0 +1,88 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUDownloadDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUDownloadDriver, including all inherited members.

    + + + + + + + + + +
    cleanup: (defined in SPUDownloadDriver)SPUDownloadDriver
    downloadFile (defined in SPUDownloadDriver)SPUDownloadDriver
    inBackground (defined in SPUDownloadDriver)SPUDownloadDriver
    initWithHost: (defined in SPUDownloadDriver)SPUDownloadDriver
    initWithRequestURL:host:userAgent:httpHeaders:inBackground:delegate: (defined in SPUDownloadDriver)SPUDownloadDriver
    initWithUpdateItem:secondaryUpdateItem:host:userAgent:httpHeaders:inBackground:delegate: (defined in SPUDownloadDriver)SPUDownloadDriver
    removeDownloadedUpdate: (defined in SPUDownloadDriver)SPUDownloadDriver
    request (defined in SPUDownloadDriver)SPUDownloadDriver
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_download_driver.html b/documentation/api-reference/interface_s_p_u_download_driver.html new file mode 100644 index 0000000..6d7afa7 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_download_driver.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: SPUDownloadDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUDownloadDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUDownloadDriver:
    +
    +
    + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithRequestURL:host:userAgent:httpHeaders:inBackground:delegate:
     
    +(instancetype) - initWithUpdateItem:secondaryUpdateItem:host:userAgent:httpHeaders:inBackground:delegate:
     
    +(instancetype) - initWithHost:
     
    +(void) - downloadFile
     
    +(void) - removeDownloadedUpdate:
     
    +(void) - cleanup:
     
    + + + + + +

    +Properties

    +NSMutableURLRequest * request
     
    +BOOL inBackground
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_download_driver.png b/documentation/api-reference/interface_s_p_u_download_driver.png new file mode 100644 index 0000000..4192789 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_download_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_downloaded_update-members.html b/documentation/api-reference/interface_s_p_u_downloaded_update-members.html new file mode 100644 index 0000000..c534105 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_downloaded_update-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUDownloadedUpdate Member List
    +
    +
    + +

    This is the complete list of members for SPUDownloadedUpdate, including all inherited members.

    + + + + + + +
    downloadName (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
    initWithAppcastItem:secondaryAppcastItem:downloadName:temporaryDirectory: (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
    secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    temporaryDirectory (defined in SPUDownloadedUpdate)SPUDownloadedUpdate
    updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_downloaded_update.html b/documentation/api-reference/interface_s_p_u_downloaded_update.html new file mode 100644 index 0000000..a4437c3 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_downloaded_update.html @@ -0,0 +1,117 @@ + + + + + + + +Sparkle: SPUDownloadedUpdate Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUDownloadedUpdate Class Reference
    +
    +
    +
    +Inheritance diagram for SPUDownloadedUpdate:
    +
    +
    + + +<SPUResumableUpdate> + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithAppcastItem:secondaryAppcastItem:downloadName:temporaryDirectory:
     
    + + + + + + + + + + +

    +Properties

    +NSString * downloadName
     
    +NSString * temporaryDirectory
     
    - Properties inherited from <SPUResumableUpdate>
    +SUAppcastItemupdateItem
     
    +SUAppcastItemsecondaryUpdateItem
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_downloaded_update.png b/documentation/api-reference/interface_s_p_u_downloaded_update.png new file mode 100644 index 0000000..fbcefdb Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_downloaded_update.png differ diff --git a/documentation/api-reference/interface_s_p_u_informational_update-members.html b/documentation/api-reference/interface_s_p_u_informational_update-members.html new file mode 100644 index 0000000..9b76905 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_informational_update-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUInformationalUpdate Member List
    +
    +
    + +

    This is the complete list of members for SPUInformationalUpdate, including all inherited members.

    + + + + +
    initWithAppcastItem:secondaryAppcastItem: (defined in SPUInformationalUpdate)SPUInformationalUpdate
    secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_informational_update.html b/documentation/api-reference/interface_s_p_u_informational_update.html new file mode 100644 index 0000000..79be1f2 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_informational_update.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: SPUInformationalUpdate Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUInformationalUpdate Class Reference
    +
    +
    +
    +Inheritance diagram for SPUInformationalUpdate:
    +
    +
    + + +<SPUResumableUpdate> + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithAppcastItem:secondaryAppcastItem:
     
    + + + + + + +

    +Additional Inherited Members

    - Properties inherited from <SPUResumableUpdate>
    +SUAppcastItemupdateItem
     
    +SUAppcastItemsecondaryUpdateItem
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_informational_update.png b/documentation/api-reference/interface_s_p_u_informational_update.png new file mode 100644 index 0000000..dd758ff Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_informational_update.png differ diff --git a/documentation/api-reference/interface_s_p_u_installer_driver-members.html b/documentation/api-reference/interface_s_p_u_installer_driver-members.html new file mode 100644 index 0000000..329a489 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_installer_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUInstallerDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUInstallerDriver, including all inherited members.

    + + + + + + + + +
    abortInstall (defined in SPUInstallerDriver)SPUInstallerDriver
    cancelUpdate (defined in SPUInstallerDriver)SPUInstallerDriver
    checkIfApplicationInstallationRequiresAuthorizationWithReply: (defined in SPUInstallerDriver)SPUInstallerDriver
    extractDownloadedUpdate:silently:preventsInstallerInteraction:completion: (defined in SPUInstallerDriver)SPUInstallerDriver
    initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate: (defined in SPUInstallerDriver)SPUInstallerDriver
    installWithToolAndRelaunch:displayingUserInterface: (defined in SPUInstallerDriver)SPUInstallerDriver
    resumeInstallingUpdateWithUpdateItem:systemDomain: (defined in SPUInstallerDriver)SPUInstallerDriver
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_installer_driver.html b/documentation/api-reference/interface_s_p_u_installer_driver.html new file mode 100644 index 0000000..e9f853d --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_installer_driver.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUInstallerDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUInstallerDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUInstallerDriver:
    +
    +
    + +
    + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:updaterDelegate:delegate:
     
    +(void) - resumeInstallingUpdateWithUpdateItem:systemDomain:
     
    +(void) - checkIfApplicationInstallationRequiresAuthorizationWithReply:
     
    +(void) - extractDownloadedUpdate:silently:preventsInstallerInteraction:completion:
     
    +(void) - installWithToolAndRelaunch:displayingUserInterface:
     
    +(void) - cancelUpdate
     
    +(void) - abortInstall
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_installer_driver.png b/documentation/api-reference/interface_s_p_u_installer_driver.png new file mode 100644 index 0000000..da062ab Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_installer_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_local_cache_directory-members.html b/documentation/api-reference/interface_s_p_u_local_cache_directory-members.html new file mode 100644 index 0000000..2333a5e --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_local_cache_directory-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPULocalCacheDirectory Member List
    +
    +
    + +

    This is the complete list of members for SPULocalCacheDirectory, including all inherited members.

    + + + + +
    cachePathForBundleIdentifier: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
    createUniqueDirectoryInDirectory: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
    removeOldItemsInDirectory: (defined in SPULocalCacheDirectory)SPULocalCacheDirectorystatic
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_local_cache_directory.html b/documentation/api-reference/interface_s_p_u_local_cache_directory.html new file mode 100644 index 0000000..5a46c84 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_local_cache_directory.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPULocalCacheDirectory Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPULocalCacheDirectory Class Reference
    +
    +
    +
    +Inheritance diagram for SPULocalCacheDirectory:
    +
    +
    + +
    + + + + + + + + +

    +Class Methods

    +(NSString *) + cachePathForBundleIdentifier:
     
    +(void) + removeOldItemsInDirectory:
     
    +(NSString *_Nullable) + createUniqueDirectoryInDirectory:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_local_cache_directory.png b/documentation/api-reference/interface_s_p_u_local_cache_directory.png new file mode 100644 index 0000000..694e894 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_local_cache_directory.png differ diff --git a/documentation/api-reference/interface_s_p_u_probe_install_status-members.html b/documentation/api-reference/interface_s_p_u_probe_install_status-members.html new file mode 100644 index 0000000..0ba9688 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_probe_install_status-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUProbeInstallStatus Member List
    +
    +
    + +

    This is the complete list of members for SPUProbeInstallStatus, including all inherited members.

    + + + +
    probeInstallerInProgressForHostBundleIdentifier:completion: (defined in SPUProbeInstallStatus)SPUProbeInstallStatusstatic
    probeInstallerUpdateItemForHostBundleIdentifier:completion: (defined in SPUProbeInstallStatus)SPUProbeInstallStatusstatic
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_probe_install_status.html b/documentation/api-reference/interface_s_p_u_probe_install_status.html new file mode 100644 index 0000000..07ecc0c --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_probe_install_status.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SPUProbeInstallStatus Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUProbeInstallStatus Class Reference
    +
    +
    +
    +Inheritance diagram for SPUProbeInstallStatus:
    +
    +
    + +
    + + + + + + +

    +Class Methods

    +(void) + probeInstallerInProgressForHostBundleIdentifier:completion:
     
    +(void) + probeInstallerUpdateItemForHostBundleIdentifier:completion:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_probe_install_status.png b/documentation/api-reference/interface_s_p_u_probe_install_status.png new file mode 100644 index 0000000..3a172cc Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_probe_install_status.png differ diff --git a/documentation/api-reference/interface_s_p_u_probing_update_driver-members.html b/documentation/api-reference/interface_s_p_u_probing_update_driver-members.html new file mode 100644 index 0000000..d5bb7ad --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_probing_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUProbingUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUProbingUpdateDriver, including all inherited members.

    + + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    initWithHost:updater:updaterDelegate: (defined in SPUProbingUpdateDriver)SPUProbingUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_probing_update_driver.html b/documentation/api-reference/interface_s_p_u_probing_update_driver.html new file mode 100644 index 0000000..9e35d28 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_probing_update_driver.html @@ -0,0 +1,122 @@ + + + + + + + +Sparkle: SPUProbingUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUProbingUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUProbingUpdateDriver:
    +
    +
    + + +<SPUUpdateDriver> + +
    + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:updater:updaterDelegate:
     
    - Instance Methods inherited from <SPUUpdateDriver>
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + + +

    +Additional Inherited Members

    - Properties inherited from <SPUUpdateDriver>
    +BOOL showingUpdate
     
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_probing_update_driver.png b/documentation/api-reference/interface_s_p_u_probing_update_driver.png new file mode 100644 index 0000000..ab77c46 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_probing_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_release_notes_driver-members.html b/documentation/api-reference/interface_s_p_u_release_notes_driver-members.html new file mode 100644 index 0000000..2ca808e --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_release_notes_driver-members.html @@ -0,0 +1,88 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUReleaseNotesDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUReleaseNotesDriver, including all inherited members.

    + + + + + + + + + +
    completionHandler (defined in SPUReleaseNotesDriver)SPUReleaseNotesDriver
    downloadDriver (defined in SPUReleaseNotesDriver)SPUReleaseNotesDriver
    downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_release_notes_driver.html b/documentation/api-reference/interface_s_p_u_release_notes_driver.html new file mode 100644 index 0000000..c23aeb1 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_release_notes_driver.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: SPUReleaseNotesDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUReleaseNotesDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUReleaseNotesDriver:
    +
    +
    + + +<SPUDownloadDriverDelegate> + +
    + + + + + + +

    +Properties

    +SPUDownloadDriverdownloadDriver
     
    +void(^ completionHandler )(SPUDownloadData *_Nullable, NSError *_Nullable)
     
    + + + + + + + + + + + + + + +

    +Additional Inherited Members

    - Instance Methods inherited from <SPUDownloadDriverDelegate>
    +(void) - downloadDriverDidFailToDownloadFileWithError:
     
    +(void) - downloadDriverWillBeginDownload
     
    +(void) - downloadDriverDidDownloadUpdate:
     
    +(void) - downloadDriverDidDownloadData:
     
    +(void) - downloadDriverDidReceiveExpectedContentLength:
     
    +(void) - downloadDriverDidReceiveDataOfLength:
     
    +
    The documentation for this class was generated from the following file:
      +
    • Sparkle/SPUUIBasedUpdateDriver.m
    • +
    +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_release_notes_driver.png b/documentation/api-reference/interface_s_p_u_release_notes_driver.png new file mode 100644 index 0000000..42f728b Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_release_notes_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_scheduled_update_driver-members.html b/documentation/api-reference/interface_s_p_u_scheduled_update_driver-members.html new file mode 100644 index 0000000..7ac1ee4 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_scheduled_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUScheduledUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUScheduledUpdateDriver, including all inherited members.

    + + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUScheduledUpdateDriver)SPUScheduledUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_scheduled_update_driver.html b/documentation/api-reference/interface_s_p_u_scheduled_update_driver.html new file mode 100644 index 0000000..66c2f3a --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_scheduled_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUScheduledUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUScheduledUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUScheduledUpdateDriver:
    +
    +
    + + +<SPUUpdateDriver> + +
    + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
     
    - Instance Methods inherited from <SPUUpdateDriver>
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + + +

    +Additional Inherited Members

    - Properties inherited from <SPUUpdateDriver>
    +BOOL showingUpdate
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_scheduled_update_driver.png b/documentation/api-reference/interface_s_p_u_scheduled_update_driver.png new file mode 100644 index 0000000..3cfac47 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_scheduled_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_skipped_update-members.html b/documentation/api-reference/interface_s_p_u_skipped_update-members.html new file mode 100644 index 0000000..e977321 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_skipped_update-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUSkippedUpdate Member List
    +
    +
    + +

    This is the complete list of members for SPUSkippedUpdate, including all inherited members.

    + + + + + + + +
    clearSkippedUpdateForHost: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
    initWithMinorVersion:majorVersion: (defined in SPUSkippedUpdate)SPUSkippedUpdate
    majorVersion (defined in SPUSkippedUpdate)SPUSkippedUpdate
    minorVersion (defined in SPUSkippedUpdate)SPUSkippedUpdate
    skippedUpdateForHost: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
    skipUpdate:host: (defined in SPUSkippedUpdate)SPUSkippedUpdatestatic
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_skipped_update.html b/documentation/api-reference/interface_s_p_u_skipped_update.html new file mode 100644 index 0000000..35928b2 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_skipped_update.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: SPUSkippedUpdate Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUSkippedUpdate Class Reference
    +
    +
    +
    +Inheritance diagram for SPUSkippedUpdate:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithMinorVersion:majorVersion:
     
    + + + + + + + +

    +Class Methods

    +(nullable SPUSkippedUpdate *) + skippedUpdateForHost:
     
    +(void) + clearSkippedUpdateForHost:
     
    +(void) + skipUpdate:host:
     
    + + + + + +

    +Properties

    +NSString * minorVersion
     
    +NSString * majorVersion
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_skipped_update.png b/documentation/api-reference/interface_s_p_u_skipped_update.png new file mode 100644 index 0000000..7b5d4d2 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_skipped_update.png differ diff --git a/documentation/api-reference/interface_s_p_u_standard_updater_controller-members.html b/documentation/api-reference/interface_s_p_u_standard_updater_controller-members.html new file mode 100644 index 0000000..724a767 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_standard_updater_controller-members.html @@ -0,0 +1,89 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUStandardUpdaterController Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_p_u_standard_updater_controller.html b/documentation/api-reference/interface_s_p_u_standard_updater_controller.html new file mode 100644 index 0000000..2aaab35 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_standard_updater_controller.html @@ -0,0 +1,347 @@ + + + + + + + +Sparkle: SPUStandardUpdaterController Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUStandardUpdaterController Class Reference
    +
    +
    + +

    A controller class that instantiates a SPUUpdater and allows binding UI to it. + More...

    + +

    #import <SPUStandardUpdaterController.h>

    +
    +Inheritance diagram for SPUStandardUpdaterController:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (instancetype) - NS_UNAVAILABLE
     Create a new SPUStandardUpdaterController from a nib. More...
     
    (instancetype) - initWithUpdaterDelegate:userDriverDelegate:
     Create a new SPUStandardUpdaterController programmatically. More...
     
    (instancetype) - initWithStartingUpdater:updaterDelegate:userDriverDelegate:
     Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately. More...
     
    (void) - startUpdater
     Starts the updater if it has not already been started. More...
     
    (IBAction) - checkForUpdates:
     Explicitly checks for updates and displays a progress dialog while doing so. More...
     
    + + + + + + + + + + + + + +

    +Properties

    IBOutlet id< SPUUpdaterDelegateupdaterDelegate
     Interface builder outlet for the updater's delegate. More...
     
    IBOutlet id< SPUStandardUserDriverDelegateuserDriverDelegate
     Interface builder outlet for the user driver's delegate. More...
     
    SPUUpdaterupdater
     Accessible property for the updater. More...
     
    +SPUStandardUserDriveruserDriver
     Accessible property for the updater's user driver.
     
    +

    Detailed Description

    +

    A controller class that instantiates a SPUUpdater and allows binding UI to it.

    +

    This class can be instantiated in a nib or created programatically using initWithUpdaterDelegate:userDriverDelegate: or initWithStartingUpdater:updaterDelegate:userDriverDelegate:.

    +

    The controller's updater targets the application's main bundle and uses Sparkle's standard user interface. Typically, this class is used by sticking it as a custom NSObject subclass in an Interface Builder nib (probably in MainMenu) but it works well programatically too.

    +

    The controller creates an SPUUpdater instance and allows hooking up the check for updates action and handling menu item validation. It also allows hooking up the updater's and user driver's delegates.

    +

    If you need more control over what bundle you want to update or you want to provide a custom user interface (via SPUUserDriver), please use SPUUpdater directly instead.

    +

    Method Documentation

    + +

    ◆ checkForUpdates:

    + +
    +
    + + + + + + + + +
    - (IBAction) checkForUpdates: (nullable id) sender
    +
    + +

    Explicitly checks for updates and displays a progress dialog while doing so.

    +

    This method is meant for a main menu item. Connect any NSMenuItem to this action in Interface Builder or programmatically, and Sparkle will check for updates and report back its findings verbosely when it is invoked.

    +

    When the target/action of the menu item is set to this controller and this method, this controller also handles enabling/disabling the menu item by checking -[SPUUpdater canCheckForUpdates]

    +

    This action checks updates by invoking -[SPUUpdater checkForUpdates]

    + +
    +
    + +

    ◆ initWithStartingUpdater:updaterDelegate:userDriverDelegate:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (instancetype) initWithStartingUpdater: (BOOL) startUpdater
    updaterDelegate:(nullable id< SPUUpdaterDelegate >) updaterDelegate
    userDriverDelegate:(nullable id< SPUStandardUserDriverDelegate >) userDriverDelegate 
    +
    + +

    Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

    +

    You can specify whether or not you want to start the updater immediately. If you do not start the updater, you must invoke -[SPUStandardUpdaterController startUpdater] at a later time to start it.

    + +
    +
    + +

    ◆ initWithUpdaterDelegate:userDriverDelegate:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (instancetype) initWithUpdaterDelegate: (nullable id< SPUUpdaterDelegate >) updaterDelegate
    userDriverDelegate:(nullable id< SPUStandardUserDriverDelegate >) userDriverDelegate 
    +
    + +

    Create a new SPUStandardUpdaterController programmatically.

    +

    The updater is started automatically. See -[SPUStandardUpdaterController startUpdater] for more information.

    + +
    +
    + +

    ◆ NS_UNAVAILABLE

    + +
    +
    + + + + + + + +
    - (instancetype) NS_UNAVAILABLE
    +
    + +

    Create a new SPUStandardUpdaterController from a nib.

    +

    You cannot call this initializer directly. You must instantiate a SPUStandardUpdaterController inside of a nib (typically the MainMenu nib) to use it.

    +

    To create a SPUStandardUpdaterController programatically, use initWithUpdaterDelegate:userDriverDelegate: or initWithStartingUpdater:updaterDelegate:userDriverDelegate: instead.

    + +
    +
    + +

    ◆ startUpdater

    + +
    +
    + + + + + + + +
    - (void) startUpdater
    +
    + +

    Starts the updater if it has not already been started.

    +

    You should only call this method yourself if you opted out of starting the updater on initialization. Hence, do not call this yourself if you are instantiating this controller from a nib.

    +

    This invokes -[SPUUpdater startUpdater:]. If the application is misconfigured with Sparkle, an error is logged and an alert is shown to the user (after a few seconds) to contact the developer. If you want more control over this behavior, you can create your own SPUUpdater instead.

    + +
    +
    +

    Property Documentation

    + +

    ◆ updater

    + +
    +
    + + + + + +
    + + + + +
    - (SPUUpdater*) updater
    +
    +readnonatomicassign
    +
    + +

    Accessible property for the updater.

    +

    Some properties on the updater can be binded via KVO

    +

    When instantiated from a nib, don't perform update checks before the application has finished launching in a MainMenu nib (i.e applicationDidFinishLaunching:) or before the corresponding window/view controller has been loaded (i.e, windowDidLoad or viewDidLoad). The updater is not guaranteed to be started yet before these points.

    + +
    +
    + +

    ◆ updaterDelegate

    + +
    +
    + + + + + +
    + + + + +
    - (IBOutlet id<SPUUpdaterDelegate>) updaterDelegate
    +
    +readwritenonatomicweak
    +
    + +

    Interface builder outlet for the updater's delegate.

    +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    + +

    ◆ userDriverDelegate

    + +
    +
    + + + + + +
    + + + + +
    - (IBOutlet id<SPUStandardUserDriverDelegate>) userDriverDelegate
    +
    +readwritenonatomicweak
    +
    + +

    Interface builder outlet for the user driver's delegate.

    +

    This property should only be set using Interface Builder by creating a connection using the outlet.

    + +
    +
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_standard_updater_controller.png b/documentation/api-reference/interface_s_p_u_standard_updater_controller.png new file mode 100644 index 0000000..1e1bdf9 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_standard_updater_controller.png differ diff --git a/documentation/api-reference/interface_s_p_u_standard_user_driver-members.html b/documentation/api-reference/interface_s_p_u_standard_user_driver-members.html new file mode 100644 index 0000000..ce83b43 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_standard_user_driver-members.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUStandardUserDriver Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_p_u_standard_user_driver.html b/documentation/api-reference/interface_s_p_u_standard_user_driver.html new file mode 100644 index 0000000..acecca6 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_standard_user_driver.html @@ -0,0 +1,212 @@ + + + + + + + +Sparkle: SPUStandardUserDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUStandardUserDriver Class Reference
    +
    +
    + +

    Sparkle's standard built-in user driver for updater interactions. + More...

    + +

    #import <SPUStandardUserDriver.h>

    +
    +Inheritance diagram for SPUStandardUserDriver:
    +
    +
    + + +<SPUUserDriver> + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (instancetype) - initWithHostBundle:delegate:
     Initializes a Sparkle's standard user driver for user update interactions. More...
     
    +(instancetype) - NS_UNAVAILABLE
     Use initWithHostBundle:delegate: instead.
     
    - Instance Methods inherited from <SPUUserDriver>
    (void) - showUpdatePermissionRequest:reply:
     Show an updater permission request to the user. More...
     
    (void) - showUserInitiatedUpdateCheckWithCancellation:
     Show the user initating an update check. More...
     
    (void) - showUpdateFoundWithAppcastItem:state:reply:
     Show the user a new update is found. More...
     
    (void) - showUpdateReleaseNotesWithDownloadData:
     Show the user the release notes for the new update. More...
     
    (void) - showUpdateReleaseNotesFailedToDownloadWithError:
     Show the user that the new update's release notes could not be downloaded. More...
     
    (void) - showUpdateNotFoundWithError:acknowledgement:
     Show the user a new update was not found. More...
     
    (void) - showUpdaterError:acknowledgement:
     Show the user an update error occurred. More...
     
    (void) - showDownloadInitiatedWithCancellation:
     Show the user that downloading the new update initiated. More...
     
    (void) - showDownloadDidReceiveExpectedContentLength:
     Show the user the content length of the new update that will be downloaded. More...
     
    (void) - showDownloadDidReceiveDataOfLength:
     Show the user that the update download received more data. More...
     
    (void) - showDownloadDidStartExtractingUpdate
     Show the user that the update finished downloading and started extracting. More...
     
    (void) - showExtractionReceivedProgress:
     Show the user that the update is extracting with progress. More...
     
    (void) - showInstallingUpdate
     Show the user that the update is installing. More...
     
    (void) - showReadyToInstallAndRelaunch:
     Show the user that the update is ready to install & relaunch. More...
     
    (void) - showSendingTerminationSignal
     Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer. More...
     
    (void) - showUpdateInstalledAndRelaunched:acknowledgement:
     Show the user that the update installation finished. More...
     
    (void) - showUpdateInFocus
     Show the user the current presented update or its progress in utmost focus. More...
     
    (void) - dismissUpdateInstallation
     Dismiss the current update installation. More...
     
    +(void) - showUpdateNotFoundWithAcknowledgement:
     
    +(void) - showUpdateInstallationDidFinishWithAcknowledgement:
     
    +("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.") - __deprecated_msg
     
    +

    Detailed Description

    +

    Sparkle's standard built-in user driver for updater interactions.

    +

    Method Documentation

    + +

    ◆ initWithHostBundle:delegate:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (instancetype) initWithHostBundle: (NSBundle *) hostBundle
    delegate:(nullable id< SPUStandardUserDriverDelegate >) delegate 
    +
    + +

    Initializes a Sparkle's standard user driver for user update interactions.

    +
    Parameters
    + + + +
    hostBundleThe target bundle of the host that is being updated.
    delegateThe delegate to this user driver. Pass nil if you don't want to provide one.
    +
    +
    + +
    +
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_standard_user_driver.png b/documentation/api-reference/interface_s_p_u_standard_user_driver.png new file mode 100644 index 0000000..dec33ff Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_standard_user_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_u_i_based_update_driver-members.html b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver-members.html new file mode 100644 index 0000000..deffe61 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUIBasedUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUUIBasedUpdateDriver, including all inherited members.

    + + + + + + + + +
    abortUpdateWithError: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    initWithHost:applicationBundle:sparkleBundle:updater:userDriver:userInitiated:updaterDelegate:delegate: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    preflightForUpdatePermissionPreventingInstallerInteraction:reply: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    prepareCheckForUpdatesWithCompletion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    resumeUpdate:completion: (defined in SPUUIBasedUpdateDriver)SPUUIBasedUpdateDriver
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.html b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.html new file mode 100644 index 0000000..ae4876d --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.html @@ -0,0 +1,115 @@ + + + + + + + +Sparkle: SPUUIBasedUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUIBasedUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUUIBasedUpdateDriver:
    +
    +
    + +
    + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:userInitiated:updaterDelegate:delegate:
     
    +(void) - prepareCheckForUpdatesWithCompletion:
     
    +(void) - preflightForUpdatePermissionPreventingInstallerInteraction:reply:
     
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:inBackground:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdateWithError:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.png b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.png new file mode 100644 index 0000000..807c545 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_u_i_based_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_u_r_l_request-members.html b/documentation/api-reference/interface_s_p_u_u_r_l_request-members.html new file mode 100644 index 0000000..7f1fee6 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_u_r_l_request-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUURLRequest Member List
    +
    +
    + +

    This is the complete list of members for SPUURLRequest, including all inherited members.

    + + + +
    request (defined in SPUURLRequest)SPUURLRequest
    URLRequestWithRequest: (defined in SPUURLRequest)SPUURLRequeststatic
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_u_r_l_request.html b/documentation/api-reference/interface_s_p_u_u_r_l_request.html new file mode 100644 index 0000000..a5b92c4 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_u_r_l_request.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: SPUURLRequest Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUURLRequest Class Reference
    +
    +
    +
    +Inheritance diagram for SPUURLRequest:
    +
    +
    + +
    + + + + +

    +Class Methods

    +(instancetype) + URLRequestWithRequest:
     
    + + + +

    +Properties

    +NSURLRequest * request
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_u_r_l_request.png b/documentation/api-reference/interface_s_p_u_u_r_l_request.png new file mode 100644 index 0000000..ad0b20a Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_u_r_l_request.png differ diff --git a/documentation/api-reference/interface_s_p_u_update_permission_request-members.html b/documentation/api-reference/interface_s_p_u_update_permission_request-members.html new file mode 100644 index 0000000..92a601c --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_update_permission_request-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUpdatePermissionRequest Member List
    +
    +
    + +

    This is the complete list of members for SPUUpdatePermissionRequest, including all inherited members.

    + + + +
    initWithSystemProfile:SPUUpdatePermissionRequest
    systemProfileSPUUpdatePermissionRequest
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_update_permission_request.html b/documentation/api-reference/interface_s_p_u_update_permission_request.html new file mode 100644 index 0000000..3a4f06c --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_update_permission_request.html @@ -0,0 +1,139 @@ + + + + + + + +Sparkle: SPUUpdatePermissionRequest Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUpdatePermissionRequest Class Reference
    +
    +
    + +

    This class represents information needed to make a permission request for checking updates. + More...

    + +

    #import <SPUUpdatePermissionRequest.h>

    +
    +Inheritance diagram for SPUUpdatePermissionRequest:
    +
    +
    + +
    + + + + + +

    +Instance Methods

    (instancetype) - initWithSystemProfile:
     Initializes a new update permission request instance. More...
     
    + + + + +

    +Properties

    +NSArray< NSDictionary< NSString *, NSString * > * > * systemProfile
     A read-only property for the user's system profile.
     
    +

    Detailed Description

    +

    This class represents information needed to make a permission request for checking updates.

    +

    Method Documentation

    + +

    ◆ initWithSystemProfile:

    + +
    +
    + + + + + + + + +
    - (instancetype) initWithSystemProfile: (NSArray<NSDictionary<NSString *, NSString *> *> *) systemProfile
    +
    + +

    Initializes a new update permission request instance.

    +
    Parameters
    + + +
    systemProfileThe system profile information.
    +
    +
    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_update_permission_request.png b/documentation/api-reference/interface_s_p_u_update_permission_request.png new file mode 100644 index 0000000..f2c9e80 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_update_permission_request.png differ diff --git a/documentation/api-reference/interface_s_p_u_updater-members.html b/documentation/api-reference/interface_s_p_u_updater-members.html new file mode 100644 index 0000000..a2d4465 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUpdater Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater.html b/documentation/api-reference/interface_s_p_u_updater.html new file mode 100644 index 0000000..fc30835 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater.html @@ -0,0 +1,645 @@ + + + + + + + +Sparkle: SPUUpdater Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUpdater Class Reference
    +
    +
    + +

    The main API in Sparkle for controlling the update mechanism. + More...

    + +

    #import <SPUUpdater.h>

    +
    +Inheritance diagram for SPUUpdater:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (instancetype) - initWithHostBundle:applicationBundle:userDriver:delegate:
     Initializes a new SPUUpdater instance. More...
     
    (instancetype) - NS_UNAVAILABLE
     Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead. More...
     
    (BOOL) - startUpdater:
     Starts the updater. More...
     
    (void) - checkForUpdates
     Checks for updates, and displays progress while doing so if needed. More...
     
    (void) - checkForUpdatesInBackground
     Checks for updates, but does not display any UI unless an update is found. More...
     
    (void) - checkForUpdateInformation
     Begins a "probing" check for updates which will not actually offer to update to that version. More...
     
    (void) - setFeedURL:
     Set the URL of the appcast used to download update information. More...
     
    (void) - resetUpdateCycle
     Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks. More...
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Properties

    BOOL canCheckForUpdates
     A property indicating whether or not updates can be checked by the user. More...
     
    BOOL sessionInProgress
     A property indicating whether or not an update session is in progress. More...
     
    BOOL automaticallyChecksForUpdates
     A property indicating whether or not to check for updates automatically. More...
     
    NSTimeInterval updateCheckInterval
     A property indicating the current automatic update check interval. More...
     
    BOOL automaticallyDownloadsUpdates
     A property indicating whether or not updates can be automatically downloaded in the background. More...
     
    NSURL * feedURL
     The URL of the appcast used to download update information. More...
     
    +NSBundle * hostBundle
     The host bundle that is being updated.
     
    +NSBundle * sparkleBundle
     The bundle this class (SPUUpdater) is loaded into.
     
    NSString * userAgentString
     The user agent used when checking for updates. More...
     
    NSDictionary * httpHeaders
     The HTTP headers used when checking for updates. More...
     
    BOOL sendsSystemProfile
     A property indicating whether or not the user's system profile information is sent when checking for updates. More...
     
    NSDate * lastUpdateCheckDate
     Returns the date of last update check. More...
     
    +NSArray< NSDictionary< NSString *, NSString * > * > * systemProfileArray
     The system profile information that is sent when checking for updates.
     
    +

    Detailed Description

    +

    The main API in Sparkle for controlling the update mechanism.

    +

    This class is used to configure the update parameters as well as manually and automatically schedule and control checks for updates.

    +

    Method Documentation

    + +

    ◆ checkForUpdateInformation

    + +
    +
    + + + + + + + +
    - (void) checkForUpdateInformation
    +
    + +

    Begins a "probing" check for updates which will not actually offer to update to that version.

    +

    However, the delegate methods updater:didFindValidUpdate: (SPUUpdaterDelegate-p) and updaterDidNotFindUpdate: (SPUUpdaterDelegate-p) will be called, so you can use that information in your UI.

    +

    Updates that have been skipped by the user will not be found.

    + +
    +
    + +

    ◆ checkForUpdates

    + +
    +
    + + + + + + + +
    - (void) checkForUpdates
    +
    + +

    Checks for updates, and displays progress while doing so if needed.

    +

    This is meant for users initiating a new update check or checking the current update progress.

    +

    If an update hasn't started, the user may be shown that a new check for updates is occurring. If an update has already been downloaded or begun installing, the user may be presented to install that update. If the user is already being presented with an update, that update will be shown to the user in active focus.

    +

    This will find updates that the user has previously opted into skipping.

    +

    See canCheckForUpdates property which can determine if this method may be invoked.

    + +
    +
    + +

    ◆ checkForUpdatesInBackground

    + +
    +
    + + + + + + + +
    - (void) checkForUpdatesInBackground
    +
    + +

    Checks for updates, but does not display any UI unless an update is found.

    +

    This is meant for programmatically initating a check for updates. That is, it will display no UI unless it finds an update, in which case it proceeds as usual. This will not find updates that the user has opted into skipping.

    +

    Note if there is no resumable update found, and automated updating is turned on, the update will be downloaded in the background without disrupting the user.

    + +
    +
    + +

    ◆ initWithHostBundle:applicationBundle:userDriver:delegate:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    - (instancetype) initWithHostBundle: (NSBundle *) hostBundle
    applicationBundle:(NSBundle *) applicationBundle
    userDriver:(id< SPUUserDriver >) userDriver
    delegate:(id< SPUUpdaterDelegate > _Nullable) delegate 
    +
    + +

    Initializes a new SPUUpdater instance.

    +

    This does not start the updater. To start it, see -[SPUUpdater startUpdater:]

    +

    Note that this is a normal initializer and doesn't implement the singleton pattern (i.e, instances aren't cached, so no surprises) This also means that updater instances can be deallocated, and that they will be torn down properly.

    +

    Related: See SPUStandardUpdaterController which wraps a SPUUpdater instance and is suitable for instantiating in nib files

    +
    Parameters
    + + + + + +
    hostBundleThe bundle that should be targetted for updating. This must not be nil.
    applicationBundleThe application bundle that should be waited for termination and relaunched (unless overridden). Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle.
    userDriverThe user driver that Sparkle uses for user update interaction
    delegateThe delegate for SPUUpdater. This may be nil.
    +
    +
    + +
    +
    + +

    ◆ NS_UNAVAILABLE

    + +
    +
    + + + + + + + +
    - (instancetype) NS_UNAVAILABLE
    +
    + +

    Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

    +

    If you want to drop an updater into a nib, use SPUStandardUpdaterController.

    + +
    +
    + +

    ◆ resetUpdateCycle

    + +
    +
    + + + + + + + +
    - (void) resetUpdateCycle
    +
    + +

    Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

    +

    This call does not change the date of the next check, but only the internal timer.

    + +
    +
    + +

    ◆ setFeedURL:

    + +
    +
    + + + + + + + + +
    - (void) setFeedURL: (NSURL *_Nullable) feedURL
    +
    + +

    Set the URL of the appcast used to download update information.

    +

    Using this method is discouraged.

    +

    Setting this property will persist in the host bundle's user defaults. To avoid this, you should consider instead implementing -[SPUUpdaterDelegate feedURLStringForUpdater:]

    +

    Passing nil will remove any feed URL that has been set in the host bundle's user defaults.

    +

    For beta updates, you may consider migrating to -[SPUUpdaterDelegate allowedChannelsForUpdater:] in the future.

    +

    This method must be called on the main thread; calls from background threads will have no effect.

    + +
    +
    + +

    ◆ startUpdater:

    + +
    +
    + + + + + + + + +
    - (BOOL) startUpdater: (NSError *__autoreleasing *) error
    +
    + +

    Starts the updater.

    +

    This method checks if Sparkle is configured properly. A valid feed URL should be set before this method is invoked. Other properties of this SPUUpdater instance can be set before this method is invoked as well, such as automatic update checks.

    +

    If the configuration is valid, an update cycle is started in the next main runloop cycle. During this cycle, a permission prompt may be brought up (if needed) for checking if the user wants automatic update checking. Otherwise if automatic update checks are enabled, a scheduled update alert may be brought up if enough time has elapsed since the last check.

    +

    After starting the updater and before the next runloop cycle, one of -checkForUpdates, -checkForUpdatesInBackground, or -checkForUpdateInformation can be invoked. This may be useful if you want to check for updates immediately or without showing a permission prompt.

    +

    If the updater cannot be started (i.e, due to a configuration issue in the application), you may want to fall back appropriately. For example, the standard updater controller (SPUStandardUpdaterController) alerts the user that the app is misconfigured and to contact the developer.

    +

    This must be called on the main thread.

    +
    Parameters
    + + +
    errorThe error that is populated if this method fails. Pass NULL if not interested in the error information.
    +
    +
    +
    Returns
    YES if the updater started otherwise NO with a populated error
    + +
    +
    +

    Property Documentation

    + +

    ◆ automaticallyChecksForUpdates

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) automaticallyChecksForUpdates
    +
    +readwritenonatomicassign
    +
    + +

    A property indicating whether or not to check for updates automatically.

    +

    Setting this property will persist in the host bundle's user defaults. The update schedule cycle will be reset in a short delay after the property's new value is set. This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    + +

    ◆ automaticallyDownloadsUpdates

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) automaticallyDownloadsUpdates
    +
    +readwritenonatomicassign
    +
    + +

    A property indicating whether or not updates can be automatically downloaded in the background.

    +

    Note that the developer can disallow automatic downloading of updates from being enabled. In this case, -automaticallyDownloadsUpdates will return NO regardless of how this property is set.

    +

    Setting this property will persist in the host bundle's user defaults.

    + +
    +
    + +

    ◆ canCheckForUpdates

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) canCheckForUpdates
    +
    +readnonatomicassign
    +
    + +

    A property indicating whether or not updates can be checked by the user.

    +

    An update check can be made by the user when an update session isn't in progress, or when an update or its progress is being shown to the user.

    +

    This property is suitable to use for menu item validation for seeing if -checkForUpdates can be invoked.

    +

    Note this property does not reflect whether or not an update session is in progress. Please see sessionInProgress property instead.

    + +
    +
    + +

    ◆ feedURL

    + +
    +
    + + + + + +
    + + + + +
    - (NSURL*) feedURL
    +
    +readnonatomicassign
    +
    + +

    The URL of the appcast used to download update information.

    +

    If the updater's delegate implements -[SPUUpdaterDelegate feedURLStringForUpdater:], this will return that feed URL. Otherwise if the feed URL has been set before, the feed URL returned will be retrieved from the host bundle's user defaults. Otherwise the feed URL in the host bundle's Info.plist will be returned. If no feed URL can be retrieved, returns nil.

    +

    This property must be called on the main thread; calls from background threads will return nil.

    + +
    +
    + +

    ◆ httpHeaders

    + +
    +
    + + + + + +
    + + + + +
    - (NSDictionary*) httpHeaders
    +
    +readwritenonatomiccopy
    +
    + +

    The HTTP headers used when checking for updates.

    +

    The keys of this dictionary are HTTP header fields (NSString) and values are corresponding values (NSString)

    + +
    +
    + +

    ◆ lastUpdateCheckDate

    + +
    +
    + + + + + +
    + + + + +
    - (NSDate*) lastUpdateCheckDate
    +
    +readnonatomiccopy
    +
    + +

    Returns the date of last update check.

    +
    Returns
    nil if no check has been performed.
    + +
    +
    + +

    ◆ sendsSystemProfile

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) sendsSystemProfile
    +
    +readwritenonatomicassign
    +
    + +

    A property indicating whether or not the user's system profile information is sent when checking for updates.

    +

    Setting this property will persist in the host bundle's user defaults.

    + +
    +
    + +

    ◆ sessionInProgress

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) sessionInProgress
    +
    +readnonatomicassign
    +
    + +

    A property indicating whether or not an update session is in progress.

    +

    An update session is in progress when the appcast is being downloaded, an update is being downloaded, an update is being shown, update permission is being requested, or the installer is being started. An active session is when Sparkle's fired scheduler is running.

    +

    Note an update session may be inactive even though Sparkle's installer (ran as a separate process) may be running, or even though the update has been downloaded but the installation has been deferred. In both of these cases, a new update session may be activated with the update resumed at a later point (automatically or manually).

    +

    See also canCheckForUpdates property which is more suited for menu item validation.

    + +
    +
    + +

    ◆ updateCheckInterval

    + +
    +
    + + + + + +
    + + + + +
    - (NSTimeInterval) updateCheckInterval
    +
    +readwritenonatomicassign
    +
    + +

    A property indicating the current automatic update check interval.

    +

    Setting this property will persist in the host bundle's user defaults. The update schedule cycle will be reset in a short delay after the property's new value is set. This is to allow reverting this property without kicking off a schedule change immediately

    + +
    +
    + +

    ◆ userAgentString

    + +
    +
    + + + + + +
    + + + + +
    - (NSString*) userAgentString
    +
    +readwritenonatomiccopy
    +
    + +

    The user agent used when checking for updates.

    +

    The default implementation can be overrided.

    + +
    +
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater.png b/documentation/api-reference/interface_s_p_u_updater.png new file mode 100644 index 0000000..2fa808f Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_updater.png differ diff --git a/documentation/api-reference/interface_s_p_u_updater_cycle-members.html b/documentation/api-reference/interface_s_p_u_updater_cycle-members.html new file mode 100644 index 0000000..31cc075 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_cycle-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUpdaterCycle Member List
    +
    +
    + +

    This is the complete list of members for SPUUpdaterCycle, including all inherited members.

    + + + + +
    cancelNextUpdateCycle (defined in SPUUpdaterCycle)SPUUpdaterCycle
    initWithDelegate: (defined in SPUUpdaterCycle)SPUUpdaterCycle
    resetUpdateCycleAfterDelay (defined in SPUUpdaterCycle)SPUUpdaterCycle
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_cycle.html b/documentation/api-reference/interface_s_p_u_updater_cycle.html new file mode 100644 index 0000000..5277dbc --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_cycle.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPUUpdaterCycle Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUpdaterCycle Class Reference
    +
    +
    +
    +Inheritance diagram for SPUUpdaterCycle:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithDelegate:
     
    +(void) - resetUpdateCycleAfterDelay
     
    +(void) - cancelNextUpdateCycle
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_cycle.png b/documentation/api-reference/interface_s_p_u_updater_cycle.png new file mode 100644 index 0000000..b1aea47 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_updater_cycle.png differ diff --git a/documentation/api-reference/interface_s_p_u_updater_settings-members.html b/documentation/api-reference/interface_s_p_u_updater_settings-members.html new file mode 100644 index 0000000..2343386 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_settings-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUpdaterSettings Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_settings.html b/documentation/api-reference/interface_s_p_u_updater_settings.html new file mode 100644 index 0000000..9316f6d --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_settings.html @@ -0,0 +1,154 @@ + + + + + + + +Sparkle: SPUUpdaterSettings Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUpdaterSettings Class Reference
    +
    +
    + +

    This class can be used for reading certain updater settings. + More...

    + +

    #import <SPUUpdaterSettings.h>

    +
    +Inheritance diagram for SPUUpdaterSettings:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithHostBundle:
     
    + + + + + + + + + + + + + + + + +

    +Properties

    +BOOL automaticallyChecksForUpdates
     Indicates whether or not automatic update checks are enabled.
     
    +NSTimeInterval updateCheckInterval
     The regular update check interval.
     
    +BOOL allowsAutomaticUpdates
     Indicates whether or not automatically downloading updates is allowed to be turned on by the user.
     
    BOOL automaticallyDownloadsUpdates
     Indicates whether or not automatically downloading updates is enabled by the user or developer. More...
     
    +BOOL sendsSystemProfile
     Indicates whether or not anonymous system profile information is sent when checking for updates.
     
    +

    Detailed Description

    +

    This class can be used for reading certain updater settings.

    +

    It retrieves the settings by first looking into the host's user defaults. If the setting is not found in there, then the host's Info.plist file is looked at.

    +

    Property Documentation

    + +

    ◆ automaticallyDownloadsUpdates

    + +
    +
    + + + + + +
    + + + + +
    - (BOOL) automaticallyDownloadsUpdates
    +
    +readnonatomicassign
    +
    + +

    Indicates whether or not automatically downloading updates is enabled by the user or developer.

    +

    Note this does not indicate whether or not automatic downloading of updates is allowable. See -allowsAutomaticUpdates property for that.

    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_settings.png b/documentation/api-reference/interface_s_p_u_updater_settings.png new file mode 100644 index 0000000..81b7772 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_updater_settings.png differ diff --git a/documentation/api-reference/interface_s_p_u_updater_timer-members.html b/documentation/api-reference/interface_s_p_u_updater_timer-members.html new file mode 100644 index 0000000..166fa40 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_timer-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUpdaterTimer Member List
    +
    +
    + +

    This is the complete list of members for SPUUpdaterTimer, including all inherited members.

    + + + + +
    initWithDelegate: (defined in SPUUpdaterTimer)SPUUpdaterTimer
    invalidate (defined in SPUUpdaterTimer)SPUUpdaterTimer
    startAndFireAfterDelay: (defined in SPUUpdaterTimer)SPUUpdaterTimer
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_timer.html b/documentation/api-reference/interface_s_p_u_updater_timer.html new file mode 100644 index 0000000..8049091 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_updater_timer.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SPUUpdaterTimer Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUpdaterTimer Class Reference
    +
    +
    +
    +Inheritance diagram for SPUUpdaterTimer:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithDelegate:
     
    +(void) - startAndFireAfterDelay:
     
    +(void) - invalidate
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_updater_timer.png b/documentation/api-reference/interface_s_p_u_updater_timer.png new file mode 100644 index 0000000..b7b0609 Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_updater_timer.png differ diff --git a/documentation/api-reference/interface_s_p_u_user_initiated_update_driver-members.html b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver-members.html new file mode 100644 index 0000000..6cf8f9f --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUserInitiatedUpdateDriver Member List
    +
    +
    + +

    This is the complete list of members for SPUUserInitiatedUpdateDriver, including all inherited members.

    + + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate: (defined in SPUUserInitiatedUpdateDriver)SPUUserInitiatedUpdateDriver
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.html b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.html new file mode 100644 index 0000000..3f23423 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: SPUUserInitiatedUpdateDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUserInitiatedUpdateDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SPUUserInitiatedUpdateDriver:
    +
    +
    + + +<SPUUpdateDriver> + +
    + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:applicationBundle:sparkleBundle:updater:userDriver:updaterDelegate:
     
    - Instance Methods inherited from <SPUUpdateDriver>
    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + + +

    +Additional Inherited Members

    - Properties inherited from <SPUUpdateDriver>
    +BOOL showingUpdate
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.png b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.png new file mode 100644 index 0000000..60543da Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_user_initiated_update_driver.png differ diff --git a/documentation/api-reference/interface_s_p_u_user_update_state-members.html b/documentation/api-reference/interface_s_p_u_user_update_state-members.html new file mode 100644 index 0000000..7562f68 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_user_update_state-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SPUUserUpdateState Member List
    +
    +
    + +

    This is the complete list of members for SPUUserUpdateState, including all inherited members.

    + + + + + +
    initWithStage:userInitiated: (defined in SPUUserUpdateState)SPUUserUpdateState(Private)
    NS_UNAVAILABLE (defined in SPUUserUpdateState)SPUUserUpdateState
    stage (defined in SPUUserUpdateState)SPUUserUpdateState
    userInitiated (defined in SPUUserUpdateState)SPUUserUpdateState
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_user_update_state.html b/documentation/api-reference/interface_s_p_u_user_update_state.html new file mode 100644 index 0000000..eb36762 --- /dev/null +++ b/documentation/api-reference/interface_s_p_u_user_update_state.html @@ -0,0 +1,109 @@ + + + + + + + +Sparkle: SPUUserUpdateState Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SPUUserUpdateState Class Reference
    +
    +
    +
    +Inheritance diagram for SPUUserUpdateState:
    +
    +
    + +
    + + + + + + +

    +Instance Methods

    +(instancetype) - NS_UNAVAILABLE
     
    +(instancetype) - initWithStage:userInitiated:
     
    + + + + + +

    +Properties

    +SPUUserUpdateStage stage
     
    +BOOL userInitiated
     
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_p_u_user_update_state.png b/documentation/api-reference/interface_s_p_u_user_update_state.png new file mode 100644 index 0000000..9a2a23c Binary files /dev/null and b/documentation/api-reference/interface_s_p_u_user_update_state.png differ diff --git a/documentation/api-reference/interface_s_u_appcast-members.html b/documentation/api-reference/interface_s_u_appcast-members.html new file mode 100644 index 0000000..1e0f26b --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUAppcast Member List
    +
    +
    + +

    This is the complete list of members for SUAppcast, including all inherited members.

    + + + + +
    copyByFilteringItems: (defined in SUAppcast)SUAppcast(Private)
    initWithXMLData:relativeToURL:stateResolver:error: (defined in SUAppcast)SUAppcast(Private)
    items (defined in SUAppcast)SUAppcast
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast.html b/documentation/api-reference/interface_s_u_appcast.html new file mode 100644 index 0000000..50c6329 --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: SUAppcast Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUAppcast Class Reference
    +
    +
    +
    +Inheritance diagram for SUAppcast:
    +
    +
    + +
    + + + + + + +

    +Instance Methods

    +(nullable instancetype) - initWithXMLData:relativeToURL:stateResolver:error:
     
    +(SUAppcast *) - copyByFilteringItems:
     
    + + + +

    +Properties

    +NSArray< SUAppcastItem * > * items
     
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast.png b/documentation/api-reference/interface_s_u_appcast.png new file mode 100644 index 0000000..da34501 Binary files /dev/null and b/documentation/api-reference/interface_s_u_appcast.png differ diff --git a/documentation/api-reference/interface_s_u_appcast_driver-members.html b/documentation/api-reference/interface_s_u_appcast_driver-members.html new file mode 100644 index 0000000..554ab1b --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast_driver-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUAppcastDriver Member List
    +
    +
    + +

    This is the complete list of members for SUAppcastDriver, including all inherited members.

    + + + + +
    cleanup: (defined in SUAppcastDriver)SUAppcastDriver
    initWithHost:updater:updaterDelegate:delegate: (defined in SUAppcastDriver)SUAppcastDriver
    loadAppcastFromURL:userAgent:httpHeaders:inBackground: (defined in SUAppcastDriver)SUAppcastDriver
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast_driver.html b/documentation/api-reference/interface_s_u_appcast_driver.html new file mode 100644 index 0000000..b028ac5 --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast_driver.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUAppcastDriver Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUAppcastDriver Class Reference
    +
    +
    +
    +Inheritance diagram for SUAppcastDriver:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:updater:updaterDelegate:delegate:
     
    +(void) - loadAppcastFromURL:userAgent:httpHeaders:inBackground:
     
    +(void) - cleanup:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast_driver.png b/documentation/api-reference/interface_s_u_appcast_driver.png new file mode 100644 index 0000000..61cdf86 Binary files /dev/null and b/documentation/api-reference/interface_s_u_appcast_driver.png differ diff --git a/documentation/api-reference/interface_s_u_appcast_item-members.html b/documentation/api-reference/interface_s_u_appcast_item-members.html new file mode 100644 index 0000000..07b6002 --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast_item-members.html @@ -0,0 +1,113 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUAppcastItem Member List
    +
    +
    + +

    This is the complete list of members for SUAppcastItem, including all inherited members.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    channel (defined in SUAppcastItem)SUAppcastItem
    contentLength (defined in SUAppcastItem)SUAppcastItem
    criticalUpdate (defined in SUAppcastItem)SUAppcastItem
    date (defined in SUAppcastItem)SUAppcastItem
    dateString (defined in SUAppcastItem)SUAppcastItem
    deltaUpdate (defined in SUAppcastItem)SUAppcastItem
    deltaUpdates (defined in SUAppcastItem)SUAppcastItem
    displayVersionString (defined in SUAppcastItem)SUAppcastItem
    emptyAppcastItem (defined in SUAppcastItem)SUAppcastItemstatic
    fileURL (defined in SUAppcastItem)SUAppcastItem
    informationOnlyUpdate (defined in SUAppcastItem)SUAppcastItem
    infoURL (defined in SUAppcastItem)SUAppcastItem
    initWithDictionary: (defined in SUAppcastItem)SUAppcastItem
    initWithDictionary:failureReason: (defined in SUAppcastItem)SUAppcastItem
    initWithDictionary:relativeToURL:failureReason: (defined in SUAppcastItem)SUAppcastItem
    initWithDictionary:relativeToURL:stateResolver:failureReason:SUAppcastItem(Private)
    installationType (defined in SUAppcastItem)SUAppcastItem
    itemDescription (defined in SUAppcastItem)SUAppcastItem
    macOsUpdate (defined in SUAppcastItem)SUAppcastItem
    majorUpgrade (defined in SUAppcastItem)SUAppcastItem
    maximumOperatingSystemVersionIsOK (defined in SUAppcastItem)SUAppcastItem
    maximumSystemVersion (defined in SUAppcastItem)SUAppcastItem
    minimumAutoupdateVersion (defined in SUAppcastItem)SUAppcastItem
    minimumOperatingSystemVersionIsOK (defined in SUAppcastItem)SUAppcastItem
    minimumSystemVersion (defined in SUAppcastItem)SUAppcastItem
    NS_UNAVAILABLE (defined in SUAppcastItem)SUAppcastItem
    osString (defined in SUAppcastItem)SUAppcastItem
    phasedRolloutInterval (defined in SUAppcastItem)SUAppcastItem
    propertiesDictionary (defined in SUAppcastItem)SUAppcastItem
    releaseNotesURL (defined in SUAppcastItem)SUAppcastItem
    signatures (defined in SUAppcastItem)SUAppcastItem
    title (defined in SUAppcastItem)SUAppcastItem
    versionString (defined in SUAppcastItem)SUAppcastItem
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast_item.html b/documentation/api-reference/interface_s_u_appcast_item.html new file mode 100644 index 0000000..e74258c --- /dev/null +++ b/documentation/api-reference/interface_s_u_appcast_item.html @@ -0,0 +1,247 @@ + + + + + + + +Sparkle: SUAppcastItem Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUAppcastItem Class Reference
    +
    +
    +
    +Inheritance diagram for SUAppcastItem:
    +
    +
    + +
    + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - NS_UNAVAILABLE
     
    +(nullable instancetype) - initWithDictionary:
     
    +(nullable instancetype) - initWithDictionary:failureReason:
     
    +(nullable instancetype) - initWithDictionary:relativeToURL:failureReason:
     
    (nullable instancetype) - initWithDictionary:relativeToURL:stateResolver:failureReason:
     Initializes with data from a dictionary provided by the RSS class and state resolver. More...
     
    + + + +

    +Class Methods

    +(instancetype) + emptyAppcastItem
     
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Properties

    +NSString * title
     
    +NSString * dateString
     
    +NSDate * date
     
    +NSString * itemDescription
     
    +NSURL * releaseNotesURL
     
    +SUSignaturessignatures
     
    +NSString * minimumSystemVersion
     
    +NSString * maximumSystemVersion
     
    +NSURL * fileURL
     
    +uint64_t contentLength
     
    +NSString * versionString
     
    +NSString * osString
     
    +NSString * displayVersionString
     
    +NSDictionary * deltaUpdates
     
    +NSURL * infoURL
     
    +NSNumber * phasedRolloutInterval
     
    +NSString * installationType
     
    +NSString * minimumAutoupdateVersion
     
    +NSString * channel
     
    +BOOL deltaUpdate
     
    +BOOL criticalUpdate
     
    +BOOL majorUpgrade
     
    +BOOL macOsUpdate
     
    +BOOL informationOnlyUpdate
     
    +BOOL minimumOperatingSystemVersionIsOK
     
    +BOOL maximumOperatingSystemVersionIsOK
     
    +NSDictionary * propertiesDictionary
     
    +

    Method Documentation

    + +

    ◆ initWithDictionary:relativeToURL:stateResolver:failureReason:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    - (nullable instancetype) initWithDictionary: (NSDictionary *) dict
    relativeToURL:(NSURL *_Nullable) appcastURL
    stateResolver:(SPUAppcastItemStateResolver *) stateResolver
    failureReason:(NSString *_Nullable __autoreleasing *_Nullable) error 
    +
    + +

    Initializes with data from a dictionary provided by the RSS class and state resolver.

    +

    This initializer method is intended to be marked "private" and discouraged from public usage. This method is available however. Talk to us to describe your use case and if you need to construct appcast items yourself.

    + +

    Provided by category SUAppcastItem(Private).

    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_appcast_item.png b/documentation/api-reference/interface_s_u_appcast_item.png new file mode 100644 index 0000000..a7cf338 Binary files /dev/null and b/documentation/api-reference/interface_s_u_appcast_item.png differ diff --git a/documentation/api-reference/interface_s_u_application_info-members.html b/documentation/api-reference/interface_s_u_application_info-members.html new file mode 100644 index 0000000..58d0c1c --- /dev/null +++ b/documentation/api-reference/interface_s_u_application_info-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUApplicationInfo Member List
    +
    +
    + +

    This is the complete list of members for SUApplicationInfo, including all inherited members.

    + + + +
    bestIconForHost: (defined in SUApplicationInfo)SUApplicationInfostatic
    isBackgroundApplication: (defined in SUApplicationInfo)SUApplicationInfostatic
    + + + + diff --git a/documentation/api-reference/interface_s_u_application_info.html b/documentation/api-reference/interface_s_u_application_info.html new file mode 100644 index 0000000..4837181 --- /dev/null +++ b/documentation/api-reference/interface_s_u_application_info.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SUApplicationInfo Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUApplicationInfo Class Reference
    +
    +
    +
    +Inheritance diagram for SUApplicationInfo:
    +
    +
    + +
    + + + + + + +

    +Class Methods

    +(BOOL) + isBackgroundApplication:
     
    +(NSImage *) + bestIconForHost:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_application_info.png b/documentation/api-reference/interface_s_u_application_info.png new file mode 100644 index 0000000..8b5ebdd Binary files /dev/null and b/documentation/api-reference/interface_s_u_application_info.png differ diff --git a/documentation/api-reference/interface_s_u_bundle_icon-members.html b/documentation/api-reference/interface_s_u_bundle_icon-members.html new file mode 100644 index 0000000..c155df9 --- /dev/null +++ b/documentation/api-reference/interface_s_u_bundle_icon-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUBundleIcon Member List
    +
    +
    + +

    This is the complete list of members for SUBundleIcon, including all inherited members.

    + + +
    iconURLForHost: (defined in SUBundleIcon)SUBundleIconstatic
    + + + + diff --git a/documentation/api-reference/interface_s_u_bundle_icon.html b/documentation/api-reference/interface_s_u_bundle_icon.html new file mode 100644 index 0000000..b53188c --- /dev/null +++ b/documentation/api-reference/interface_s_u_bundle_icon.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: SUBundleIcon Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUBundleIcon Class Reference
    +
    +
    +
    +Inheritance diagram for SUBundleIcon:
    +
    +
    + +
    + + + + +

    +Class Methods

    +(NSURL *_Nullable) + iconURLForHost:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_bundle_icon.png b/documentation/api-reference/interface_s_u_bundle_icon.png new file mode 100644 index 0000000..344791b Binary files /dev/null and b/documentation/api-reference/interface_s_u_bundle_icon.png differ diff --git a/documentation/api-reference/interface_s_u_file_manager-members.html b/documentation/api-reference/interface_s_u_file_manager-members.html new file mode 100644 index 0000000..6631d40 --- /dev/null +++ b/documentation/api-reference/interface_s_u_file_manager-members.html @@ -0,0 +1,91 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUFileManager Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_u_file_manager.html b/documentation/api-reference/interface_s_u_file_manager.html new file mode 100644 index 0000000..896629a --- /dev/null +++ b/documentation/api-reference/interface_s_u_file_manager.html @@ -0,0 +1,552 @@ + + + + + + + +Sparkle: SUFileManager Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUFileManager Class Reference
    +
    +
    + +

    #import <SUFileManager.h>

    +
    +Inheritance diagram for SUFileManager:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (instancetype) - init
     
    (NSURL *_Nullable) - makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:
     
    (BOOL) - makeDirectoryAtURL:error:
     
    (BOOL) - moveItemAtURL:toURL:error:
     
    (BOOL) - replaceItemAtURL:withItemAtURL:error:
     
    (BOOL) - copyItemAtURL:toURL:error:
     
    (BOOL) - removeItemAtURL:error:
     
    (BOOL) - changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:
     
    (BOOL) - updateModificationAndAccessTimeOfItemAtURL:error:
     
    (BOOL) - updateAccessTimeOfItemAtRootURL:error:
     
    (BOOL) - releaseItemFromQuarantineAtRootURL:error:
     
    +

    Detailed Description

    +

    A class used for performing file operations more suitable than NSFileManager for performing installation work. All operations on this class may be used on thread other than the main thread. This class provides just basic file operations and stays away from including much application-level logic.

    +

    Method Documentation

    + +

    ◆ changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) changeOwnerAndGroupOfItemAtRootURL: (NSURL *) targetURL
    toMatchURL:(NSURL *) matchURL
    error:(NSError **) error 
    +
    +

    Changes the owner and group IDs of an item at a specified target URL to match another URL

    Parameters
    + + + + +
    targetURLA URL pointing to the target item whose owner and group IDs to alter. This will be applied recursively if the item is a directory. The item at this URL must exist.
    matchURLA URL pointing to the item whose owner and group IDs will be used for changing on the targetURL. The item at this URL must exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the target item's owner and group IDs have changed to match the origin's ones, otherwise NO along with a populated error object
    +

    If the owner and group IDs match on the root items of targetURL and matchURL, this method stops and assumes that nothing needs to be done. Otherwise this method recursively changes the IDs if the target is a directory. If an item in the directory is encountered that is unable to be changed, then this method stops and returns NO. While this method will try to change the group ID, being unable to change the group ID does not result in a failure if the owner ID can be changed or matched.

    +

    This is not an atomic operation.

    + +
    +
    + +

    ◆ copyItemAtURL:toURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) copyItemAtURL: (NSURL *) sourceURL
    toURL:(NSURL *) destinationURL
    error:(NSError **) error 
    +
    +

    Copies an item from a source to a destination

    Parameters
    + + + + +
    sourceURLA URL pointing to the item to move. The item at this URL must exist.
    destinationURLA URL pointing to the destination the item will be moved at. An item must not already exist at this URL.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the item was copied successfully, otherwise NO along with a populated error object
    +

    This is not an atomic operation.

    + +
    +
    + +

    ◆ init

    + +
    +
    + + + + + + + +
    - (instancetype) init
    +
    +Initial value:
    {
    +
    NSFileManager *_fileManager
    +

    Initializes a new file manager

    +
    Returns
    A new file manager instance
    + +
    +
    + +

    ◆ makeDirectoryAtURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) makeDirectoryAtURL: (NSURL *) targetURL
    error:(NSError **) error 
    +
    +

    Creates a directory at the target URL

    Parameters
    + + + +
    targetURLA URL pointing to the directory to create. The item at this URL must not exist, and the parent directory of this URL must already exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the item was created successfully, otherwise NO along with a populated error object
    +

    This is an atomic operation.

    + +
    +
    + +

    ◆ makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (NSURL *) makeTemporaryDirectoryWithPreferredName: (NSString *) preferredName
    appropriateForDirectoryURL:(NSURL *) appropriateURL
    error:(NSError * __autoreleasing *) error 
    +
    +

    Creates a temporary directory on the same volume as a provided URL

    Parameters
    + + + + +
    preferredNameA name that may be used when creating the temporary directory. Note that in the uncothirdStageErrormmon case this name is used, the temporary directory will be created inside the directory pointed by appropriateURL
    appropriateURLA URL to a directory that resides on the volume that the temporary directory will be created on. In the uncommon case, the temporary directory may be created inside this directory.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    A URL pointing to the newly created temporary directory, or nil with a populated error object if an error occurs.
    +

    When moving an item from a source to a destination, it is desirable to create a temporary intermediate destination on the same volume as the destination to ensure that the item will be moved, and not copied, from the intermediate point to the final destination. This ensures file atomicity.

    + +
    +
    + +

    ◆ moveItemAtURL:toURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) moveItemAtURL: (NSURL *) sourceURL
    toURL:(NSURL *) destinationURL
    error:(NSError **) error 
    +
    +

    Moves an item from a source to a destination

    Parameters
    + + + + +
    sourceURLA URL pointing to the item to move. The item at this URL must exist.
    destinationURLA URL pointing to the destination the item will be moved at. An item must not already exist at this URL.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the item was moved successfully, otherwise NO along with a populated error object
    +

    If sourceURL and destinationURL reside on the same volume, this operation will be an atomic move operation. Otherwise this will be equivalent to a copy & remove which will be a nonatomic operation.

    + +
    +
    + +

    ◆ releaseItemFromQuarantineAtRootURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) releaseItemFromQuarantineAtRootURL: (NSURL *) rootURL
    error:(NSError **) error 
    +
    +

    Releases Apple's quarantine extended attribute from the item at the specified root URL

    Parameters
    + + + +
    rootURLA URL pointing to the item to release from Apple's quarantine. This will be applied recursively if the item is a directory. The item at this URL must exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if all the items at the target could be released from quarantine, otherwise NO if any items couldn't along with a populated error object
    +

    This method removes quarantine attributes from an item, ideally an application, so that when the user launches a new application themselves, they don't have to witness the system dialog alerting them that they downloaded an application from the internet and asking if they want to continue. Note that this may not exactly mimic the system behavior when a user opens an application for the first time (i.e, the xattr isn't deleted), but this should be sufficient enough for our purposes.

    +

    This method may return NO even if some items do get released from quarantine if the target URL is pointing to a directory. Thus if an item cannot be released from quarantine, this method still continues on to the next enumerated item.

    +

    This is not an atomic operation.

    + +
    +
    + +

    ◆ removeItemAtURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) removeItemAtURL: (NSURL *) url
    error:(NSError **) error 
    +
    +

    Removes an item at a URL

    Parameters
    + + + +
    urlA URL pointing to the item to remove. The item at this URL must exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the item was removed successfully, otherwise NO along with a populated error object
    +

    This is not an atomic operation.

    + +
    +
    + +

    ◆ replaceItemAtURL:withItemAtURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) replaceItemAtURL: (NSURL *) originalItemURL
    withItemAtURL:(NSURL *) newItemURL
    error:(10.13) __OSX_AVAILABLE 
    +
    +

    Replaces an original item with a new item atomically.

    Parameters
    + + + + +
    originalItemURLA URL pointing to the original item to replace. The item at this URL must exist.
    newItemURLA URL pointing to the new item that will replace the original item.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the original item was replaced with the new item successfully, otherwise NO along with a populated error object
    +

    originalItemURL and newItemURL must reside on the same volume. If the operation succeeds, this will be be an atomic operation. Otherwise on failure you may need to re-try using move operations. This operation will fail on non-apfs volumes or volumes that don't support rename swapping. Both originalItemURL and newItemURL must exist.

    + +
    +
    + +

    ◆ updateAccessTimeOfItemAtRootURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) updateAccessTimeOfItemAtRootURL: (NSURL *) targetURL
    error:(NSError * __autoreleasing *) error 
    +
    +

    Updates the access time of an item at a specified root URL to the current time

    Parameters
    + + + +
    targetURLA URL pointing to the target item whose access time to update to the current time. This will be applied recursively if the item is a directory. The item at this URL must exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the target item's access times have been updated, otherwise NO along with a populated error object
    +

    This method updates the access time of an item to the current time, ideal for letting the system know not to remove a file or directory when placing it at a temporary directory.

    +

    This is not an atomic operation.

    + +
    +
    + +

    ◆ updateModificationAndAccessTimeOfItemAtURL:error:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) updateModificationAndAccessTimeOfItemAtURL: (NSURL *) targetURL
    error:(NSError **) error 
    +
    +

    Updates the modification and access time of an item at a specified target URL to the current time

    Parameters
    + + + +
    targetURLA URL pointing to the target item whose modification and access time to update. The item at this URL must exist.
    errorIf an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
    +
    +
    +
    Returns
    YES if the target item's modification and access times have been updated, otherwise NO along with a populated error object
    +

    This method updates the modification and access time of an item to the current time, ideal for letting the system know we installed a new file or application.

    +

    This is not an atomic operation.

    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_file_manager.png b/documentation/api-reference/interface_s_u_file_manager.png new file mode 100644 index 0000000..84dd966 Binary files /dev/null and b/documentation/api-reference/interface_s_u_file_manager.png differ diff --git a/documentation/api-reference/interface_s_u_host-members.html b/documentation/api-reference/interface_s_u_host-members.html new file mode 100644 index 0000000..d5d880e --- /dev/null +++ b/documentation/api-reference/interface_s_u_host-members.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUHost Member List
    +
    +
    + +

    This is the complete list of members for SUHost, including all inherited members.

    + + + + + + + + + + + + + + + + + + + + +
    boolForInfoDictionaryKey: (defined in SUHost)SUHost
    boolForKey: (defined in SUHost)SUHost
    boolForUserDefaultsKey: (defined in SUHost)SUHost
    bundle (defined in SUHost)SUHost
    bundlePath (defined in SUHost)SUHost
    displayVersion (defined in SUHost)SUHost
    initWithBundle: (defined in SUHost)SUHost
    name (defined in SUHost)SUHost
    objectForInfoDictionaryKey: (defined in SUHost)SUHost
    objectForKey: (defined in SUHost)SUHost
    objectForUserDefaultsKey: (defined in SUHost)SUHost
    publicDSAKeyFileKey (defined in SUHost)SUHost
    publicKeys (defined in SUHost)SUHost
    runningOnReadOnlyVolume (defined in SUHost)SUHost
    runningTranslocated (defined in SUHost)SUHost
    setBool:forUserDefaultsKey: (defined in SUHost)SUHost
    setObject:forUserDefaultsKey: (defined in SUHost)SUHost
    validVersion (defined in SUHost)SUHost
    version (defined in SUHost)SUHost
    + + + + diff --git a/documentation/api-reference/interface_s_u_host.html b/documentation/api-reference/interface_s_u_host.html new file mode 100644 index 0000000..a31a80b --- /dev/null +++ b/documentation/api-reference/interface_s_u_host.html @@ -0,0 +1,155 @@ + + + + + + + +Sparkle: SUHost Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUHost Class Reference
    +
    +
    +
    +Inheritance diagram for SUHost:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithBundle:
     
    +(nullable id) - objectForInfoDictionaryKey:
     
    +(BOOL) - boolForInfoDictionaryKey:
     
    +(nullable id) - objectForUserDefaultsKey:
     
    +(void) - setObject:forUserDefaultsKey:
     
    +(BOOL) - boolForUserDefaultsKey:
     
    +(void) - setBool:forUserDefaultsKey:
     
    +(nullable id) - objectForKey:
     
    +(BOOL) - boolForKey:
     
    + + + + + + + + + + + + + + + + + + + + + +

    +Properties

    +NSBundle * bundle
     
    +NSString * bundlePath
     
    +NSString * name
     
    +NSString * version
     
    +BOOL validVersion
     
    +NSString * displayVersion
     
    +SUPublicKeyspublicKeys
     
    +BOOL runningOnReadOnlyVolume
     
    +BOOL runningTranslocated
     
    +NSString * publicDSAKeyFileKey
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_host.png b/documentation/api-reference/interface_s_u_host.png new file mode 100644 index 0000000..71bb186 Binary files /dev/null and b/documentation/api-reference/interface_s_u_host.png differ diff --git a/documentation/api-reference/interface_s_u_operating_system-members.html b/documentation/api-reference/interface_s_u_operating_system-members.html new file mode 100644 index 0000000..c311394 --- /dev/null +++ b/documentation/api-reference/interface_s_u_operating_system-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUOperatingSystem Member List
    +
    +
    + +

    This is the complete list of members for SUOperatingSystem, including all inherited members.

    + + + + +
    isOperatingSystemAtLeastVersion: (defined in SUOperatingSystem)SUOperatingSystemstatic
    operatingSystemVersion (defined in SUOperatingSystem)SUOperatingSystemstatic
    systemVersionString (defined in SUOperatingSystem)SUOperatingSystemstatic
    + + + + diff --git a/documentation/api-reference/interface_s_u_operating_system.html b/documentation/api-reference/interface_s_u_operating_system.html new file mode 100644 index 0000000..a546b8f --- /dev/null +++ b/documentation/api-reference/interface_s_u_operating_system.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUOperatingSystem Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUOperatingSystem Class Reference
    +
    +
    +
    +Inheritance diagram for SUOperatingSystem:
    +
    +
    + +
    + + + + + + + + +

    +Class Methods

    +(NSOperatingSystemVersion+ operatingSystemVersion
     
    +(BOOL) + isOperatingSystemAtLeastVersion:
     
    +(NSString *) + systemVersionString
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_operating_system.png b/documentation/api-reference/interface_s_u_operating_system.png new file mode 100644 index 0000000..aa71c75 Binary files /dev/null and b/documentation/api-reference/interface_s_u_operating_system.png differ diff --git a/documentation/api-reference/interface_s_u_phased_update_group_info-members.html b/documentation/api-reference/interface_s_u_phased_update_group_info-members.html new file mode 100644 index 0000000..d5b4142 --- /dev/null +++ b/documentation/api-reference/interface_s_u_phased_update_group_info-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUPhasedUpdateGroupInfo Member List
    +
    +
    + +

    This is the complete list of members for SUPhasedUpdateGroupInfo, including all inherited members.

    + + + +
    setNewUpdateGroupIdentifierForHost: (defined in SUPhasedUpdateGroupInfo)SUPhasedUpdateGroupInfostatic
    updateGroupForHost: (defined in SUPhasedUpdateGroupInfo)SUPhasedUpdateGroupInfostatic
    + + + + diff --git a/documentation/api-reference/interface_s_u_phased_update_group_info.html b/documentation/api-reference/interface_s_u_phased_update_group_info.html new file mode 100644 index 0000000..9cfa3f8 --- /dev/null +++ b/documentation/api-reference/interface_s_u_phased_update_group_info.html @@ -0,0 +1,100 @@ + + + + + + + +Sparkle: SUPhasedUpdateGroupInfo Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUPhasedUpdateGroupInfo Class Reference
    +
    +
    +
    +Inheritance diagram for SUPhasedUpdateGroupInfo:
    +
    +
    + +
    + + + + + + +

    +Class Methods

    +(NSUInteger) + updateGroupForHost:
     
    +(NSNumber *) + setNewUpdateGroupIdentifierForHost:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_phased_update_group_info.png b/documentation/api-reference/interface_s_u_phased_update_group_info.png new file mode 100644 index 0000000..0a4585f Binary files /dev/null and b/documentation/api-reference/interface_s_u_phased_update_group_info.png differ diff --git a/documentation/api-reference/interface_s_u_public_keys-members.html b/documentation/api-reference/interface_s_u_public_keys-members.html new file mode 100644 index 0000000..4226042 --- /dev/null +++ b/documentation/api-reference/interface_s_u_public_keys-members.html @@ -0,0 +1,87 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUPublicKeys Member List
    +
    +
    + +

    This is the complete list of members for SUPublicKeys, including all inherited members.

    + + + + + + + + +
    dsaPubKey (defined in SUPublicKeys)SUPublicKeys
    dsaPubKeyStatus (defined in SUPublicKeys)SUPublicKeys
    ed25519_public_key (defined in SUPublicKeys)SUPublicKeysprotected
    ed25519PubKey (defined in SUPublicKeys)SUPublicKeys
    ed25519PubKeyStatus (defined in SUPublicKeys)SUPublicKeys
    hasAnyKeysSUPublicKeys
    initWithDsa:ed: (defined in SUPublicKeys)SUPublicKeys
    + + + + diff --git a/documentation/api-reference/interface_s_u_public_keys.html b/documentation/api-reference/interface_s_u_public_keys.html new file mode 100644 index 0000000..1adaf6d --- /dev/null +++ b/documentation/api-reference/interface_s_u_public_keys.html @@ -0,0 +1,124 @@ + + + + + + + +Sparkle: SUPublicKeys Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUPublicKeys Class Reference
    +
    +
    +
    +Inheritance diagram for SUPublicKeys:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithDsa:ed:
     
    + + + +

    +Protected Attributes

    +unsigned char ed25519_public_key [32]
     
    + + + + + + + + + + + + +

    +Properties

    +NSString * dsaPubKey
     
    +SUSigningInputStatus dsaPubKeyStatus
     
    +const unsigned char * ed25519PubKey
     
    +SUSigningInputStatus ed25519PubKeyStatus
     
    +BOOL hasAnyKeys
     Returns YES if either key is present (though they may be invalid).
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_public_keys.png b/documentation/api-reference/interface_s_u_public_keys.png new file mode 100644 index 0000000..a4c9721 Binary files /dev/null and b/documentation/api-reference/interface_s_u_public_keys.png differ diff --git a/documentation/api-reference/interface_s_u_signatures-members.html b/documentation/api-reference/interface_s_u_signatures-members.html new file mode 100644 index 0000000..88c4376 --- /dev/null +++ b/documentation/api-reference/interface_s_u_signatures-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUSignatures Member List
    +
    +
    + +

    This is the complete list of members for SUSignatures, including all inherited members.

    + + + + + + + +
    dsaSignature (defined in SUSignatures)SUSignatures
    dsaSignatureStatus (defined in SUSignatures)SUSignatures
    ed25519_signature (defined in SUSignatures)SUSignaturesprotected
    ed25519Signature (defined in SUSignatures)SUSignatures
    ed25519SignatureStatus (defined in SUSignatures)SUSignatures
    initWithDsa:ed: (defined in SUSignatures)SUSignatures
    + + + + diff --git a/documentation/api-reference/interface_s_u_signatures.html b/documentation/api-reference/interface_s_u_signatures.html new file mode 100644 index 0000000..86e1719 --- /dev/null +++ b/documentation/api-reference/interface_s_u_signatures.html @@ -0,0 +1,120 @@ + + + + + + + +Sparkle: SUSignatures Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUSignatures Class Reference
    +
    +
    +
    +Inheritance diagram for SUSignatures:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initWithDsa:ed:
     
    + + + +

    +Protected Attributes

    +unsigned char ed25519_signature [64]
     
    + + + + + + + + + +

    +Properties

    +NSData * dsaSignature
     
    +SUSigningInputStatus dsaSignatureStatus
     
    +const unsigned char * ed25519Signature
     
    +SUSigningInputStatus ed25519SignatureStatus
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_signatures.png b/documentation/api-reference/interface_s_u_signatures.png new file mode 100644 index 0000000..51488e5 Binary files /dev/null and b/documentation/api-reference/interface_s_u_signatures.png differ diff --git a/documentation/api-reference/interface_s_u_standard_version_comparator-members.html b/documentation/api-reference/interface_s_u_standard_version_comparator-members.html new file mode 100644 index 0000000..d493f4d --- /dev/null +++ b/documentation/api-reference/interface_s_u_standard_version_comparator-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUStandardVersionComparator Member List
    +
    +
    + +

    This is the complete list of members for SUStandardVersionComparator, including all inherited members.

    + + + + +
    compareVersion:toVersion:SUStandardVersionComparator
    defaultComparatorSUStandardVersionComparatorstatic
    initSUStandardVersionComparator
    + + + + diff --git a/documentation/api-reference/interface_s_u_standard_version_comparator.html b/documentation/api-reference/interface_s_u_standard_version_comparator.html new file mode 100644 index 0000000..6a8ddfe --- /dev/null +++ b/documentation/api-reference/interface_s_u_standard_version_comparator.html @@ -0,0 +1,173 @@ + + + + + + + +Sparkle: SUStandardVersionComparator Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUStandardVersionComparator Class Reference
    +
    +
    + +

    Sparkle's default version comparator. + More...

    + +

    #import <SUStandardVersionComparator.h>

    +
    +Inheritance diagram for SUStandardVersionComparator:
    +
    +
    + + +<SUVersionComparison> + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - init
     Initializes a new instance of the standard version comparator.
     
    (NSComparisonResult) - compareVersion:toVersion:
     Compares version strings through textual analysis. More...
     
    + + + + +

    +Class Methods

    (SUStandardVersionComparator *) + defaultComparator
     Returns a singleton instance of the comparator. More...
     
    +

    Detailed Description

    +

    Sparkle's default version comparator.

    +

    This comparator is adapted from MacPAD, by Kevin Ballard. It's "dumb" in that it does essentially string comparison, in components split by character type.

    +

    Method Documentation

    + +

    ◆ compareVersion:toVersion:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (NSComparisonResult) compareVersion: (NSString *) versionA
    toVersion:(NSString *) versionB 
    +
    + +

    Compares version strings through textual analysis.

    +

    See the implementation for more details.

    + +

    Reimplemented from <SUVersionComparison>.

    + +
    +
    + +

    ◆ defaultComparator

    + +
    +
    + + + + + + + +
    + (SUStandardVersionComparator *) defaultComparator
    +
    + +

    Returns a singleton instance of the comparator.

    +

    It is usually preferred to alloc/init new a comparator instead.

    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_standard_version_comparator.png b/documentation/api-reference/interface_s_u_standard_version_comparator.png new file mode 100644 index 0000000..17ded2b Binary files /dev/null and b/documentation/api-reference/interface_s_u_standard_version_comparator.png differ diff --git a/documentation/api-reference/interface_s_u_status_controller-members.html b/documentation/api-reference/interface_s_u_status_controller-members.html new file mode 100644 index 0000000..eb87394 --- /dev/null +++ b/documentation/api-reference/interface_s_u_status_controller-members.html @@ -0,0 +1,90 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUStatusController Member List
    +
    +
    + +

    This is the complete list of members for SUStatusController, including all inherited members.

    + + + + + + + + + + + +
    actionButton (defined in SUStatusController)SUStatusController
    beginActionWithTitle:maxProgressValue:statusText: (defined in SUStatusController)SUStatusController
    buttonEnabled (defined in SUStatusController)SUStatusController
    initWithHost: (defined in SUStatusController)SUStatusController
    maxProgressValue (defined in SUStatusController)SUStatusController
    progressBar (defined in SUStatusController)SUStatusController
    progressValue (defined in SUStatusController)SUStatusController
    setButtonTitle:target:action:isDefault: (defined in SUStatusController)SUStatusController
    statusText (defined in SUStatusController)SUStatusController
    statusTextField (defined in SUStatusController)SUStatusController
    + + + + diff --git a/documentation/api-reference/interface_s_u_status_controller.html b/documentation/api-reference/interface_s_u_status_controller.html new file mode 100644 index 0000000..7e21edc --- /dev/null +++ b/documentation/api-reference/interface_s_u_status_controller.html @@ -0,0 +1,128 @@ + + + + + + + +Sparkle: SUStatusController Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUStatusController Class Reference
    +
    +
    +
    +Inheritance diagram for SUStatusController:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithHost:
     
    +(void) - beginActionWithTitle:maxProgressValue:statusText:
     
    +(void) - setButtonTitle:target:action:isDefault:
     
    + + + + + + + + + + + + + + + +

    +Properties

    +IBOutlet NSButton * actionButton
     
    +IBOutlet NSProgressIndicator * progressBar
     
    +IBOutlet NSTextField * statusTextField
     
    +NSString * statusText
     
    +double progressValue
     
    +double maxProgressValue
     
    +BOOL buttonEnabled
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_status_controller.png b/documentation/api-reference/interface_s_u_status_controller.png new file mode 100644 index 0000000..99274ec Binary files /dev/null and b/documentation/api-reference/interface_s_u_status_controller.png differ diff --git a/documentation/api-reference/interface_s_u_system_profiler-members.html b/documentation/api-reference/interface_s_u_system_profiler-members.html new file mode 100644 index 0000000..109eaa0 --- /dev/null +++ b/documentation/api-reference/interface_s_u_system_profiler-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUSystemProfiler Member List
    +
    +
    + +

    This is the complete list of members for SUSystemProfiler, including all inherited members.

    + + +
    systemProfileArrayForHost: (defined in SUSystemProfiler)SUSystemProfilerstatic
    + + + + diff --git a/documentation/api-reference/interface_s_u_system_profiler.html b/documentation/api-reference/interface_s_u_system_profiler.html new file mode 100644 index 0000000..61a9789 --- /dev/null +++ b/documentation/api-reference/interface_s_u_system_profiler.html @@ -0,0 +1,97 @@ + + + + + + + +Sparkle: SUSystemProfiler Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUSystemProfiler Class Reference
    +
    +
    +
    +Inheritance diagram for SUSystemProfiler:
    +
    +
    + +
    + + + + +

    +Class Methods

    +(NSArray< NSDictionary< NSString *, NSString * > * > *) + systemProfileArrayForHost:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_system_profiler.png b/documentation/api-reference/interface_s_u_system_profiler.png new file mode 100644 index 0000000..14dca2b Binary files /dev/null and b/documentation/api-reference/interface_s_u_system_profiler.png differ diff --git a/documentation/api-reference/interface_s_u_touch_bar_button_group-members.html b/documentation/api-reference/interface_s_u_touch_bar_button_group-members.html new file mode 100644 index 0000000..754d9ee --- /dev/null +++ b/documentation/api-reference/interface_s_u_touch_bar_button_group-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUTouchBarButtonGroup Member List
    +
    +
    + +

    This is the complete list of members for SUTouchBarButtonGroup, including all inherited members.

    + + + +
    buttons (defined in SUTouchBarButtonGroup)SUTouchBarButtonGroup
    initByReferencingButtons: (defined in SUTouchBarButtonGroup)SUTouchBarButtonGroup
    + + + + diff --git a/documentation/api-reference/interface_s_u_touch_bar_button_group.html b/documentation/api-reference/interface_s_u_touch_bar_button_group.html new file mode 100644 index 0000000..1c2c0a9 --- /dev/null +++ b/documentation/api-reference/interface_s_u_touch_bar_button_group.html @@ -0,0 +1,104 @@ + + + + + + + +Sparkle: SUTouchBarButtonGroup Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUTouchBarButtonGroup Class Reference
    +
    +
    +
    +Inheritance diagram for SUTouchBarButtonGroup:
    +
    +
    + +
    + + + + +

    +Instance Methods

    +(instancetype) - initByReferencingButtons:
     
    + + + +

    +Properties

    +NSArray< NSButton * > * buttons
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_touch_bar_button_group.png b/documentation/api-reference/interface_s_u_touch_bar_button_group.png new file mode 100644 index 0000000..e5e8d05 Binary files /dev/null and b/documentation/api-reference/interface_s_u_touch_bar_button_group.png differ diff --git a/documentation/api-reference/interface_s_u_update_permission_response-members.html b/documentation/api-reference/interface_s_u_update_permission_response-members.html new file mode 100644 index 0000000..2864cf0 --- /dev/null +++ b/documentation/api-reference/interface_s_u_update_permission_response-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUUpdatePermissionResponse Member List
    +
    + + + + + diff --git a/documentation/api-reference/interface_s_u_update_permission_response.html b/documentation/api-reference/interface_s_u_update_permission_response.html new file mode 100644 index 0000000..cca0313 --- /dev/null +++ b/documentation/api-reference/interface_s_u_update_permission_response.html @@ -0,0 +1,157 @@ + + + + + + + +Sparkle: SUUpdatePermissionResponse Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUUpdatePermissionResponse Class Reference
    +
    +
    + +

    This class represents a response for permission to check updates. + More...

    + +

    #import <SUUpdatePermissionResponse.h>

    +
    +Inheritance diagram for SUUpdatePermissionResponse:
    +
    +
    + +
    + + + + + + + +

    +Instance Methods

    (instancetype) - initWithAutomaticUpdateChecks:sendSystemProfile:
     Initializes a new update permission response instance. More...
     
    +(instancetype) - NS_UNAVAILABLE
     
    + + + + + + + +

    +Properties

    +BOOL automaticUpdateChecks
     A read-only property indicating whether automatic update checks are allowed or not.
     
    +BOOL sendSystemProfile
     A read-only property indicating if system profile should be sent or not.
     
    +

    Detailed Description

    +

    This class represents a response for permission to check updates.

    +

    Method Documentation

    + +

    ◆ initWithAutomaticUpdateChecks:sendSystemProfile:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (instancetype) initWithAutomaticUpdateChecks: (BOOL) automaticUpdateChecks
    sendSystemProfile:(BOOL) sendSystemProfile 
    +
    + +

    Initializes a new update permission response instance.

    +
    Parameters
    + + + +
    automaticUpdateChecksFlag for whether to allow automatic update checks.
    sendSystemProfileFlag for if system profile information should be sent to the server hosting the appcast.
    +
    +
    + +
    +
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_update_permission_response.png b/documentation/api-reference/interface_s_u_update_permission_response.png new file mode 100644 index 0000000..a4f6923 Binary files /dev/null and b/documentation/api-reference/interface_s_u_update_permission_response.png differ diff --git a/documentation/api-reference/interface_s_u_update_validator-members.html b/documentation/api-reference/interface_s_u_update_validator-members.html new file mode 100644 index 0000000..65fb9b4 --- /dev/null +++ b/documentation/api-reference/interface_s_u_update_validator-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    SUUpdateValidator Member List
    +
    +
    + +

    This is the complete list of members for SUUpdateValidator, including all inherited members.

    + + + + +
    initWithDownloadPath:signatures:host: (defined in SUUpdateValidator)SUUpdateValidator
    validateDownloadPathWithError: (defined in SUUpdateValidator)SUUpdateValidator
    validateWithUpdateDirectory:error: (defined in SUUpdateValidator)SUUpdateValidator
    + + + + diff --git a/documentation/api-reference/interface_s_u_update_validator.html b/documentation/api-reference/interface_s_u_update_validator.html new file mode 100644 index 0000000..9706628 --- /dev/null +++ b/documentation/api-reference/interface_s_u_update_validator.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: SUUpdateValidator Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    SUUpdateValidator Class Reference
    +
    +
    +
    +Inheritance diagram for SUUpdateValidator:
    +
    +
    + +
    + + + + + + + + +

    +Instance Methods

    +(instancetype) - initWithDownloadPath:signatures:host:
     
    +(BOOL) - validateDownloadPathWithError:
     
    +(BOOL) - validateWithUpdateDirectory:error:
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_s_u_update_validator.png b/documentation/api-reference/interface_s_u_update_validator.png new file mode 100644 index 0000000..8c1924b Binary files /dev/null and b/documentation/api-reference/interface_s_u_update_validator.png differ diff --git a/documentation/api-reference/interface_show_installer_progress-members.html b/documentation/api-reference/interface_show_installer_progress-members.html new file mode 100644 index 0000000..c2cb392 --- /dev/null +++ b/documentation/api-reference/interface_show_installer_progress-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    ShowInstallerProgress Member List
    +
    +
    + +

    This is the complete list of members for ShowInstallerProgress, including all inherited members.

    + + + +
    installerProgressShouldDisplayWithHost: (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    installerProgressShouldStop (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    + + + + diff --git a/documentation/api-reference/interface_show_installer_progress.html b/documentation/api-reference/interface_show_installer_progress.html new file mode 100644 index 0000000..8c4ef91 --- /dev/null +++ b/documentation/api-reference/interface_show_installer_progress.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: ShowInstallerProgress Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    ShowInstallerProgress Class Reference
    +
    +
    +
    +Inheritance diagram for ShowInstallerProgress:
    +
    +
    + + +<InstallerProgressDelegate> + +
    + + + + + + + +

    +Additional Inherited Members

    - Instance Methods inherited from <InstallerProgressDelegate>
    +(void) - installerProgressShouldDisplayWithHost:
     
    +(void) - installerProgressShouldStop
     
    +
    The documentation for this class was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/interface_show_installer_progress.png b/documentation/api-reference/interface_show_installer_progress.png new file mode 100644 index 0000000..58adadb Binary files /dev/null and b/documentation/api-reference/interface_show_installer_progress.png differ diff --git a/documentation/api-reference/interface_termination_listener-members.html b/documentation/api-reference/interface_termination_listener-members.html new file mode 100644 index 0000000..d644770 --- /dev/null +++ b/documentation/api-reference/interface_termination_listener-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    TerminationListener Member List
    +
    +
    + +

    This is the complete list of members for TerminationListener, including all inherited members.

    + + + + +
    initWithProcessIdentifier: (defined in TerminationListener)TerminationListener
    startListeningWithCompletion: (defined in TerminationListener)TerminationListener
    terminated (defined in TerminationListener)TerminationListener
    + + + + diff --git a/documentation/api-reference/interface_termination_listener.html b/documentation/api-reference/interface_termination_listener.html new file mode 100644 index 0000000..78c86e5 --- /dev/null +++ b/documentation/api-reference/interface_termination_listener.html @@ -0,0 +1,107 @@ + + + + + + + +Sparkle: TerminationListener Class Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    TerminationListener Class Reference
    +
    +
    +
    +Inheritance diagram for TerminationListener:
    +
    +
    + +
    + + + + + + +

    +Instance Methods

    +(instancetype) - initWithProcessIdentifier:
     
    +(void) - startListeningWithCompletion:
     
    + + + +

    +Properties

    +BOOL terminated
     
    +
    The documentation for this class was generated from the following files: +
    + + + + diff --git a/documentation/api-reference/interface_termination_listener.png b/documentation/api-reference/interface_termination_listener.png new file mode 100644 index 0000000..27b3057 Binary files /dev/null and b/documentation/api-reference/interface_termination_listener.png differ diff --git a/documentation/api-reference/jquery.js b/documentation/api-reference/jquery.js new file mode 100644 index 0000000..103c32d --- /dev/null +++ b/documentation/api-reference/jquery.js @@ -0,0 +1,35 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
    ",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
    "),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
    ").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
    "),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
    "),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element +},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** + * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
    ').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/documentation/api-reference/js/jazzy.js b/documentation/api-reference/js/jazzy.js new file mode 100755 index 0000000..1e55d6e --- /dev/null +++ b/documentation/api-reference/js/jazzy.js @@ -0,0 +1,70 @@ +window.jazzy = {'docset': false} +if (typeof window.dash != 'undefined') { + document.documentElement.className += ' dash' + window.jazzy.docset = true +} +if (navigator.userAgent.match(/xcode/i)) { + document.documentElement.className += ' xcode' + window.jazzy.docset = true +} + +function toggleItem($link, $content) { + var animationDuration = 300; + $link.toggleClass('token-open'); + $content.slideToggle(animationDuration); +} + +function itemLinkToContent($link) { + return $link.parent().parent().next(); +} + +// On doc load + hash-change, open any targetted item +function openCurrentItemIfClosed() { + if (window.jazzy.docset) { + return; + } + var $link = $(`a[name="${location.hash.substring(1)}"]`).nextAll('.token'); + $content = itemLinkToContent($link); + if ($content.is(':hidden')) { + toggleItem($link, $content); + } +} + +$(openCurrentItemIfClosed); +$(window).on('hashchange', openCurrentItemIfClosed); + +// On item link ('token') click, toggle its discussion +$('.token').on('click', function(event) { + if (window.jazzy.docset) { + return; + } + var $link = $(this); + toggleItem($link, itemLinkToContent($link)); + + // Keeps the document from jumping to the hash. + var href = $link.attr('href'); + if (history.pushState) { + history.pushState({}, '', href); + } else { + location.hash = href; + } + event.preventDefault(); +}); + +// Clicks on links to the current, closed, item need to open the item +$("a:not('.token')").on('click', function() { + if (location == this.href) { + openCurrentItemIfClosed(); + } +}); + +// KaTeX rendering +if ("katex" in window) { + $($('.math').each( (_, element) => { + katex.render(element.textContent, element, { + displayMode: $(element).hasClass('m-block'), + throwOnError: false, + trust: true + }); + })) +} diff --git a/documentation/api-reference/js/jazzy.search.js b/documentation/api-reference/js/jazzy.search.js new file mode 100644 index 0000000..e3d1ab9 --- /dev/null +++ b/documentation/api-reference/js/jazzy.search.js @@ -0,0 +1,70 @@ +$(function(){ + var $typeahead = $('[data-typeahead]'); + var $form = $typeahead.parents('form'); + var searchURL = $form.attr('action'); + + function displayTemplate(result) { + return result.name; + } + + function suggestionTemplate(result) { + var t = '
    '; + t += '' + result.name + ''; + if (result.parent_name) { + t += '' + result.parent_name + ''; + } + t += '
    '; + return t; + } + + $typeahead.one('focus', function() { + $form.addClass('loading'); + + $.getJSON(searchURL).then(function(searchData) { + const searchIndex = lunr(function() { + this.ref('url'); + this.field('name'); + this.field('abstract'); + for (const [url, doc] of Object.entries(searchData)) { + this.add({url: url, name: doc.name, abstract: doc.abstract}); + } + }); + + $typeahead.typeahead( + { + highlight: true, + minLength: 3, + autoselect: true + }, + { + limit: 10, + display: displayTemplate, + templates: { suggestion: suggestionTemplate }, + source: function(query, sync) { + const lcSearch = query.toLowerCase(); + const results = searchIndex.query(function(q) { + q.term(lcSearch, { boost: 100 }); + q.term(lcSearch, { + boost: 10, + wildcard: lunr.Query.wildcard.TRAILING + }); + }).map(function(result) { + var doc = searchData[result.ref]; + doc.url = result.ref; + return doc; + }); + sync(results); + } + } + ); + $form.removeClass('loading'); + $typeahead.trigger('focus'); + }); + }); + + var baseURL = searchURL.slice(0, -"search.json".length); + + $typeahead.on('typeahead:select', function(e, result) { + window.location = baseURL + result.url; + }); +}); diff --git a/documentation/api-reference/js/jquery.min.js b/documentation/api-reference/js/jquery.min.js new file mode 100644 index 0000000..c4c6022 --- /dev/null +++ b/documentation/api-reference/js/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 00){var c=e.utils.clone(r)||{};c.position=[a,l],c.index=s.length,s.push(new e.Token(i.slice(a,o),c))}a=o+1}}return s},e.tokenizer.separator=/[\s\-]+/,e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,r){r in this.registeredFunctions&&e.utils.warn("Overwriting existing registered function: "+r),t.label=r,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var r=t.label&&t.label in this.registeredFunctions;r||e.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},e.Pipeline.load=function(t){var r=new e.Pipeline;return t.forEach(function(t){var i=e.Pipeline.registeredFunctions[t];if(!i)throw new Error("Cannot load unregistered function: "+t);r.add(i)}),r},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){e.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},e.Pipeline.prototype.after=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,r)},e.Pipeline.prototype.before=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");this._stack.splice(i,0,r)},e.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);t!=-1&&this._stack.splice(t,1)},e.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},e.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var o,a=s.str.charAt(0);a in s.node.edges?o=s.node.edges[a]:(o=new e.TokenSet,s.node.edges[a]=o),1==s.str.length&&(o["final"]=!0),n.push({node:o,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(0!=s.editsRemaining){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new e.TokenSet;s.node.edges["*"]=u}if(0==s.str.length&&(u["final"]=!0),n.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&n.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),1==s.str.length&&(s.node["final"]=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new e.TokenSet;s.node.edges["*"]=l}1==s.str.length&&(l["final"]=!0),n.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var c,h=s.str.charAt(0),d=s.str.charAt(1);d in s.node.edges?c=s.node.edges[d]:(c=new e.TokenSet,s.node.edges[d]=c),1==s.str.length&&(c["final"]=!0),n.push({node:c,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var r=new e.TokenSet,i=r,n=0,s=t.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r["char"]]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},e.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},e.Index.prototype.search=function(t){return this.query(function(r){var i=new e.QueryParser(t,r);i.parse()})},e.Index.prototype.query=function(t){for(var r=new e.Query(this.fields),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},e.Builder.prototype.k1=function(e){this._k1=e},e.Builder.prototype.add=function(t,r){var i=t[this._ref],n=Object.keys(this._fields);this._documents[i]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,r;do t=this.next(),r=t.charCodeAt(0);while(r>47&&r<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var r=t.next();if(r==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(92!=r.charCodeAt(0)){if(":"==r)return e.QueryLexer.lexField;if("~"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if("^"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if("+"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if("-"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(r.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}else t.escapeCharacter()}},e.QueryParser=function(t,r){this.lexer=new e.QueryLexer(t),this.query=r,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},e.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},e.QueryParser.parseClause=function(t){var r=t.peekLexeme();if(void 0!=r)switch(r.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(i+=" with value '"+r.str+"'"),new e.QueryParseError(i,r.start,r.end)}},e.QueryParser.parsePresence=function(t){var r=t.consumeLexeme();if(void 0!=r){switch(r.str){case"-":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case"+":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i="unrecognised presence operator'"+r.str+"'";throw new e.QueryParseError(i,r.start,r.end)}var n=t.peekLexeme();if(void 0==n){var i="expecting term or field, found nothing";throw new e.QueryParseError(i,r.start,r.end)}switch(n.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expecting term or field, found '"+n.type+"'";throw new e.QueryParseError(i,n.start,n.end)}}},e.QueryParser.parseField=function(t){var r=t.consumeLexeme();if(void 0!=r){if(t.query.allFields.indexOf(r.str)==-1){var i=t.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),n="unrecognised field '"+r.str+"', possible fields: "+i;throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.fields=[r.str];var s=t.peekLexeme();if(void 0==s){var n="expecting term, found nothing";throw new e.QueryParseError(n,r.start,r.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var n="expecting term, found '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var r=t.consumeLexeme();if(void 0!=r){t.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(void 0==i)return void t.nextClause();switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+i.type+"'";throw new e.QueryParseError(n,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="edit distance must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="boost must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.lunr=t()}(this,function(){return e})}(); diff --git a/documentation/api-reference/js/typeahead.jquery.js b/documentation/api-reference/js/typeahead.jquery.js new file mode 100644 index 0000000..3a2d2ab --- /dev/null +++ b/documentation/api-reference/js/typeahead.jquery.js @@ -0,0 +1,1694 @@ +/*! + * typeahead.js 1.3.1 + * https://github.com/corejavascript/typeahead.js + * Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT + */ + + +(function(root, factory) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], function(a0) { + return factory(a0); + }); + } else if (typeof module === "object" && module.exports) { + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +})(this, function($) { + var _ = function() { + "use strict"; + return { + isMsie: function() { + return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false; + }, + isBlankString: function(str) { + return !str || /^\s*$/.test(str); + }, + escapeRegExChars: function(str) { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); + }, + isString: function(obj) { + return typeof obj === "string"; + }, + isNumber: function(obj) { + return typeof obj === "number"; + }, + isArray: $.isArray, + isFunction: $.isFunction, + isObject: $.isPlainObject, + isUndefined: function(obj) { + return typeof obj === "undefined"; + }, + isElement: function(obj) { + return !!(obj && obj.nodeType === 1); + }, + isJQuery: function(obj) { + return obj instanceof $; + }, + toStr: function toStr(s) { + return _.isUndefined(s) || s === null ? "" : s + ""; + }, + bind: $.proxy, + each: function(collection, cb) { + $.each(collection, reverseArgs); + function reverseArgs(index, value) { + return cb(value, index); + } + }, + map: $.map, + filter: $.grep, + every: function(obj, test) { + var result = true; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (!(result = test.call(null, val, key, obj))) { + return false; + } + }); + return !!result; + }, + some: function(obj, test) { + var result = false; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (result = test.call(null, val, key, obj)) { + return false; + } + }); + return !!result; + }, + mixin: $.extend, + identity: function(x) { + return x; + }, + clone: function(obj) { + return $.extend(true, {}, obj); + }, + getIdGenerator: function() { + var counter = 0; + return function() { + return counter++; + }; + }, + templatify: function templatify(obj) { + return $.isFunction(obj) ? obj : template; + function template() { + return String(obj); + } + }, + defer: function(fn) { + setTimeout(fn, 0); + }, + debounce: function(func, wait, immediate) { + var timeout, result; + return function() { + var context = this, args = arguments, later, callNow; + later = function() { + timeout = null; + if (!immediate) { + result = func.apply(context, args); + } + }; + callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) { + result = func.apply(context, args); + } + return result; + }; + }, + throttle: function(func, wait) { + var context, args, timeout, result, previous, later; + previous = 0; + later = function() { + previous = new Date(); + timeout = null; + result = func.apply(context, args); + }; + return function() { + var now = new Date(), remaining = wait - (now - previous); + context = this; + args = arguments; + if (remaining <= 0) { + clearTimeout(timeout); + timeout = null; + previous = now; + result = func.apply(context, args); + } else if (!timeout) { + timeout = setTimeout(later, remaining); + } + return result; + }; + }, + stringify: function(val) { + return _.isString(val) ? val : JSON.stringify(val); + }, + guid: function() { + function _p8(s) { + var p = (Math.random().toString(16) + "000000000").substr(2, 8); + return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p; + } + return "tt-" + _p8() + _p8(true) + _p8(true) + _p8(); + }, + noop: function() {} + }; + }(); + var WWW = function() { + "use strict"; + var defaultClassNames = { + wrapper: "twitter-typeahead", + input: "tt-input", + hint: "tt-hint", + menu: "tt-menu", + dataset: "tt-dataset", + suggestion: "tt-suggestion", + selectable: "tt-selectable", + empty: "tt-empty", + open: "tt-open", + cursor: "tt-cursor", + highlight: "tt-highlight" + }; + return build; + function build(o) { + var www, classes; + classes = _.mixin({}, defaultClassNames, o); + www = { + css: buildCss(), + classes: classes, + html: buildHtml(classes), + selectors: buildSelectors(classes) + }; + return { + css: www.css, + html: www.html, + classes: www.classes, + selectors: www.selectors, + mixin: function(o) { + _.mixin(o, www); + } + }; + } + function buildHtml(c) { + return { + wrapper: '', + menu: '
    ' + }; + } + function buildSelectors(classes) { + var selectors = {}; + _.each(classes, function(v, k) { + selectors[k] = "." + v; + }); + return selectors; + } + function buildCss() { + var css = { + wrapper: { + position: "relative", + display: "inline-block" + }, + hint: { + position: "absolute", + top: "0", + left: "0", + borderColor: "transparent", + boxShadow: "none", + opacity: "1" + }, + input: { + position: "relative", + verticalAlign: "top", + backgroundColor: "transparent" + }, + inputWithNoHint: { + position: "relative", + verticalAlign: "top" + }, + menu: { + position: "absolute", + top: "100%", + left: "0", + zIndex: "100", + display: "none" + }, + ltr: { + left: "0", + right: "auto" + }, + rtl: { + left: "auto", + right: " 0" + } + }; + if (_.isMsie()) { + _.mixin(css.input, { + backgroundImage: "url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)" + }); + } + return css; + } + }(); + var EventBus = function() { + "use strict"; + var namespace, deprecationMap; + namespace = "typeahead:"; + deprecationMap = { + render: "rendered", + cursorchange: "cursorchanged", + select: "selected", + autocomplete: "autocompleted" + }; + function EventBus(o) { + if (!o || !o.el) { + $.error("EventBus initialized without el"); + } + this.$el = $(o.el); + } + _.mixin(EventBus.prototype, { + _trigger: function(type, args) { + var $e = $.Event(namespace + type); + this.$el.trigger.call(this.$el, $e, args || []); + return $e; + }, + before: function(type) { + var args, $e; + args = [].slice.call(arguments, 1); + $e = this._trigger("before" + type, args); + return $e.isDefaultPrevented(); + }, + trigger: function(type) { + var deprecatedType; + this._trigger(type, [].slice.call(arguments, 1)); + if (deprecatedType = deprecationMap[type]) { + this._trigger(deprecatedType, [].slice.call(arguments, 1)); + } + } + }); + return EventBus; + }(); + var EventEmitter = function() { + "use strict"; + var splitter = /\s+/, nextTick = getNextTick(); + return { + onSync: onSync, + onAsync: onAsync, + off: off, + trigger: trigger + }; + function on(method, types, cb, context) { + var type; + if (!cb) { + return this; + } + types = types.split(splitter); + cb = context ? bindContext(cb, context) : cb; + this._callbacks = this._callbacks || {}; + while (type = types.shift()) { + this._callbacks[type] = this._callbacks[type] || { + sync: [], + async: [] + }; + this._callbacks[type][method].push(cb); + } + return this; + } + function onAsync(types, cb, context) { + return on.call(this, "async", types, cb, context); + } + function onSync(types, cb, context) { + return on.call(this, "sync", types, cb, context); + } + function off(types) { + var type; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + while (type = types.shift()) { + delete this._callbacks[type]; + } + return this; + } + function trigger(types) { + var type, callbacks, args, syncFlush, asyncFlush; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + args = [].slice.call(arguments, 1); + while ((type = types.shift()) && (callbacks = this._callbacks[type])) { + syncFlush = getFlush(callbacks.sync, this, [ type ].concat(args)); + asyncFlush = getFlush(callbacks.async, this, [ type ].concat(args)); + syncFlush() && nextTick(asyncFlush); + } + return this; + } + function getFlush(callbacks, context, args) { + return flush; + function flush() { + var cancelled; + for (var i = 0, len = callbacks.length; !cancelled && i < len; i += 1) { + cancelled = callbacks[i].apply(context, args) === false; + } + return !cancelled; + } + } + function getNextTick() { + var nextTickFn; + if (window.setImmediate) { + nextTickFn = function nextTickSetImmediate(fn) { + setImmediate(function() { + fn(); + }); + }; + } else { + nextTickFn = function nextTickSetTimeout(fn) { + setTimeout(function() { + fn(); + }, 0); + }; + } + return nextTickFn; + } + function bindContext(fn, context) { + return fn.bind ? fn.bind(context) : function() { + fn.apply(context, [].slice.call(arguments, 0)); + }; + } + }(); + var highlight = function(doc) { + "use strict"; + var defaults = { + node: null, + pattern: null, + tagName: "strong", + className: null, + wordsOnly: false, + caseSensitive: false, + diacriticInsensitive: false + }; + var accented = { + A: "[AaªÀ-Åà-åĀ-ąǍǎȀ-ȃȦȧᴬᵃḀḁẚẠ-ảₐ℀℁℻⒜Ⓐⓐ㍱-㍴㎀-㎄㎈㎉㎩-㎯㏂㏊㏟㏿Aa]", + B: "[BbᴮᵇḂ-ḇℬ⒝Ⓑⓑ㍴㎅-㎇㏃㏈㏔㏝Bb]", + C: "[CcÇçĆ-čᶜ℀ℂ℃℅℆ℭⅭⅽ⒞Ⓒⓒ㍶㎈㎉㎝㎠㎤㏄-㏇Cc]", + D: "[DdĎďDŽ-džDZ-dzᴰᵈḊ-ḓⅅⅆⅮⅾ⒟Ⓓⓓ㋏㍲㍷-㍹㎗㎭-㎯㏅㏈Dd]", + E: "[EeÈ-Ëè-ëĒ-ěȄ-ȇȨȩᴱᵉḘ-ḛẸ-ẽₑ℡ℯℰⅇ⒠Ⓔⓔ㉐㋍㋎Ee]", + F: "[FfᶠḞḟ℉ℱ℻⒡Ⓕⓕ㎊-㎌㎙ff-fflFf]", + G: "[GgĜ-ģǦǧǴǵᴳᵍḠḡℊ⒢Ⓖⓖ㋌㋍㎇㎍-㎏㎓㎬㏆㏉㏒㏿Gg]", + H: "[HhĤĥȞȟʰᴴḢ-ḫẖℋ-ℎ⒣Ⓗⓗ㋌㍱㎐-㎔㏊㏋㏗Hh]", + I: "[IiÌ-Ïì-ïĨ-İIJijǏǐȈ-ȋᴵᵢḬḭỈ-ịⁱℐℑℹⅈⅠ-ⅣⅥ-ⅨⅪⅫⅰ-ⅳⅵ-ⅸⅺⅻ⒤Ⓘⓘ㍺㏌㏕fiffiIi]", + J: "[JjIJ-ĵLJ-njǰʲᴶⅉ⒥ⒿⓙⱼJj]", + K: "[KkĶķǨǩᴷᵏḰ-ḵK⒦Ⓚⓚ㎄㎅㎉㎏㎑㎘㎞㎢㎦㎪㎸㎾㏀㏆㏍-㏏Kk]", + L: "[LlĹ-ŀLJ-ljˡᴸḶḷḺ-ḽℒℓ℡Ⅼⅼ⒧Ⓛⓛ㋏㎈㎉㏐-㏓㏕㏖㏿flfflLl]", + M: "[MmᴹᵐḾ-ṃ℠™ℳⅯⅿ⒨Ⓜⓜ㍷-㍹㎃㎆㎎㎒㎖㎙-㎨㎫㎳㎷㎹㎽㎿㏁㏂㏎㏐㏔-㏖㏘㏙㏞㏟Mm]", + N: "[NnÑñŃ-ʼnNJ-njǸǹᴺṄ-ṋⁿℕ№⒩Ⓝⓝ㎁㎋㎚㎱㎵㎻㏌㏑Nn]", + O: "[OoºÒ-Öò-öŌ-őƠơǑǒǪǫȌ-ȏȮȯᴼᵒỌ-ỏₒ℅№ℴ⒪Ⓞⓞ㍵㏇㏒㏖Oo]", + P: "[PpᴾᵖṔ-ṗℙ⒫Ⓟⓟ㉐㍱㍶㎀㎊㎩-㎬㎰㎴㎺㏋㏗-㏚Pp]", + Q: "[Qqℚ⒬Ⓠⓠ㏃Qq]", + R: "[RrŔ-řȐ-ȓʳᴿᵣṘ-ṛṞṟ₨ℛ-ℝ⒭Ⓡⓡ㋍㍴㎭-㎯㏚㏛Rr]", + S: "[SsŚ-šſȘșˢṠ-ṣ₨℁℠⒮Ⓢⓢ㎧㎨㎮-㎳㏛㏜stSs]", + T: "[TtŢ-ťȚțᵀᵗṪ-ṱẗ℡™⒯Ⓣⓣ㉐㋏㎔㏏ſtstTt]", + U: "[UuÙ-Üù-üŨ-ųƯưǓǔȔ-ȗᵁᵘᵤṲ-ṷỤ-ủ℆⒰Ⓤⓤ㍳㍺Uu]", + V: "[VvᵛᵥṼ-ṿⅣ-Ⅷⅳ-ⅷ⒱Ⓥⓥⱽ㋎㍵㎴-㎹㏜㏞Vv]", + W: "[WwŴŵʷᵂẀ-ẉẘ⒲Ⓦⓦ㎺-㎿㏝Ww]", + X: "[XxˣẊ-ẍₓ℻Ⅸ-Ⅻⅸ-ⅻ⒳Ⓧⓧ㏓Xx]", + Y: "[YyÝýÿŶ-ŸȲȳʸẎẏẙỲ-ỹ⒴Ⓨⓨ㏉Yy]", + Z: "[ZzŹ-žDZ-dzᶻẐ-ẕℤℨ⒵Ⓩⓩ㎐-㎔Zz]" + }; + return function hightlight(o) { + var regex; + o = _.mixin({}, defaults, o); + if (!o.node || !o.pattern) { + return; + } + o.pattern = _.isArray(o.pattern) ? o.pattern : [ o.pattern ]; + regex = getRegex(o.pattern, o.caseSensitive, o.wordsOnly, o.diacriticInsensitive); + traverse(o.node, hightlightTextNode); + function hightlightTextNode(textNode) { + var match, patternNode, wrapperNode; + if (match = regex.exec(textNode.data)) { + wrapperNode = doc.createElement(o.tagName); + o.className && (wrapperNode.className = o.className); + patternNode = textNode.splitText(match.index); + patternNode.splitText(match[0].length); + wrapperNode.appendChild(patternNode.cloneNode(true)); + textNode.parentNode.replaceChild(wrapperNode, patternNode); + } + return !!match; + } + function traverse(el, hightlightTextNode) { + var childNode, TEXT_NODE_TYPE = 3; + for (var i = 0; i < el.childNodes.length; i++) { + childNode = el.childNodes[i]; + if (childNode.nodeType === TEXT_NODE_TYPE) { + i += hightlightTextNode(childNode) ? 1 : 0; + } else { + traverse(childNode, hightlightTextNode); + } + } + } + }; + function accent_replacer(chr) { + return accented[chr.toUpperCase()] || chr; + } + function getRegex(patterns, caseSensitive, wordsOnly, diacriticInsensitive) { + var escapedPatterns = [], regexStr; + for (var i = 0, len = patterns.length; i < len; i++) { + var escapedWord = _.escapeRegExChars(patterns[i]); + if (diacriticInsensitive) { + escapedWord = escapedWord.replace(/\S/g, accent_replacer); + } + escapedPatterns.push(escapedWord); + } + regexStr = wordsOnly ? "\\b(" + escapedPatterns.join("|") + ")\\b" : "(" + escapedPatterns.join("|") + ")"; + return caseSensitive ? new RegExp(regexStr) : new RegExp(regexStr, "i"); + } + }(window.document); + var Input = function() { + "use strict"; + var specialKeyCodeMap; + specialKeyCodeMap = { + 9: "tab", + 27: "esc", + 37: "left", + 39: "right", + 13: "enter", + 38: "up", + 40: "down" + }; + function Input(o, www) { + var id; + o = o || {}; + if (!o.input) { + $.error("input is missing"); + } + www.mixin(this); + this.$hint = $(o.hint); + this.$input = $(o.input); + this.$menu = $(o.menu); + id = this.$input.attr("id") || _.guid(); + this.$menu.attr("id", id + "_listbox"); + this.$hint.attr({ + "aria-hidden": true + }); + this.$input.attr({ + "aria-owns": id + "_listbox", + role: "combobox", + "aria-autocomplete": "list", + "aria-expanded": false + }); + this.query = this.$input.val(); + this.queryWhenFocused = this.hasFocus() ? this.query : null; + this.$overflowHelper = buildOverflowHelper(this.$input); + this._checkLanguageDirection(); + if (this.$hint.length === 0) { + this.setHint = this.getHint = this.clearHint = this.clearHintIfInvalid = _.noop; + } + this.onSync("cursorchange", this._updateDescendent); + } + Input.normalizeQuery = function(str) { + return _.toStr(str).replace(/^\s*/g, "").replace(/\s{2,}/g, " "); + }; + _.mixin(Input.prototype, EventEmitter, { + _onBlur: function onBlur() { + this.resetInputValue(); + this.trigger("blurred"); + }, + _onFocus: function onFocus() { + this.queryWhenFocused = this.query; + this.trigger("focused"); + }, + _onKeydown: function onKeydown($e) { + var keyName = specialKeyCodeMap[$e.which || $e.keyCode]; + this._managePreventDefault(keyName, $e); + if (keyName && this._shouldTrigger(keyName, $e)) { + this.trigger(keyName + "Keyed", $e); + } + }, + _onInput: function onInput() { + this._setQuery(this.getInputValue()); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + _managePreventDefault: function managePreventDefault(keyName, $e) { + var preventDefault; + switch (keyName) { + case "up": + case "down": + preventDefault = !withModifier($e); + break; + + default: + preventDefault = false; + } + preventDefault && $e.preventDefault(); + }, + _shouldTrigger: function shouldTrigger(keyName, $e) { + var trigger; + switch (keyName) { + case "tab": + trigger = !withModifier($e); + break; + + default: + trigger = true; + } + return trigger; + }, + _checkLanguageDirection: function checkLanguageDirection() { + var dir = (this.$input.css("direction") || "ltr").toLowerCase(); + if (this.dir !== dir) { + this.dir = dir; + this.$hint.attr("dir", dir); + this.trigger("langDirChanged", dir); + } + }, + _setQuery: function setQuery(val, silent) { + var areEquivalent, hasDifferentWhitespace; + areEquivalent = areQueriesEquivalent(val, this.query); + hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; + this.query = val; + if (!silent && !areEquivalent) { + this.trigger("queryChanged", this.query); + } else if (!silent && hasDifferentWhitespace) { + this.trigger("whitespaceChanged", this.query); + } + }, + _updateDescendent: function updateDescendent(event, id) { + this.$input.attr("aria-activedescendant", id); + }, + bind: function() { + var that = this, onBlur, onFocus, onKeydown, onInput; + onBlur = _.bind(this._onBlur, this); + onFocus = _.bind(this._onFocus, this); + onKeydown = _.bind(this._onKeydown, this); + onInput = _.bind(this._onInput, this); + this.$input.on("blur.tt", onBlur).on("focus.tt", onFocus).on("keydown.tt", onKeydown); + if (!_.isMsie() || _.isMsie() > 9) { + this.$input.on("input.tt", onInput); + } else { + this.$input.on("keydown.tt keypress.tt cut.tt paste.tt", function($e) { + if (specialKeyCodeMap[$e.which || $e.keyCode]) { + return; + } + _.defer(_.bind(that._onInput, that, $e)); + }); + } + return this; + }, + focus: function focus() { + this.$input.focus(); + }, + blur: function blur() { + this.$input.blur(); + }, + getLangDir: function getLangDir() { + return this.dir; + }, + getQuery: function getQuery() { + return this.query || ""; + }, + setQuery: function setQuery(val, silent) { + this.setInputValue(val); + this._setQuery(val, silent); + }, + hasQueryChangedSinceLastFocus: function hasQueryChangedSinceLastFocus() { + return this.query !== this.queryWhenFocused; + }, + getInputValue: function getInputValue() { + return this.$input.val(); + }, + setInputValue: function setInputValue(value) { + this.$input.val(value); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + resetInputValue: function resetInputValue() { + this.setInputValue(this.query); + }, + getHint: function getHint() { + return this.$hint.val(); + }, + setHint: function setHint(value) { + this.$hint.val(value); + }, + clearHint: function clearHint() { + this.setHint(""); + }, + clearHintIfInvalid: function clearHintIfInvalid() { + var val, hint, valIsPrefixOfHint, isValid; + val = this.getInputValue(); + hint = this.getHint(); + valIsPrefixOfHint = val !== hint && hint.indexOf(val) === 0; + isValid = val !== "" && valIsPrefixOfHint && !this.hasOverflow(); + !isValid && this.clearHint(); + }, + hasFocus: function hasFocus() { + return this.$input.is(":focus"); + }, + hasOverflow: function hasOverflow() { + var constraint = this.$input.width() - 2; + this.$overflowHelper.text(this.getInputValue()); + return this.$overflowHelper.width() >= constraint; + }, + isCursorAtEnd: function() { + var valueLength, selectionStart, range; + valueLength = this.$input.val().length; + selectionStart = this.$input[0].selectionStart; + if (_.isNumber(selectionStart)) { + return selectionStart === valueLength; + } else if (document.selection) { + range = document.selection.createRange(); + range.moveStart("character", -valueLength); + return valueLength === range.text.length; + } + return true; + }, + destroy: function destroy() { + this.$hint.off(".tt"); + this.$input.off(".tt"); + this.$overflowHelper.remove(); + this.$hint = this.$input = this.$overflowHelper = $("
    "); + }, + setAriaExpanded: function setAriaExpanded(value) { + this.$input.attr("aria-expanded", value); + } + }); + return Input; + function buildOverflowHelper($input) { + return $('').css({ + position: "absolute", + visibility: "hidden", + whiteSpace: "pre", + fontFamily: $input.css("font-family"), + fontSize: $input.css("font-size"), + fontStyle: $input.css("font-style"), + fontVariant: $input.css("font-variant"), + fontWeight: $input.css("font-weight"), + wordSpacing: $input.css("word-spacing"), + letterSpacing: $input.css("letter-spacing"), + textIndent: $input.css("text-indent"), + textRendering: $input.css("text-rendering"), + textTransform: $input.css("text-transform") + }).insertAfter($input); + } + function areQueriesEquivalent(a, b) { + return Input.normalizeQuery(a) === Input.normalizeQuery(b); + } + function withModifier($e) { + return $e.altKey || $e.ctrlKey || $e.metaKey || $e.shiftKey; + } + }(); + var Dataset = function() { + "use strict"; + var keys, nameGenerator; + keys = { + dataset: "tt-selectable-dataset", + val: "tt-selectable-display", + obj: "tt-selectable-object" + }; + nameGenerator = _.getIdGenerator(); + function Dataset(o, www) { + o = o || {}; + o.templates = o.templates || {}; + o.templates.notFound = o.templates.notFound || o.templates.empty; + if (!o.source) { + $.error("missing source"); + } + if (!o.node) { + $.error("missing node"); + } + if (o.name && !isValidName(o.name)) { + $.error("invalid dataset name: " + o.name); + } + www.mixin(this); + this.highlight = !!o.highlight; + this.name = _.toStr(o.name || nameGenerator()); + this.limit = o.limit || 5; + this.displayFn = getDisplayFn(o.display || o.displayKey); + this.templates = getTemplates(o.templates, this.displayFn); + this.source = o.source.__ttAdapter ? o.source.__ttAdapter() : o.source; + this.async = _.isUndefined(o.async) ? this.source.length > 2 : !!o.async; + this._resetLastSuggestion(); + this.$el = $(o.node).attr("role", "presentation").addClass(this.classes.dataset).addClass(this.classes.dataset + "-" + this.name); + } + Dataset.extractData = function extractData(el) { + var $el = $(el); + if ($el.data(keys.obj)) { + return { + dataset: $el.data(keys.dataset) || "", + val: $el.data(keys.val) || "", + obj: $el.data(keys.obj) || null + }; + } + return null; + }; + _.mixin(Dataset.prototype, EventEmitter, { + _overwrite: function overwrite(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (this.async && this.templates.pending) { + this._renderPending(query); + } else if (!this.async && this.templates.notFound) { + this._renderNotFound(query); + } else { + this._empty(); + } + this.trigger("rendered", suggestions, false, this.name); + }, + _append: function append(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length && this.$lastSuggestion.length) { + this._appendSuggestions(query, suggestions); + } else if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (!this.$lastSuggestion.length && this.templates.notFound) { + this._renderNotFound(query); + } + this.trigger("rendered", suggestions, true, this.name); + }, + _renderSuggestions: function renderSuggestions(query, suggestions) { + var $fragment; + $fragment = this._getSuggestionsFragment(query, suggestions); + this.$lastSuggestion = $fragment.children().last(); + this.$el.html($fragment).prepend(this._getHeader(query, suggestions)).append(this._getFooter(query, suggestions)); + }, + _appendSuggestions: function appendSuggestions(query, suggestions) { + var $fragment, $lastSuggestion; + $fragment = this._getSuggestionsFragment(query, suggestions); + $lastSuggestion = $fragment.children().last(); + this.$lastSuggestion.after($fragment); + this.$lastSuggestion = $lastSuggestion; + }, + _renderPending: function renderPending(query) { + var template = this.templates.pending; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _renderNotFound: function renderNotFound(query) { + var template = this.templates.notFound; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _empty: function empty() { + this.$el.empty(); + this._resetLastSuggestion(); + }, + _getSuggestionsFragment: function getSuggestionsFragment(query, suggestions) { + var that = this, fragment; + fragment = document.createDocumentFragment(); + _.each(suggestions, function getSuggestionNode(suggestion) { + var $el, context; + context = that._injectQuery(query, suggestion); + $el = $(that.templates.suggestion(context)).data(keys.dataset, that.name).data(keys.obj, suggestion).data(keys.val, that.displayFn(suggestion)).addClass(that.classes.suggestion + " " + that.classes.selectable); + fragment.appendChild($el[0]); + }); + this.highlight && highlight({ + className: this.classes.highlight, + node: fragment, + pattern: query + }); + return $(fragment); + }, + _getFooter: function getFooter(query, suggestions) { + return this.templates.footer ? this.templates.footer({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _getHeader: function getHeader(query, suggestions) { + return this.templates.header ? this.templates.header({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _resetLastSuggestion: function resetLastSuggestion() { + this.$lastSuggestion = $(); + }, + _injectQuery: function injectQuery(query, obj) { + return _.isObject(obj) ? _.mixin({ + _query: query + }, obj) : obj; + }, + update: function update(query) { + var that = this, canceled = false, syncCalled = false, rendered = 0; + this.cancel(); + this.cancel = function cancel() { + canceled = true; + that.cancel = $.noop; + that.async && that.trigger("asyncCanceled", query, that.name); + }; + this.source(query, sync, async); + !syncCalled && sync([]); + function sync(suggestions) { + if (syncCalled) { + return; + } + syncCalled = true; + suggestions = (suggestions || []).slice(0, that.limit); + rendered = suggestions.length; + that._overwrite(query, suggestions); + if (rendered < that.limit && that.async) { + that.trigger("asyncRequested", query, that.name); + } + } + function async(suggestions) { + suggestions = suggestions || []; + if (!canceled && rendered < that.limit) { + that.cancel = $.noop; + var idx = Math.abs(rendered - that.limit); + rendered += idx; + that._append(query, suggestions.slice(0, idx)); + that.async && that.trigger("asyncReceived", query, that.name); + } + } + }, + cancel: $.noop, + clear: function clear() { + this._empty(); + this.cancel(); + this.trigger("cleared"); + }, + isEmpty: function isEmpty() { + return this.$el.is(":empty"); + }, + destroy: function destroy() { + this.$el = $("
    "); + } + }); + return Dataset; + function getDisplayFn(display) { + display = display || _.stringify; + return _.isFunction(display) ? display : displayFn; + function displayFn(obj) { + return obj[display]; + } + } + function getTemplates(templates, displayFn) { + return { + notFound: templates.notFound && _.templatify(templates.notFound), + pending: templates.pending && _.templatify(templates.pending), + header: templates.header && _.templatify(templates.header), + footer: templates.footer && _.templatify(templates.footer), + suggestion: templates.suggestion ? userSuggestionTemplate : suggestionTemplate + }; + function userSuggestionTemplate(context) { + var template = templates.suggestion; + return $(template(context)).attr("id", _.guid()); + } + function suggestionTemplate(context) { + return $('
    ').attr("id", _.guid()).text(displayFn(context)); + } + } + function isValidName(str) { + return /^[_a-zA-Z0-9-]+$/.test(str); + } + }(); + var Menu = function() { + "use strict"; + function Menu(o, www) { + var that = this; + o = o || {}; + if (!o.node) { + $.error("node is required"); + } + www.mixin(this); + this.$node = $(o.node); + this.query = null; + this.datasets = _.map(o.datasets, initializeDataset); + function initializeDataset(oDataset) { + var node = that.$node.find(oDataset.node).first(); + oDataset.node = node.length ? node : $("
    ").appendTo(that.$node); + return new Dataset(oDataset, www); + } + } + _.mixin(Menu.prototype, EventEmitter, { + _onSelectableClick: function onSelectableClick($e) { + this.trigger("selectableClicked", $($e.currentTarget)); + }, + _onRendered: function onRendered(type, dataset, suggestions, async) { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetRendered", dataset, suggestions, async); + }, + _onCleared: function onCleared() { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetCleared"); + }, + _propagate: function propagate() { + this.trigger.apply(this, arguments); + }, + _allDatasetsEmpty: function allDatasetsEmpty() { + return _.every(this.datasets, _.bind(function isDatasetEmpty(dataset) { + var isEmpty = dataset.isEmpty(); + this.$node.attr("aria-expanded", !isEmpty); + return isEmpty; + }, this)); + }, + _getSelectables: function getSelectables() { + return this.$node.find(this.selectors.selectable); + }, + _removeCursor: function _removeCursor() { + var $selectable = this.getActiveSelectable(); + $selectable && $selectable.removeClass(this.classes.cursor); + }, + _ensureVisible: function ensureVisible($el) { + var elTop, elBottom, nodeScrollTop, nodeHeight; + elTop = $el.position().top; + elBottom = elTop + $el.outerHeight(true); + nodeScrollTop = this.$node.scrollTop(); + nodeHeight = this.$node.height() + parseInt(this.$node.css("paddingTop"), 10) + parseInt(this.$node.css("paddingBottom"), 10); + if (elTop < 0) { + this.$node.scrollTop(nodeScrollTop + elTop); + } else if (nodeHeight < elBottom) { + this.$node.scrollTop(nodeScrollTop + (elBottom - nodeHeight)); + } + }, + bind: function() { + var that = this, onSelectableClick; + onSelectableClick = _.bind(this._onSelectableClick, this); + this.$node.on("click.tt", this.selectors.selectable, onSelectableClick); + this.$node.on("mouseover", this.selectors.selectable, function() { + that.setCursor($(this)); + }); + this.$node.on("mouseleave", function() { + that._removeCursor(); + }); + _.each(this.datasets, function(dataset) { + dataset.onSync("asyncRequested", that._propagate, that).onSync("asyncCanceled", that._propagate, that).onSync("asyncReceived", that._propagate, that).onSync("rendered", that._onRendered, that).onSync("cleared", that._onCleared, that); + }); + return this; + }, + isOpen: function isOpen() { + return this.$node.hasClass(this.classes.open); + }, + open: function open() { + this.$node.scrollTop(0); + this.$node.addClass(this.classes.open); + }, + close: function close() { + this.$node.attr("aria-expanded", false); + this.$node.removeClass(this.classes.open); + this._removeCursor(); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.attr("dir", dir); + }, + selectableRelativeToCursor: function selectableRelativeToCursor(delta) { + var $selectables, $oldCursor, oldIndex, newIndex; + $oldCursor = this.getActiveSelectable(); + $selectables = this._getSelectables(); + oldIndex = $oldCursor ? $selectables.index($oldCursor) : -1; + newIndex = oldIndex + delta; + newIndex = (newIndex + 1) % ($selectables.length + 1) - 1; + newIndex = newIndex < -1 ? $selectables.length - 1 : newIndex; + return newIndex === -1 ? null : $selectables.eq(newIndex); + }, + setCursor: function setCursor($selectable) { + this._removeCursor(); + if ($selectable = $selectable && $selectable.first()) { + $selectable.addClass(this.classes.cursor); + this._ensureVisible($selectable); + } + }, + getSelectableData: function getSelectableData($el) { + return $el && $el.length ? Dataset.extractData($el) : null; + }, + getActiveSelectable: function getActiveSelectable() { + var $selectable = this._getSelectables().filter(this.selectors.cursor).first(); + return $selectable.length ? $selectable : null; + }, + getTopSelectable: function getTopSelectable() { + var $selectable = this._getSelectables().first(); + return $selectable.length ? $selectable : null; + }, + update: function update(query) { + var isValidUpdate = query !== this.query; + if (isValidUpdate) { + this.query = query; + _.each(this.datasets, updateDataset); + } + return isValidUpdate; + function updateDataset(dataset) { + dataset.update(query); + } + }, + empty: function empty() { + _.each(this.datasets, clearDataset); + this.query = null; + this.$node.addClass(this.classes.empty); + function clearDataset(dataset) { + dataset.clear(); + } + }, + destroy: function destroy() { + this.$node.off(".tt"); + this.$node = $("
    "); + _.each(this.datasets, destroyDataset); + function destroyDataset(dataset) { + dataset.destroy(); + } + } + }); + return Menu; + }(); + var Status = function() { + "use strict"; + function Status(options) { + this.$el = $("", { + role: "status", + "aria-live": "polite" + }).css({ + position: "absolute", + padding: "0", + border: "0", + height: "1px", + width: "1px", + "margin-bottom": "-1px", + "margin-right": "-1px", + overflow: "hidden", + clip: "rect(0 0 0 0)", + "white-space": "nowrap" + }); + options.$input.after(this.$el); + _.each(options.menu.datasets, _.bind(function(dataset) { + if (dataset.onSync) { + dataset.onSync("rendered", _.bind(this.update, this)); + dataset.onSync("cleared", _.bind(this.cleared, this)); + } + }, this)); + } + _.mixin(Status.prototype, { + update: function update(event, suggestions) { + var length = suggestions.length; + var words; + if (length === 1) { + words = { + result: "result", + is: "is" + }; + } else { + words = { + result: "results", + is: "are" + }; + } + this.$el.text(length + " " + words.result + " " + words.is + " available, use up and down arrow keys to navigate."); + }, + cleared: function() { + this.$el.text(""); + } + }); + return Status; + }(); + var DefaultMenu = function() { + "use strict"; + var s = Menu.prototype; + function DefaultMenu() { + Menu.apply(this, [].slice.call(arguments, 0)); + } + _.mixin(DefaultMenu.prototype, Menu.prototype, { + open: function open() { + !this._allDatasetsEmpty() && this._show(); + return s.open.apply(this, [].slice.call(arguments, 0)); + }, + close: function close() { + this._hide(); + return s.close.apply(this, [].slice.call(arguments, 0)); + }, + _onRendered: function onRendered() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onRendered.apply(this, [].slice.call(arguments, 0)); + }, + _onCleared: function onCleared() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onCleared.apply(this, [].slice.call(arguments, 0)); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.css(dir === "ltr" ? this.css.ltr : this.css.rtl); + return s.setLanguageDirection.apply(this, [].slice.call(arguments, 0)); + }, + _hide: function hide() { + this.$node.hide(); + }, + _show: function show() { + this.$node.css("display", "block"); + } + }); + return DefaultMenu; + }(); + var Typeahead = function() { + "use strict"; + function Typeahead(o, www) { + var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged; + o = o || {}; + if (!o.input) { + $.error("missing input"); + } + if (!o.menu) { + $.error("missing menu"); + } + if (!o.eventBus) { + $.error("missing event bus"); + } + www.mixin(this); + this.eventBus = o.eventBus; + this.minLength = _.isNumber(o.minLength) ? o.minLength : 1; + this.input = o.input; + this.menu = o.menu; + this.enabled = true; + this.autoselect = !!o.autoselect; + this.active = false; + this.input.hasFocus() && this.activate(); + this.dir = this.input.getLangDir(); + this._hacks(); + this.menu.bind().onSync("selectableClicked", this._onSelectableClicked, this).onSync("asyncRequested", this._onAsyncRequested, this).onSync("asyncCanceled", this._onAsyncCanceled, this).onSync("asyncReceived", this._onAsyncReceived, this).onSync("datasetRendered", this._onDatasetRendered, this).onSync("datasetCleared", this._onDatasetCleared, this); + onFocused = c(this, "activate", "open", "_onFocused"); + onBlurred = c(this, "deactivate", "_onBlurred"); + onEnterKeyed = c(this, "isActive", "isOpen", "_onEnterKeyed"); + onTabKeyed = c(this, "isActive", "isOpen", "_onTabKeyed"); + onEscKeyed = c(this, "isActive", "_onEscKeyed"); + onUpKeyed = c(this, "isActive", "open", "_onUpKeyed"); + onDownKeyed = c(this, "isActive", "open", "_onDownKeyed"); + onLeftKeyed = c(this, "isActive", "isOpen", "_onLeftKeyed"); + onRightKeyed = c(this, "isActive", "isOpen", "_onRightKeyed"); + onQueryChanged = c(this, "_openIfActive", "_onQueryChanged"); + onWhitespaceChanged = c(this, "_openIfActive", "_onWhitespaceChanged"); + this.input.bind().onSync("focused", onFocused, this).onSync("blurred", onBlurred, this).onSync("enterKeyed", onEnterKeyed, this).onSync("tabKeyed", onTabKeyed, this).onSync("escKeyed", onEscKeyed, this).onSync("upKeyed", onUpKeyed, this).onSync("downKeyed", onDownKeyed, this).onSync("leftKeyed", onLeftKeyed, this).onSync("rightKeyed", onRightKeyed, this).onSync("queryChanged", onQueryChanged, this).onSync("whitespaceChanged", onWhitespaceChanged, this).onSync("langDirChanged", this._onLangDirChanged, this); + } + _.mixin(Typeahead.prototype, { + _hacks: function hacks() { + var $input, $menu; + $input = this.input.$input || $("
    "); + $menu = this.menu.$node || $("
    "); + $input.on("blur.tt", function($e) { + var active, isActive, hasActive; + active = document.activeElement; + isActive = $menu.is(active); + hasActive = $menu.has(active).length > 0; + if (_.isMsie() && (isActive || hasActive)) { + $e.preventDefault(); + $e.stopImmediatePropagation(); + _.defer(function() { + $input.focus(); + }); + } + }); + $menu.on("mousedown.tt", function($e) { + $e.preventDefault(); + }); + }, + _onSelectableClicked: function onSelectableClicked(type, $el) { + this.select($el); + }, + _onDatasetCleared: function onDatasetCleared() { + this._updateHint(); + }, + _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) { + this._updateHint(); + if (this.autoselect) { + var cursorClass = this.selectors.cursor.substr(1); + this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass); + } + this.eventBus.trigger("render", suggestions, async, dataset); + }, + _onAsyncRequested: function onAsyncRequested(type, dataset, query) { + this.eventBus.trigger("asyncrequest", query, dataset); + }, + _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) { + this.eventBus.trigger("asynccancel", query, dataset); + }, + _onAsyncReceived: function onAsyncReceived(type, dataset, query) { + this.eventBus.trigger("asyncreceive", query, dataset); + }, + _onFocused: function onFocused() { + this._minLengthMet() && this.menu.update(this.input.getQuery()); + }, + _onBlurred: function onBlurred() { + if (this.input.hasQueryChangedSinceLastFocus()) { + this.eventBus.trigger("change", this.input.getQuery()); + } + }, + _onEnterKeyed: function onEnterKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + if (this.select($selectable)) { + $e.preventDefault(); + $e.stopPropagation(); + } + } else if (this.autoselect) { + if (this.select(this.menu.getTopSelectable())) { + $e.preventDefault(); + $e.stopPropagation(); + } + } + }, + _onTabKeyed: function onTabKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + this.select($selectable) && $e.preventDefault(); + } else if (this.autoselect) { + if ($selectable = this.menu.getTopSelectable()) { + this.autocomplete($selectable) && $e.preventDefault(); + } + } + }, + _onEscKeyed: function onEscKeyed() { + this.close(); + }, + _onUpKeyed: function onUpKeyed() { + this.moveCursor(-1); + }, + _onDownKeyed: function onDownKeyed() { + this.moveCursor(+1); + }, + _onLeftKeyed: function onLeftKeyed() { + if (this.dir === "rtl" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onRightKeyed: function onRightKeyed() { + if (this.dir === "ltr" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onQueryChanged: function onQueryChanged(e, query) { + this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty(); + }, + _onWhitespaceChanged: function onWhitespaceChanged() { + this._updateHint(); + }, + _onLangDirChanged: function onLangDirChanged(e, dir) { + if (this.dir !== dir) { + this.dir = dir; + this.menu.setLanguageDirection(dir); + } + }, + _openIfActive: function openIfActive() { + this.isActive() && this.open(); + }, + _minLengthMet: function minLengthMet(query) { + query = _.isString(query) ? query : this.input.getQuery() || ""; + return query.length >= this.minLength; + }, + _updateHint: function updateHint() { + var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match; + $selectable = this.menu.getTopSelectable(); + data = this.menu.getSelectableData($selectable); + val = this.input.getInputValue(); + if (data && !_.isBlankString(val) && !this.input.hasOverflow()) { + query = Input.normalizeQuery(val); + escapedQuery = _.escapeRegExChars(query); + frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i"); + match = frontMatchRegEx.exec(data.val); + match && this.input.setHint(val + match[1]); + } else { + this.input.clearHint(); + } + }, + isEnabled: function isEnabled() { + return this.enabled; + }, + enable: function enable() { + this.enabled = true; + }, + disable: function disable() { + this.enabled = false; + }, + isActive: function isActive() { + return this.active; + }, + activate: function activate() { + if (this.isActive()) { + return true; + } else if (!this.isEnabled() || this.eventBus.before("active")) { + return false; + } else { + this.active = true; + this.eventBus.trigger("active"); + return true; + } + }, + deactivate: function deactivate() { + if (!this.isActive()) { + return true; + } else if (this.eventBus.before("idle")) { + return false; + } else { + this.active = false; + this.close(); + this.eventBus.trigger("idle"); + return true; + } + }, + isOpen: function isOpen() { + return this.menu.isOpen(); + }, + open: function open() { + if (!this.isOpen() && !this.eventBus.before("open")) { + this.input.setAriaExpanded(true); + this.menu.open(); + this._updateHint(); + this.eventBus.trigger("open"); + } + return this.isOpen(); + }, + close: function close() { + if (this.isOpen() && !this.eventBus.before("close")) { + this.input.setAriaExpanded(false); + this.menu.close(); + this.input.clearHint(); + this.input.resetInputValue(); + this.eventBus.trigger("close"); + } + return !this.isOpen(); + }, + setVal: function setVal(val) { + this.input.setQuery(_.toStr(val)); + }, + getVal: function getVal() { + return this.input.getQuery(); + }, + select: function select($selectable) { + var data = this.menu.getSelectableData($selectable); + if (data && !this.eventBus.before("select", data.obj, data.dataset)) { + this.input.setQuery(data.val, true); + this.eventBus.trigger("select", data.obj, data.dataset); + this.close(); + return true; + } + return false; + }, + autocomplete: function autocomplete($selectable) { + var query, data, isValid; + query = this.input.getQuery(); + data = this.menu.getSelectableData($selectable); + isValid = data && query !== data.val; + if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) { + this.input.setQuery(data.val); + this.eventBus.trigger("autocomplete", data.obj, data.dataset); + return true; + } + return false; + }, + moveCursor: function moveCursor(delta) { + var query, $candidate, data, suggestion, datasetName, cancelMove, id; + query = this.input.getQuery(); + $candidate = this.menu.selectableRelativeToCursor(delta); + data = this.menu.getSelectableData($candidate); + suggestion = data ? data.obj : null; + datasetName = data ? data.dataset : null; + id = $candidate ? $candidate.attr("id") : null; + this.input.trigger("cursorchange", id); + cancelMove = this._minLengthMet() && this.menu.update(query); + if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) { + this.menu.setCursor($candidate); + if (data) { + if (typeof data.val === "string") { + this.input.setInputValue(data.val); + } + } else { + this.input.resetInputValue(); + this._updateHint(); + } + this.eventBus.trigger("cursorchange", suggestion, datasetName); + return true; + } + return false; + }, + destroy: function destroy() { + this.input.destroy(); + this.menu.destroy(); + } + }); + return Typeahead; + function c(ctx) { + var methods = [].slice.call(arguments, 1); + return function() { + var args = [].slice.call(arguments); + _.each(methods, function(method) { + return ctx[method].apply(ctx, args); + }); + }; + } + }(); + (function() { + "use strict"; + var old, keys, methods; + old = $.fn.typeahead; + keys = { + www: "tt-www", + attrs: "tt-attrs", + typeahead: "tt-typeahead" + }; + methods = { + initialize: function initialize(o, datasets) { + var www; + datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1); + o = o || {}; + www = WWW(o.classNames); + return this.each(attach); + function attach() { + var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor; + _.each(datasets, function(d) { + d.highlight = !!o.highlight; + }); + $input = $(this); + $wrapper = $(www.html.wrapper); + $hint = $elOrNull(o.hint); + $menu = $elOrNull(o.menu); + defaultHint = o.hint !== false && !$hint; + defaultMenu = o.menu !== false && !$menu; + defaultHint && ($hint = buildHintFromInput($input, www)); + defaultMenu && ($menu = $(www.html.menu).css(www.css.menu)); + $hint && $hint.val(""); + $input = prepInput($input, www); + if (defaultHint || defaultMenu) { + $wrapper.css(www.css.wrapper); + $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint); + $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null); + } + MenuConstructor = defaultMenu ? DefaultMenu : Menu; + eventBus = new EventBus({ + el: $input + }); + input = new Input({ + hint: $hint, + input: $input, + menu: $menu + }, www); + menu = new MenuConstructor({ + node: $menu, + datasets: datasets + }, www); + status = new Status({ + $input: $input, + menu: menu + }); + typeahead = new Typeahead({ + input: input, + menu: menu, + eventBus: eventBus, + minLength: o.minLength, + autoselect: o.autoselect + }, www); + $input.data(keys.www, www); + $input.data(keys.typeahead, typeahead); + } + }, + isEnabled: function isEnabled() { + var enabled; + ttEach(this.first(), function(t) { + enabled = t.isEnabled(); + }); + return enabled; + }, + enable: function enable() { + ttEach(this, function(t) { + t.enable(); + }); + return this; + }, + disable: function disable() { + ttEach(this, function(t) { + t.disable(); + }); + return this; + }, + isActive: function isActive() { + var active; + ttEach(this.first(), function(t) { + active = t.isActive(); + }); + return active; + }, + activate: function activate() { + ttEach(this, function(t) { + t.activate(); + }); + return this; + }, + deactivate: function deactivate() { + ttEach(this, function(t) { + t.deactivate(); + }); + return this; + }, + isOpen: function isOpen() { + var open; + ttEach(this.first(), function(t) { + open = t.isOpen(); + }); + return open; + }, + open: function open() { + ttEach(this, function(t) { + t.open(); + }); + return this; + }, + close: function close() { + ttEach(this, function(t) { + t.close(); + }); + return this; + }, + select: function select(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.select($el); + }); + return success; + }, + autocomplete: function autocomplete(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.autocomplete($el); + }); + return success; + }, + moveCursor: function moveCursoe(delta) { + var success = false; + ttEach(this.first(), function(t) { + success = t.moveCursor(delta); + }); + return success; + }, + val: function val(newVal) { + var query; + if (!arguments.length) { + ttEach(this.first(), function(t) { + query = t.getVal(); + }); + return query; + } else { + ttEach(this, function(t) { + t.setVal(_.toStr(newVal)); + }); + return this; + } + }, + destroy: function destroy() { + ttEach(this, function(typeahead, $input) { + revert($input); + typeahead.destroy(); + }); + return this; + } + }; + $.fn.typeahead = function(method) { + if (methods[method]) { + return methods[method].apply(this, [].slice.call(arguments, 1)); + } else { + return methods.initialize.apply(this, arguments); + } + }; + $.fn.typeahead.noConflict = function noConflict() { + $.fn.typeahead = old; + return this; + }; + function ttEach($els, fn) { + $els.each(function() { + var $input = $(this), typeahead; + (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input); + }); + } + function buildHintFromInput($input, www) { + return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({ + readonly: true, + required: false + }).removeAttr("id name placeholder").removeClass("required").attr({ + spellcheck: "false", + tabindex: -1 + }); + } + function prepInput($input, www) { + $input.data(keys.attrs, { + dir: $input.attr("dir"), + autocomplete: $input.attr("autocomplete"), + spellcheck: $input.attr("spellcheck"), + style: $input.attr("style") + }); + $input.addClass(www.classes.input).attr({ + spellcheck: false + }); + try { + !$input.attr("dir") && $input.attr("dir", "auto"); + } catch (e) {} + return $input; + } + function getBackgroundStyles($el) { + return { + backgroundAttachment: $el.css("background-attachment"), + backgroundClip: $el.css("background-clip"), + backgroundColor: $el.css("background-color"), + backgroundImage: $el.css("background-image"), + backgroundOrigin: $el.css("background-origin"), + backgroundPosition: $el.css("background-position"), + backgroundRepeat: $el.css("background-repeat"), + backgroundSize: $el.css("background-size") + }; + } + function revert($input) { + var www, $wrapper; + www = $input.data(keys.www); + $wrapper = $input.parent().filter(www.selectors.wrapper); + _.each($input.data(keys.attrs), function(val, key) { + _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val); + }); + $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input); + if ($wrapper.length) { + $input.detach().insertAfter($wrapper); + $wrapper.remove(); + } + } + function $elOrNull(obj) { + var isValid, $el; + isValid = _.isJQuery(obj) || _.isElement(obj); + $el = isValid ? $(obj).first() : []; + return $el.length ? $el : null; + } + })(); +}); \ No newline at end of file diff --git a/documentation/api-reference/menu.js b/documentation/api-reference/menu.js new file mode 100644 index 0000000..2fe2214 --- /dev/null +++ b/documentation/api-reference/menu.js @@ -0,0 +1,51 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+=''; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('
  • '); + } else { + $('#main-menu').append('
  • '); + } + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/documentation/api-reference/menudata.js b/documentation/api-reference/menudata.js new file mode 100644 index 0000000..7eff031 --- /dev/null +++ b/documentation/api-reference/menudata.js @@ -0,0 +1,63 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Index",url:"classes.html"}, +{text:"Class Hierarchy",url:"hierarchy.html"}, +{text:"Class Members",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"a",url:"functions.html#index_a"}, +{text:"b",url:"functions.html#index_b"}, +{text:"c",url:"functions.html#index_c"}, +{text:"d",url:"functions.html#index_d"}, +{text:"f",url:"functions.html#index_f"}, +{text:"h",url:"functions.html#index_h"}, +{text:"i",url:"functions.html#index_i"}, +{text:"l",url:"functions.html#index_l"}, +{text:"m",url:"functions.html#index_m"}, +{text:"n",url:"functions.html#index_n"}, +{text:"r",url:"functions.html#index_r"}, +{text:"s",url:"functions.html#index_s"}, +{text:"t",url:"functions.html#index_t"}, +{text:"u",url:"functions.html#index_u"}, +{text:"v",url:"functions.html#index_v"}]}, +{text:"Functions",url:"functions_func.html",children:[ +{text:"a",url:"functions_func.html#index_a"}, +{text:"b",url:"functions_func.html#index_b"}, +{text:"c",url:"functions_func.html#index_c"}, +{text:"d",url:"functions_func.html#index_d"}, +{text:"f",url:"functions_func.html#index_f"}, +{text:"i",url:"functions_func.html#index_i"}, +{text:"m",url:"functions_func.html#index_m"}, +{text:"n",url:"functions_func.html#index_n"}, +{text:"r",url:"functions_func.html#index_r"}, +{text:"s",url:"functions_func.html#index_s"}, +{text:"u",url:"functions_func.html#index_u"}, +{text:"v",url:"functions_func.html#index_v"}]}, +{text:"Properties",url:"functions_prop.html"}]}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}]}]} diff --git a/documentation/api-reference/nav_f.png b/documentation/api-reference/nav_f.png new file mode 100644 index 0000000..72a58a5 Binary files /dev/null and b/documentation/api-reference/nav_f.png differ diff --git a/documentation/api-reference/nav_g.png b/documentation/api-reference/nav_g.png new file mode 100644 index 0000000..2093a23 Binary files /dev/null and b/documentation/api-reference/nav_g.png differ diff --git a/documentation/api-reference/nav_h.png b/documentation/api-reference/nav_h.png new file mode 100644 index 0000000..33389b1 Binary files /dev/null and b/documentation/api-reference/nav_h.png differ diff --git a/documentation/api-reference/open.png b/documentation/api-reference/open.png new file mode 100644 index 0000000..30f75c7 Binary files /dev/null and b/documentation/api-reference/open.png differ diff --git a/documentation/api-reference/protocol_installer_progress_delegate-p-members.html b/documentation/api-reference/protocol_installer_progress_delegate-p-members.html new file mode 100644 index 0000000..24e7e34 --- /dev/null +++ b/documentation/api-reference/protocol_installer_progress_delegate-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <InstallerProgressDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <InstallerProgressDelegate>, including all inherited members.

    + + + +
    installerProgressShouldDisplayWithHost: (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    installerProgressShouldStop (defined in <InstallerProgressDelegate>)<InstallerProgressDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_installer_progress_delegate-p.html b/documentation/api-reference/protocol_installer_progress_delegate-p.html new file mode 100644 index 0000000..e383859 --- /dev/null +++ b/documentation/api-reference/protocol_installer_progress_delegate-p.html @@ -0,0 +1,102 @@ + + + + + + + +Sparkle: <InstallerProgressDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <InstallerProgressDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <InstallerProgressDelegate>:
    +
    +
    + + +ShowInstallerProgress + +
    + + + + + + +

    +Instance Methods

    +(void) - installerProgressShouldDisplayWithHost:
     
    +(void) - installerProgressShouldStop
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_installer_progress_delegate-p.png b/documentation/api-reference/protocol_installer_progress_delegate-p.png new file mode 100644 index 0000000..259bf7f Binary files /dev/null and b/documentation/api-reference/protocol_installer_progress_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p-members.html new file mode 100644 index 0000000..bb83719 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUBasicUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUBasicUpdateDriverDelegate>, including all inherited members.

    + + + + +
    basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    basicDriverDidFinishLoadingAppcast (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUBasicUpdateDriverDelegate>)<SPUBasicUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.html new file mode 100644 index 0000000..d66e2fc --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.html @@ -0,0 +1,106 @@ + + + + + + + +Sparkle: <SPUBasicUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUBasicUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUBasicUpdateDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() +SPUProbingUpdateDriver() + +
    + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:systemDomain:
     
    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.png new file mode 100644 index 0000000..ef0913b Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_basic_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p-members.html new file mode 100644 index 0000000..baa799b --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p-members.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUCoreBasedUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUCoreBasedUpdateDriverDelegate>, including all inherited members.

    + + + + + + + + + + + + + + +
    basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    basicDriverDidFinishLoadingAppcast (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    coreDriverDidStartExtractingUpdate (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverDidReceiveDataOfLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverDidReceiveExpectedContentLength: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    downloadDriverWillBeginDownload (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidExtractUpdateWithProgress: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerDidStartInstalling (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    installerIsSendingAppTerminationSignal (defined in <SPUCoreBasedUpdateDriverDelegate>)<SPUCoreBasedUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.html new file mode 100644 index 0000000..79c435f --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.html @@ -0,0 +1,136 @@ + + + + + + + +Sparkle: <SPUCoreBasedUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUCoreBasedUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUCoreBasedUpdateDriverDelegate>:
    +
    +
    + + +SPUAutomaticUpdateDriver() +SPUUIBasedUpdateDriver() + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverDidFindUpdateWithAppcastItem:secondaryAppcastItem:
     
    +(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
     
    +(void) - coreDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +(void) - downloadDriverWillBeginDownload
     
    +(void) - downloadDriverDidReceiveExpectedContentLength:
     
    +(void) - downloadDriverDidReceiveDataOfLength:
     
    +(void) - coreDriverDidStartExtractingUpdate
     
    +(void) - installerDidStartInstalling
     
    +(void) - installerDidExtractUpdateWithProgress:
     
    +(void) - installerIsSendingAppTerminationSignal
     
    +(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.png new file mode 100644 index 0000000..dfa657c Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_core_based_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p-members.html new file mode 100644 index 0000000..f46ae4c --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUDownloadDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUDownloadDriverDelegate>, including all inherited members.

    + + + + + + + +
    downloadDriverDidDownloadData: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidDownloadUpdate: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidFailToDownloadFileWithError: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveDataOfLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverDidReceiveExpectedContentLength: (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    downloadDriverWillBeginDownload (defined in <SPUDownloadDriverDelegate>)<SPUDownloadDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.html new file mode 100644 index 0000000..456dd90 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.html @@ -0,0 +1,116 @@ + + + + + + + +Sparkle: <SPUDownloadDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUDownloadDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUDownloadDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() +SPUReleaseNotesDriver +SUAppcastDriver() + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - downloadDriverDidFailToDownloadFileWithError:
     
    +(void) - downloadDriverWillBeginDownload
     
    +(void) - downloadDriverDidDownloadUpdate:
     
    +(void) - downloadDriverDidDownloadData:
     
    +(void) - downloadDriverDidReceiveExpectedContentLength:
     
    +(void) - downloadDriverDidReceiveDataOfLength:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.png new file mode 100644 index 0000000..4f6ca49 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_download_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p-members.html b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p-members.html new file mode 100644 index 0000000..1e48254 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUInstallerAgentProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SPUInstallerAgentProtocol>, including all inherited members.

    + + + + + + + +
    registerApplicationBundlePath:reply: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    registerInstallationInfoData: (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    relaunchApplication (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    sendTerminationSignal (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    showProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    stopProgress (defined in <SPUInstallerAgentProtocol>)<SPUInstallerAgentProtocol>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.html b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.html new file mode 100644 index 0000000..edf2e98 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.html @@ -0,0 +1,114 @@ + + + + + + + +Sparkle: <SPUInstallerAgentProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUInstallerAgentProtocol> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUInstallerAgentProtocol>:
    +
    +
    + + +InstallerProgressAppController() + +
    + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - registerApplicationBundlePath:reply:
     
    +(void) - registerInstallationInfoData:
     
    +(void) - sendTerminationSignal
     
    +(void) - showProgress
     
    +(void) - stopProgress
     
    +(void) - relaunchApplication
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.png b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.png new file mode 100644 index 0000000..ba75681 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_installer_agent_protocol-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p-members.html new file mode 100644 index 0000000..ca925e3 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p-members.html @@ -0,0 +1,89 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUInstallerDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUInstallerDriverDelegate>, including all inherited members.

    + + + + + + + + + + +
    installerDidExtractUpdateWithProgress: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFailToApplyDeltaUpdate (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFinishInstallationAndRelaunched:acknowledgement: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidFinishPreparationAndWillInstallImmediately:silently: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidStartExtracting (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerDidStartInstalling (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerIsRequestingAbortInstallWithError: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerIsSendingAppTerminationSignal (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    installerWillFinishInstallationAndRelaunch: (defined in <SPUInstallerDriverDelegate>)<SPUInstallerDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.html new file mode 100644 index 0000000..68efcd7 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.html @@ -0,0 +1,123 @@ + + + + + + + +Sparkle: <SPUInstallerDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUInstallerDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUInstallerDriverDelegate>:
    +
    +
    + + +SPUCoreBasedUpdateDriver() + +
    + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    +(void) - installerDidStartInstalling
     
    +(void) - installerDidStartExtracting
     
    +(void) - installerDidExtractUpdateWithProgress:
     
    +(void) - installerDidFinishPreparationAndWillInstallImmediately:silently:
     
    +(void) - installerIsSendingAppTerminationSignal
     
    +(void) - installerWillFinishInstallationAndRelaunch:
     
    +(void) - installerDidFinishInstallationAndRelaunched:acknowledgement:
     
    +(void) - installerIsRequestingAbortInstallWithError:
     
    +(void) - installerDidFailToApplyDeltaUpdate
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.png new file mode 100644 index 0000000..0e2b043 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_installer_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_resumable_update-p-members.html b/documentation/api-reference/protocol_s_p_u_resumable_update-p-members.html new file mode 100644 index 0000000..95a99cd --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_resumable_update-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUResumableUpdate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUResumableUpdate>, including all inherited members.

    + + + +
    secondaryUpdateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    updateItem (defined in <SPUResumableUpdate>)<SPUResumableUpdate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_resumable_update-p.html b/documentation/api-reference/protocol_s_p_u_resumable_update-p.html new file mode 100644 index 0000000..6915d5a --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_resumable_update-p.html @@ -0,0 +1,103 @@ + + + + + + + +Sparkle: <SPUResumableUpdate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUResumableUpdate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUResumableUpdate>:
    +
    +
    + + +SPUDownloadedUpdate +SPUInformationalUpdate + +
    + + + + + + +

    +Properties

    +SUAppcastItemupdateItem
     
    +SUAppcastItemsecondaryUpdateItem
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_resumable_update-p.png b/documentation/api-reference/protocol_s_p_u_resumable_update-p.png new file mode 100644 index 0000000..cd637d7 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_resumable_update-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p-members.html new file mode 100644 index 0000000..b0c262a --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p-members.html @@ -0,0 +1,83 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUStandardUserDriverDelegate> Member List
    +
    + + + + + diff --git a/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.html new file mode 100644 index 0000000..976f8b5 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.html @@ -0,0 +1,141 @@ + + + + + + + +Sparkle: <SPUStandardUserDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUStandardUserDriverDelegate> Protocol Reference
    +
    +
    + +

    A protocol for Sparkle's standard user driver's delegate. + More...

    + +

    #import <SPUStandardUserDriverDelegate.h>

    +
    +Inheritance diagram for <SPUStandardUserDriverDelegate>:
    +
    +
    + +
    + + + + + + + + + + + +

    +Instance Methods

    +(void) - standardUserDriverWillShowModalAlert
     Called before showing a modal alert window, to give the opportunity to hide attached windows that may get in the way.
     
    +(void) - standardUserDriverDidShowModalAlert
     Called after showing a modal alert window, to give the opportunity to hide attached windows that may get in the way.
     
    (_Nullable id< SUVersionDisplay >) - standardUserDriverRequestsVersionDisplayer
     Returns an object that formats version numbers for display to the user. More...
     
    +

    Detailed Description

    +

    A protocol for Sparkle's standard user driver's delegate.

    +

    This includes methods related to UI interactions

    +

    Method Documentation

    + +

    ◆ standardUserDriverRequestsVersionDisplayer

    + +
    +
    + + + + + +
    + + + + + + + +
    - (_Nullable id <SUVersionDisplay>) standardUserDriverRequestsVersionDisplayer
    +
    +optional
    +
    + +

    Returns an object that formats version numbers for display to the user.

    +

    If you don't implement this method or return nil, the standard version formatter will be used.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.png new file mode 100644 index 0000000..be4fca4 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_standard_user_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html new file mode 100644 index 0000000..eac7ebd --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p-members.html @@ -0,0 +1,85 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUIBasedUpdateDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUIBasedUpdateDriverDelegate>, including all inherited members.

    + + + + + + +
    basicDriverDidFinishLoadingAppcast (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    basicDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    coreDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    uiDriverDidShowUpdate (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    uiDriverIsRequestingAbortUpdateWithError: (defined in <SPUUIBasedUpdateDriverDelegate>)<SPUUIBasedUpdateDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.html b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.html new file mode 100644 index 0000000..5e780b3 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.html @@ -0,0 +1,112 @@ + + + + + + + +Sparkle: <SPUUIBasedUpdateDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUIBasedUpdateDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUIBasedUpdateDriverDelegate>:
    +
    +
    + + +SPUScheduledUpdateDriver() +SPUUserInitiatedUpdateDriver() + +
    + + + + + + + + + + + + +

    +Instance Methods

    +(void) - basicDriverIsRequestingAbortUpdateWithError:
     
    +(void) - coreDriverIsRequestingAbortUpdateWithError:
     
    +(void) - uiDriverIsRequestingAbortUpdateWithError:
     
    +(void) - uiDriverDidShowUpdate
     
    +(void) - basicDriverDidFinishLoadingAppcast
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.png b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.png new file mode 100644 index 0000000..fea82ed Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_u_i_based_update_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_update_driver-p-members.html b/documentation/api-reference/protocol_s_p_u_update_driver-p-members.html new file mode 100644 index 0000000..3b6c31f --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_update_driver-p-members.html @@ -0,0 +1,86 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdateDriver> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdateDriver>, including all inherited members.

    + + + + + + + +
    abortUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    abortUpdateWithError: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeInstallingUpdateWithCompletion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    resumeUpdate:completion: (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    showingUpdate (defined in <SPUUpdateDriver>)<SPUUpdateDriver>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_update_driver-p.html b/documentation/api-reference/protocol_s_p_u_update_driver-p.html new file mode 100644 index 0000000..fb08441 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_update_driver-p.html @@ -0,0 +1,121 @@ + + + + + + + +Sparkle: <SPUUpdateDriver> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdateDriver> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdateDriver>:
    +
    +
    + + +SPUAutomaticUpdateDriver +SPUProbingUpdateDriver +SPUScheduledUpdateDriver +SPUUserInitiatedUpdateDriver + +
    + + + + + + + + + + + + +

    +Instance Methods

    +(void) - checkForUpdatesAtAppcastURL:withUserAgent:httpHeaders:preventingInstallerInteraction:completion:
     
    +(void) - resumeInstallingUpdateWithCompletion:
     
    +(void) - resumeUpdate:completion:
     
    +(void) - abortUpdate
     
    +(void) - abortUpdateWithError:
     
    + + + +

    +Properties

    +BOOL showingUpdate
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_update_driver-p.png b/documentation/api-reference/protocol_s_p_u_update_driver-p.png new file mode 100644 index 0000000..520fa17 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_update_driver-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p-members.html new file mode 100644 index 0000000..6a1c254 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterCycleDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterCycleDelegate>, including all inherited members.

    + + +
    resetUpdateCycle (defined in <SPUUpdaterCycleDelegate>)<SPUUpdaterCycleDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.html b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.html new file mode 100644 index 0000000..2aac2f2 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: <SPUUpdaterCycleDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterCycleDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdaterCycleDelegate>:
    +
    +
    + + +SPUUpdater() + +
    + + + + +

    +Instance Methods

    +(void) - resetUpdateCycle
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.png b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.png new file mode 100644 index 0000000..695d0ac Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_updater_cycle_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_updater_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_updater_delegate-p-members.html new file mode 100644 index 0000000..848e908 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_delegate-p-members.html @@ -0,0 +1,110 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterDelegate>, including all inherited members.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    allowedChannelsForUpdater:<SPUUpdaterDelegate>
    allowedSystemProfileKeysForUpdater:<SPUUpdaterDelegate>
    bestValidUpdateInAppcast:forUpdater:<SPUUpdaterDelegate>
    decryptionPasswordForUpdater:<SPUUpdaterDelegate>
    feedParametersForUpdater:sendingSystemProfile:<SPUUpdaterDelegate>
    feedURLStringForUpdater:<SPUUpdaterDelegate>
    updater:didAbortWithError:<SPUUpdaterDelegate>
    updater:didDownloadUpdate:<SPUUpdaterDelegate>
    updater:didExtractUpdate:<SPUUpdaterDelegate>
    updater:didFindValidUpdate:<SPUUpdaterDelegate>
    updater:didFinishLoadingAppcast:<SPUUpdaterDelegate>
    updater:failedToDownloadUpdate:error:<SPUUpdaterDelegate>
    updater:shouldAllowInstallerInteractionForUpdateCheck:<SPUUpdaterDelegate>
    updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:<SPUUpdaterDelegate>
    updater:userDidSkipThisVersion:<SPUUpdaterDelegate>
    updater:willDownloadUpdate:withRequest:<SPUUpdaterDelegate>
    updater:willExtractUpdate:<SPUUpdaterDelegate>
    updater:willInstallUpdate:<SPUUpdaterDelegate>
    updater:willInstallUpdateOnQuit:immediateInstallationBlock:<SPUUpdaterDelegate>
    updater:willScheduleUpdateCheckAfterDelay:<SPUUpdaterDelegate>
    updaterDidNotFindUpdate:<SPUUpdaterDelegate>
    updaterDidNotFindUpdate:error:<SPUUpdaterDelegate>
    updaterMayCheckForUpdates:<SPUUpdaterDelegate>
    updaterShouldDownloadReleaseNotes:<SPUUpdaterDelegate>
    updaterShouldPromptForPermissionToCheckForUpdates:<SPUUpdaterDelegate>
    updaterShouldRelaunchApplication:<SPUUpdaterDelegate>
    updaterWillIdleSchedulingUpdates:<SPUUpdaterDelegate>
    updaterWillRelaunchApplication:<SPUUpdaterDelegate>
    userDidCancelDownload:<SPUUpdaterDelegate>
    versionComparatorForUpdater:<SPUUpdaterDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_delegate-p.html b/documentation/api-reference/protocol_s_p_u_updater_delegate-p.html new file mode 100644 index 0000000..2a0749d --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_delegate-p.html @@ -0,0 +1,1460 @@ + + + + + + + +Sparkle: <SPUUpdaterDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterDelegate> Protocol Reference
    +
    +
    + +

    Provides methods to control the behavior of an SPUUpdater object. + More...

    + +

    #import <SPUUpdaterDelegate.h>

    +
    +Inheritance diagram for <SPUUpdaterDelegate>:
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (void) - updater:willScheduleUpdateCheckAfterDelay:
     Called when a background update will be scheduled after a delay. More...
     
    (void) - updaterWillIdleSchedulingUpdates:
     Called when no updates will be scheduled in the future. More...
     
    (BOOL) - updaterMayCheckForUpdates:
     Returns whether to allow Sparkle to pop up. More...
     
    (NSArray *) - feedParametersForUpdater:sendingSystemProfile:
     Returns additional parameters to append to the appcast URL's query string. More...
     
    (NSArray *) - allowedSystemProfileKeysForUpdater:
     Returns a list of system profile keys to be appended to the appcast URL's query string. More...
     
    (nullable NSString *) - feedURLStringForUpdater:
     Returns a custom appcast URL. More...
     
    (BOOL) - updaterShouldPromptForPermissionToCheckForUpdates:
     Returns whether Sparkle should prompt the user about automatic update checks. More...
     
    (void) - updater:didFinishLoadingAppcast:
     Called after Sparkle has downloaded the appcast from the remote server. More...
     
    (NSSet< NSString * > *) - allowedChannelsForUpdater:
     Returns the set of Sparkle channels the updater is allowed to find new updates from. More...
     
    (nullable SUAppcastItem *) - bestValidUpdateInAppcast:forUpdater:
     Returns the item in the appcast corresponding to the update that should be installed. More...
     
    (void) - updater:didFindValidUpdate:
     Called when a valid update is found by the update driver. More...
     
    (void) - updaterDidNotFindUpdate:error:
     Called when a valid update is not found. More...
     
    (void) - updaterDidNotFindUpdate:
     Called when a valid update is not found. More...
     
    (void) - updater:userDidSkipThisVersion:
     Called when an update is skipped by the user. More...
     
    (BOOL) - updaterShouldDownloadReleaseNotes:
     Returns whether the release notes (if available) should be downloaded after an update is found and shown. More...
     
    (void) - updater:willDownloadUpdate:withRequest:
     Called immediately before downloading the specified update. More...
     
    (void) - updater:didDownloadUpdate:
     Called immediately after succesfull download of the specified update. More...
     
    (void) - updater:failedToDownloadUpdate:error:
     Called after the specified update failed to download. More...
     
    (void) - userDidCancelDownload:
     Called when the user clicks the cancel button while and update is being downloaded. More...
     
    (void) - updater:willExtractUpdate:
     Called immediately before extracting the specified downloaded update. More...
     
    (void) - updater:didExtractUpdate:
     Called immediately after extracting the specified downloaded update. More...
     
    (void) - updater:willInstallUpdate:
     Called immediately before installing the specified update. More...
     
    (BOOL) - updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:
     Returns whether the relaunch should be delayed in order to perform other tasks. More...
     
    (BOOL) - updaterShouldRelaunchApplication:
     Returns whether the application should be relaunched at all. More...
     
    (void) - updaterWillRelaunchApplication:
     Called immediately before relaunching. More...
     
    (nullable id< SUVersionComparison >) - versionComparatorForUpdater:
     Returns an object that compares version numbers to determine their arithmetic relation to each other. More...
     
    (BOOL) - updater:shouldAllowInstallerInteractionForUpdateCheck:
     Returns whether or not the updater should allow interaction from the installer. More...
     
    (nullable NSString *) - decryptionPasswordForUpdater:
     Returns the decryption password (if any) which is used to extract the update archive DMG. More...
     
    (BOOL) - updater:willInstallUpdateOnQuit:immediateInstallationBlock:
     Called when an update is scheduled to be silently installed on quit after downloading the update automatically. More...
     
    (void) - updater:didAbortWithError:
     Called after an update is aborted due to an error. More...
     
    +

    Detailed Description

    +

    Provides methods to control the behavior of an SPUUpdater object.

    +

    Method Documentation

    + +

    ◆ allowedChannelsForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (NSSet<NSString *> *) allowedChannelsForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    +

    An appcast item can specify a channel the update is posted to. Without specifying a channel, the appcast item is posted to the default channel. For instance: <sparkle:version>2.0 Beta 1</sparkle:version> <sparkle:channel>beta</sparkle:channel>

    +

    This example posts an update to the 'beta' channel, so only updaters that are allowed to use the 'beta' channel can find this update.

    +

    If the <sparkle:channel> is not present, the update item is posted to the default channel and can be found by any updater.

    +

    You can pick any name you'd like for the channel. The valid characters for channel names are letters, numbers, dashes, underscores, and periods.

    +

    Note to use this feature, all app versions that your users may update from in your feed must use a version of Sparkle that supports this feature. This feature was added in Sparkle 2.

    +
    Returns
    The set of channel names the updater is allowed to find new updates in. An empty set is the default behavior, which means the updater will only look for updates in the default channel.
    + +
    +
    + +

    ◆ allowedSystemProfileKeysForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (NSArray *) allowedSystemProfileKeysForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns a list of system profile keys to be appended to the appcast URL's query string.

    +

    If this is unimplemented then all keys will be included.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    An array of system profile keys to include in the appcast URL's query string. Elements must be one of the SUSystemProfiler*Key constants
    + +
    +
    + +

    ◆ bestValidUpdateInAppcast:forUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (nullable SUAppcastItem *) bestValidUpdateInAppcast: (SUAppcast *) appcast
    forUpdater:(SPUUpdater *) updater 
    +
    +optional
    +
    + +

    Returns the item in the appcast corresponding to the update that should be installed.

    +

    Please consider using or migrating to other supported features before adopting this method. Specifically: If you want to filter out certain tagged updates (like beta updates), consider -[SPUUpdaterDelegate allowedChannelsForUpdater:] instead. If you want to treat certain updates as informational-only, consider supplying <sparkle:informationalUpdate> with a set of affected versions users are updating from.

    +

    If you're using special logic or extensions in your appcast, implement this to use your own logic for finding a valid update, if any, in the given appcast.

    +

    Do not base your logic by filtering out items with a minimum or maximum OS version or minimum autoupdate version, because Sparkle already has logic for determining whether or not those items should be filtered out. Also do not return a non-top level item from the appcast such as a delta item. Delta items will be ignored. Sparkle picks the delta item from your selection if the appropriate one is available.

    +

    This method will not be invoked with an appcast that has zero items. Pick the best item from the appcast. If an item is available that has the same version as the application or bundle to update, do not pick an item that is worse than that version.

    +

    This method may be called multiple times for different selections and filters. This method should be efficient.

    +
    Parameters
    + + + +
    appcastThe appcast that was downloaded from the remote server.
    updaterThe updater instance.
    +
    +
    +
    Returns
    The best valid appcast item. Return SUAppcastItem.emptyAppcastItem if no appcast item is valid. Return nil if you don't want to be delegated this task and want to let Sparkle handle picking the best valid update.
    + +
    +
    + +

    ◆ decryptionPasswordForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable NSString *) decryptionPasswordForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    +

    Return nil if no password should be used.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    The password used for decrypting the archive, or nil if no password should be used.
    + +
    +
    + +

    ◆ feedParametersForUpdater:sendingSystemProfile:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (NSArray *) feedParametersForUpdater: (SPUUpdater *) updater
    sendingSystemProfile:(BOOL) sendingProfile 
    +
    +optional
    +
    + +

    Returns additional parameters to append to the appcast URL's query string.

    +

    This is potentially based on whether or not Sparkle will also be sending along the system profile.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    sendingProfileWhether the system profile will also be sent.
    +
    +
    +
    Returns
    An array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user.
    + +
    +
    + +

    ◆ feedURLStringForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable NSString *) feedURLStringForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns a custom appcast URL.

    +

    Override this to dynamically specify the entire URL. Alternatively you may want to consider adding a feed parameter using -feedParametersForUpdater:sendingSystemProfile: and having the server which appcast to serve.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updater:didAbortWithError:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didAbortWithError:(NSError *) error 
    +
    +optional
    +
    + +

    Called after an update is aborted due to an error.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    errorThe error that caused the abort
    +
    +
    + +
    +
    + +

    ◆ updater:didDownloadUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didDownloadUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately after succesfull download of the specified update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that has been downloaded.
    +
    +
    + +
    +
    + +

    ◆ updater:didExtractUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didExtractUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately after extracting the specified downloaded update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that has been extracted.
    +
    +
    + +
    +
    + +

    ◆ updater:didFindValidUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didFindValidUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called when a valid update is found by the update driver.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    +
    +
    + +
    +
    + +

    ◆ updater:didFinishLoadingAppcast:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    didFinishLoadingAppcast:(SUAppcast *) appcast 
    +
    +optional
    +
    + +

    Called after Sparkle has downloaded the appcast from the remote server.

    +

    Implement this if you want to do some special handling with the appcast once it finishes loading.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    appcastThe appcast that was downloaded from the remote server.
    +
    +
    + +
    +
    + +

    ◆ updater:failedToDownloadUpdate:error:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    failedToDownloadUpdate:(SUAppcastItem *) item
    error:(NSError *) error 
    +
    +optional
    +
    + +

    Called after the specified update failed to download.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that failed to download.
    errorThe error generated by the failed download.
    +
    +
    + +
    +
    + +

    ◆ updater:shouldAllowInstallerInteractionForUpdateCheck:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    shouldAllowInstallerInteractionForUpdateCheck:(SPUUpdateCheck) updateCheck 
    +
    +optional
    +
    + +

    Returns whether or not the updater should allow interaction from the installer.

    +

    Use this to override the default behavior which is to allow interaction with the installer.

    +

    If interaction is allowed, then an authorization prompt may show up to the user if they do not curently have sufficient privileges to perform the installation of the new update. The installer may also show UI and progress when interaction is allowed.

    +

    On the other hand, if interaction is not allowed, then an installation may fail if the user does not have sufficient privileges to perform the installation. In this case, the feed and update may not even be downloaded.

    +

    Note this has no effect if the update has already been downloaded in the background silently and ready to be resumed.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    updateCheckThe type of update check being performed.
    +
    +
    + +
    +
    + +

    ◆ updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    shouldPostponeRelaunchForUpdate:(SUAppcastItem *) item
    untilInvokingBlock:(void(^)(void)) installHandler 
    +
    +optional
    +
    + +

    Returns whether the relaunch should be delayed in order to perform other tasks.

    +

    This is not called if the user didn't relaunch on the previous update, in that case it will immediately restart.

    +

    This may also not be called if the application is not going to relaunch after it terminates.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    installHandlerThe install handler that must be completed before continuing with the relaunch.
    +
    +
    +
    Returns
    YES to delay the relaunch until installHandler is invoked.
    + +
    +
    + +

    ◆ updater:userDidSkipThisVersion:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    userDidSkipThisVersion:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called when an update is skipped by the user.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that the user skipped.
    +
    +
    + +
    +
    + +

    ◆ updater:willDownloadUpdate:withRequest:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willDownloadUpdate:(SUAppcastItem *) item
    withRequest:(NSMutableURLRequest *) request 
    +
    +optional
    +
    + +

    Called immediately before downloading the specified update.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be downloaded.
    requestThe mutable URL request that will be used to download the update.
    +
    +
    + +
    +
    + +

    ◆ updater:willExtractUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willExtractUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately before extracting the specified downloaded update.

    +
    Parameters
    + + + +
    updaterThe SUUpdater instance.
    itemThe appcast item corresponding to the update that is proposed to be extracted.
    +
    +
    + +
    +
    + +

    ◆ updater:willInstallUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willInstallUpdate:(SUAppcastItem *) item 
    +
    +optional
    +
    + +

    Called immediately before installing the specified update.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    +
    +
    + +
    +
    + +

    ◆ updater:willInstallUpdateOnQuit:immediateInstallationBlock:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (BOOL) updater: (SPUUpdater *) updater
    willInstallUpdateOnQuit:(SUAppcastItem *) item
    immediateInstallationBlock:(void(^)(void)) immediateInstallHandler 
    +
    +optional
    +
    + +

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    +
    Parameters
    + + + + +
    updaterThe updater instance.
    itemThe appcast item corresponding to the update that is proposed to be installed.
    immediateInstallHandlerThe install handler to immediately install the update. No UI interaction will be shown and the application will be relaunched after installation.
    +
    +
    +
    Returns
    Return YES if the delegate will handle installing the update or NO if the updater should be given responsibility.
    +

    If the updater is given responsibility, it can later remind the user an update is available if they have not terminated the application for a long time. Also if the updater is given responsibility and the update item is marked critical, the new update will be presented to the user immediately after. Even if the immediateInstallHandler is not invoked, the installer will attempt to install the update on termination.

    + +
    +
    + +

    ◆ updater:willScheduleUpdateCheckAfterDelay:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updater: (SPUUpdater *) updater
    willScheduleUpdateCheckAfterDelay:(NSTimeInterval) delay 
    +
    +optional
    +
    + +

    Called when a background update will be scheduled after a delay.

    +

    Automatic update checks need to be enabled for this to trigger.

    +
    Parameters
    + + + +
    delayThe delay until the next scheduled update will occur.
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterDidNotFindUpdate:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterDidNotFindUpdate: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when a valid update is not found.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterDidNotFindUpdate:error:

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    - (void) updaterDidNotFindUpdate: (SPUUpdater *) updater
    error:(NSError *) error 
    +
    +optional
    +
    + +

    Called when a valid update is not found.

    +
    Parameters
    + + + +
    updaterThe updater instance.
    errorAn error containing information on why a new valid update was not found There are various reasons a new update is unavailable and can't be installed. The userInfo dictionary on the error is also populated with three keys: SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found. This will be nil if it's unavailable. SPUNoUpdateFoundReasonKey: This will provide the SUNoUpdateFoundReason. For example the reason could be because the latest version in the feed requires a newer OS version or could be because the user is already on the latest version. SPUNoUpdateFoundUserInitiatedKey: A boolean that indicates if a new update was not found when the user intitiated an update check manually.
    +
    +
    + +
    +
    + +

    ◆ updaterMayCheckForUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterMayCheckForUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether to allow Sparkle to pop up.

    +

    For example, this may be used to prevent Sparkle from interrupting a setup assistant. Alternatively, you may want to consider starting the updater after eg: the setup assistant finishes

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterShouldDownloadReleaseNotes:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldDownloadReleaseNotes: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    +

    This is specifically for the releaseNotesLink element in the appcast.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    YES to download and show the release notes if available, otherwise NO. The default behavior is YES.
    + +
    +
    + +

    ◆ updaterShouldPromptForPermissionToCheckForUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldPromptForPermissionToCheckForUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether Sparkle should prompt the user about automatic update checks.

    +

    Use this to override the default behavior.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterShouldRelaunchApplication:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (BOOL) updaterShouldRelaunchApplication: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns whether the application should be relaunched at all.

    +

    Some apps cannot be relaunched under certain circumstances. This method can be used to explicitly prevent a relaunch.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    YES if the updater should be relaunched, otherwise NO if it shouldn't.
    + +
    +
    + +

    ◆ updaterWillIdleSchedulingUpdates:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterWillIdleSchedulingUpdates: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when no updates will be scheduled in the future.

    +

    This may later change if automatic update checks become enabled.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ updaterWillRelaunchApplication:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) updaterWillRelaunchApplication: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called immediately before relaunching.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ userDidCancelDownload:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (void) userDidCancelDownload: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Called when the user clicks the cancel button while and update is being downloaded.

    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    + +
    +
    + +

    ◆ versionComparatorForUpdater:

    + +
    +
    + + + + + +
    + + + + + + + + +
    - (nullable id<SUVersionComparison>) versionComparatorForUpdater: (SPUUpdater *) updater
    +
    +optional
    +
    + +

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    +

    This method allows you to provide a custom version comparator. If you don't implement this method or return nil, the standard version comparator will be used. Note that the standard version comparator may be used during installation for preventing a downgrade, even if you provide a custom comparator here.

    +
    See also
    SUStandardVersionComparator
    +
    Parameters
    + + +
    updaterThe updater instance.
    +
    +
    +
    Returns
    The custom version comparator or nil if you don't want to be delegated this task.
    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_delegate-p.png b/documentation/api-reference/protocol_s_p_u_updater_delegate-p.png new file mode 100644 index 0000000..c5e5958 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_updater_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p-members.html b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p-members.html new file mode 100644 index 0000000..81e0b85 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUpdaterTimerDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SPUUpdaterTimerDelegate>, including all inherited members.

    + + +
    updaterTimerDidFire (defined in <SPUUpdaterTimerDelegate>)<SPUUpdaterTimerDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.html b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.html new file mode 100644 index 0000000..3183d01 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.html @@ -0,0 +1,99 @@ + + + + + + + +Sparkle: <SPUUpdaterTimerDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUpdaterTimerDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SPUUpdaterTimerDelegate>:
    +
    +
    + + +SPUUpdater() + +
    + + + + +

    +Instance Methods

    +(void) - updaterTimerDidFire
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.png b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.png new file mode 100644 index 0000000..edd3a92 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_updater_timer_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_p_u_user_driver-p-members.html b/documentation/api-reference/protocol_s_p_u_user_driver-p-members.html new file mode 100644 index 0000000..51388aa --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_user_driver-p-members.html @@ -0,0 +1,101 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SPUUserDriver> Member List
    +
    + + + + + diff --git a/documentation/api-reference/protocol_s_p_u_user_driver-p.html b/documentation/api-reference/protocol_s_p_u_user_driver-p.html new file mode 100644 index 0000000..4310776 --- /dev/null +++ b/documentation/api-reference/protocol_s_p_u_user_driver-p.html @@ -0,0 +1,706 @@ + + + + + + + +Sparkle: <SPUUserDriver> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SPUUserDriver> Protocol Reference
    +
    +
    + +

    The API in Sparkle for controlling the user interaction. + More...

    + +

    #import <SPUUserDriver.h>

    +
    +Inheritance diagram for <SPUUserDriver>:
    +
    +
    + + +SPUStandardUserDriver + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Instance Methods

    (void) - showUpdatePermissionRequest:reply:
     Show an updater permission request to the user. More...
     
    (void) - showUserInitiatedUpdateCheckWithCancellation:
     Show the user initating an update check. More...
     
    (void) - showUpdateFoundWithAppcastItem:state:reply:
     Show the user a new update is found. More...
     
    (void) - showUpdateReleaseNotesWithDownloadData:
     Show the user the release notes for the new update. More...
     
    (void) - showUpdateReleaseNotesFailedToDownloadWithError:
     Show the user that the new update's release notes could not be downloaded. More...
     
    (void) - showUpdateNotFoundWithError:acknowledgement:
     Show the user a new update was not found. More...
     
    (void) - showUpdaterError:acknowledgement:
     Show the user an update error occurred. More...
     
    (void) - showDownloadInitiatedWithCancellation:
     Show the user that downloading the new update initiated. More...
     
    (void) - showDownloadDidReceiveExpectedContentLength:
     Show the user the content length of the new update that will be downloaded. More...
     
    (void) - showDownloadDidReceiveDataOfLength:
     Show the user that the update download received more data. More...
     
    (void) - showDownloadDidStartExtractingUpdate
     Show the user that the update finished downloading and started extracting. More...
     
    (void) - showExtractionReceivedProgress:
     Show the user that the update is extracting with progress. More...
     
    (void) - showInstallingUpdate
     Show the user that the update is installing. More...
     
    (void) - showReadyToInstallAndRelaunch:
     Show the user that the update is ready to install & relaunch. More...
     
    (void) - showSendingTerminationSignal
     Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer. More...
     
    (void) - showUpdateInstalledAndRelaunched:acknowledgement:
     Show the user that the update installation finished. More...
     
    (void) - showUpdateInFocus
     Show the user the current presented update or its progress in utmost focus. More...
     
    (void) - dismissUpdateInstallation
     Dismiss the current update installation. More...
     
    +(void) - showUpdateNotFoundWithAcknowledgement:
     
    +(void) - showUpdateInstallationDidFinishWithAcknowledgement:
     
    +("Transition to new UI appropriately when a new update is shown, when no update is found, or when an update error occurs.") - __deprecated_msg
     
    +

    Detailed Description

    +

    The API in Sparkle for controlling the user interaction.

    +

    This protocol is used for implementing a user interface for the Sparkle updater. Sparkle's internal drivers tell an object that implements this protocol what actions to take and show to the user.

    +

    Every method in this protocol can be assumed to be called from the main thread.

    +

    Method Documentation

    + +

    ◆ dismissUpdateInstallation

    + +
    +
    + + + + + + + +
    - (void) dismissUpdateInstallation
    +
    + +

    Dismiss the current update installation.

    +

    Stop and tear down everything. Dismiss all update windows, alerts, progress, etc from the user. Basically, stop everything that could have been started. Sparkle may invoke this when aborting or finishing an update.

    + +
    +
    + +

    ◆ showDownloadDidReceiveDataOfLength:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadDidReceiveDataOfLength: (uint64_t) length
    +
    + +

    Show the user that the update download received more data.

    +

    This may be an appropriate time to advance a visible progress indicator of the download

    Parameters
    + + +
    lengthThe length of the data that was just downloaded
    +
    +
    + +
    +
    + +

    ◆ showDownloadDidReceiveExpectedContentLength:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadDidReceiveExpectedContentLength: (uint64_t) expectedContentLength
    +
    + +

    Show the user the content length of the new update that will be downloaded.

    +
    Parameters
    + + +
    expectedContentLengthThe expected content length of the new update being downloaded. An implementor should be able to handle if this value is invalid (more or less than actual content length downloaded). Additionally, this method may be called more than once for the same download in rare scenarios.
    +
    +
    + +
    +
    + +

    ◆ showDownloadDidStartExtractingUpdate

    + +
    +
    + + + + + + + +
    - (void) showDownloadDidStartExtractingUpdate
    +
    + +

    Show the user that the update finished downloading and started extracting.

    +

    Sparkle uses this to show an indeterminate progress bar.

    +

    Note that an update can resume at this point after having been downloaded before, so this may be called without any of the download callbacks being invoked prior.

    + +
    +
    + +

    ◆ showDownloadInitiatedWithCancellation:

    + +
    +
    + + + + + + + + +
    - (void) showDownloadInitiatedWithCancellation: (void(^)(void)) cancellation
    +
    + +

    Show the user that downloading the new update initiated.

    +

    Let the user know that downloading the new update started.

    +
    Parameters
    + + +
    cancellationInvoke this cancellation block to cancel the download at any point before -showDownloadDidStartExtractingUpdate is invoked.
    +
    +
    + +
    +
    + +

    ◆ showExtractionReceivedProgress:

    + +
    +
    + + + + + + + + +
    - (void) showExtractionReceivedProgress: (double) progress
    +
    + +

    Show the user that the update is extracting with progress.

    +

    Let the user know how far along the update extraction is.

    +

    Before this point, -showDownloadDidStartExtractingUpdate is called.

    +
    Parameters
    + + +
    progressThe progress of the extraction from a 0.0 to 1.0 scale
    +
    +
    + +
    +
    + +

    ◆ showInstallingUpdate

    + +
    +
    + + + + + + + +
    - (void) showInstallingUpdate
    +
    + +

    Show the user that the update is installing.

    +

    Let the user know that the update is currently installing. Sparkle uses this to show an indeterminate progress bar.

    +

    Before this point, -showExtractionReceivedProgress: may be called.

    + +
    +
    + +

    ◆ showReadyToInstallAndRelaunch:

    + +
    +
    + + + + + + + + +
    - (void) showReadyToInstallAndRelaunch: (void(^)(SPUUserUpdateChoice)) reply
    +
    + +

    Show the user that the update is ready to install & relaunch.

    +

    Let the user know that the update is ready to install and relaunch, and ask them whether they want to proceed. Note if the target application has already terminated, this method may not be invoked.

    +
    Parameters
    + + +
    replyA reply of SPUUserUpdateChoiceInstall installs the update the new update immediately. The application is relaunched only if it is still running by the time this reply is invoked. If the application terminates on its own, Sparkle will attempt to automatically install the update.
    +
    +
    +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update installation for the time being. Note the update may still be installed automatically after the application terminates.

    +

    A reply of SPUUserUpdateChoiceSkip cancels the current update that has begun installing and dismisses the update. In this circumstance, the update is canceled but this update version is not skipped in the future.

    +

    Before this point, -showInstallingUpdate will be called.

    + +
    +
    + +

    ◆ showSendingTerminationSignal

    + +
    +
    + + + + + + + +
    - (void) showSendingTerminationSignal
    +
    + +

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle's installer.

    +

    Terminating and relaunching the application (if requested to be relaunched) may happen quickly, or it may take some time to perform the final installation, or the termination signal can be canceled or delayed by the application or user.

    +

    It is up to the implementor whether or not to decide to continue showing installation progress or dismissing UI that won't remain obscuring other parts of the user interface.

    +

    This will not be invoked if the application that is being updated is already terminated.

    + +
    +
    + +

    ◆ showUpdateFoundWithAppcastItem:state:reply:

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateFoundWithAppcastItem: (SUAppcastItem *) appcastItem
    state:(SPUUserUpdateState *) state
    reply:(void(^)(SPUUserUpdateChoice)) reply 
    +
    + +

    Show the user a new update is found.

    +

    Let the user know a new update is found and ask them what they want to do. Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    +
    Parameters
    + + + +
    appcastItemThe Appcast Item containing information that reflects the new update.
    stateThe current state of the user update. The state.stage values are: SPUUpdateStateNotDownloaded - Update has not been downloaded yet. SPUUpdateStateDownloaded - Update has already been downloaded but not started installing yet. SPUUpdateStateInstalling - Update has been downloaded and already started installing.
    +
    +
    +

    state.userInitiated indicates if the update was initiated by the user or if it was automatically scheduled in the background.

    +

    Additionally, these properties on the appcastItem are of importance: appcastItem.informationOnlyUpdate indicates if the update is only informational and should not be downloaded. You can direct the user to the infoURL property of the appcastItem in their web browser. Sometimes information only updates are used as a fallback in case a bad update is shipped, so you'll want to support this case. appcastItem.majorUpgrade indicates if the update is a major or paid upgrade. appcastItem.criticalUpdate indicates if the update is a critical update.

    +
    Parameters
    + + +
    replyA reply of SPUUserUpdateChoiceInstall begins or resumes downloading or installing the update. If the state.stage is SPUUserUpdateStateInstalling, this may send a quit event to the application and relaunch it immediately (in this state, this behaves as a fast "install and Relaunch"). Do not use this reply if appcastItem.informationOnlyUpdate is YES.
    +
    +
    +

    A reply of SPUUserUpdateChoiceDismiss dismisses the update for the time being. The user may be reminded of the update at a later point. If the state.stage is SPUUserUpdateStateDownloaded, the downloaded update is kept after dismissing until the next time an update is shown to the user. If the state.stage is SPUUserUpdateStateInstalling, the installing update is also preserved after dismissing. In this state however, the update will also still be installed after the application is terminated.

    +

    A reply of SPUUserUpdateChoiceSkip skips this particular version and won't notify the user again, unless they initiate an update check themselves. If appcastItem.majorUpgrade is YES, the major update and any future minor updates to that major release are skipped. If the state.stage is SPUUpdateStateInstalling, the installation is also canceled when the update is skipped.

    + +
    +
    + +

    ◆ showUpdateInFocus

    + +
    +
    + + + + + + + +
    - (void) showUpdateInFocus
    +
    + +

    Show the user the current presented update or its progress in utmost focus.

    +

    The user wishes to check for updates while the user is being shown update progress. Bring whatever is on screen to frontmost focus (permission request, update information, downloading or extraction status, choice to install update, etc).

    + +
    +
    + +

    ◆ showUpdateInstalledAndRelaunched:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateInstalledAndRelaunched: (BOOL) relaunched
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user that the update installation finished.

    +

    Let the user know that the update finished installing.

    +

    This will only be invoked if the updater process is still alive, which is typically not the case if the updater's lifetime is tied to the application it is updating. This implementation must not try to reference the old bundle prior to the installation, which will no longer be around.

    +

    Before this point, -showSendingTerminationSignal or -showReadyToInstallAndRelaunch: may be called.

    +
    Parameters
    + + + +
    relaunchedIndicates if the update was relaunched.
    acknowledgementAcknowledge to the updater that the finished installation was shown.
    +
    +
    + +
    +
    + +

    ◆ showUpdateNotFoundWithError:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdateNotFoundWithError: (NSError *) error
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user a new update was not found.

    +

    Let the user know a new update was not found after they tried initiating an update check. Before this point, -showUserInitiatedUpdateCheckWithCancellation: may be called.

    +
    Parameters
    + + +
    errorThe error associated with why a new update was not found. There are various reasons a new update is unavailable and can't be installed. This error object is populated with recovery and suggestion strings suitable to be shown in an alert.
    +
    +
    +

    The userInfo dictionary is also populated with two keys: SPULatestAppcastItemFoundKey: if available, this may provide the latest SUAppcastItem that was found. SPUNoUpdateFoundReasonKey: if available, this will provide the SUNoUpdateFoundReason. For example the reason could be because the latest version in the feed requires a newer OS version or could be because the user is already on the latest version.

    +
    Parameters
    + + +
    acknowledgementAcknowledge to the updater that no update found error was shown.
    +
    +
    + +
    +
    + +

    ◆ showUpdatePermissionRequest:reply:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdatePermissionRequest: (SPUUpdatePermissionRequest *) request
    reply:(void(^)(SUUpdatePermissionResponse *)) reply 
    +
    + +

    Show an updater permission request to the user.

    +

    Ask the user for their permission regarding update checks. This is typically only called once per app installation.

    +
    Parameters
    + + + +
    requestThe update permission request.
    replyA reply with a update permission response.
    +
    +
    + +
    +
    + +

    ◆ showUpdateReleaseNotesFailedToDownloadWithError:

    + +
    +
    + + + + + + + + +
    - (void) showUpdateReleaseNotesFailedToDownloadWithError: (NSError *) error
    +
    + +

    Show the user that the new update's release notes could not be downloaded.

    +

    This will be called after showing the new update. This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    +
    Parameters
    + + +
    errorThe error associated with why the new update's release notes could not be downloaded.
    +
    +
    + +
    +
    + +

    ◆ showUpdateReleaseNotesWithDownloadData:

    + +
    +
    + + + + + + + + +
    - (void) showUpdateReleaseNotesWithDownloadData: (SPUDownloadData *) downloadData
    +
    + +

    Show the user the release notes for the new update.

    +

    Display the release notes to the user. This will be called after showing the new update. This is only applicable if the release notes are linked from the appcast, and are not directly embedded inside of the appcast file. That is, this may be invoked if the releaseNotesURL from the appcast item is non-nil.

    +
    Parameters
    + + +
    downloadDataThe data for the release notes that was downloaded from the new update's appcast.
    +
    +
    + +
    +
    + +

    ◆ showUpdaterError:acknowledgement:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) showUpdaterError: (NSError *) error
    acknowledgement:(void(^)(void)) acknowledgement 
    +
    + +

    Show the user an update error occurred.

    +

    Let the user know that the updater failed with an error. This will not be invoked without the user having been aware that an update was in progress.

    +

    Before this point, any of the non-error user driver methods may have been invoked.

    +
    Parameters
    + + + +
    errorThe error associated with what update error occurred..
    acknowledgementAcknowledge to the updater that the error was shown.
    +
    +
    + +
    +
    + +

    ◆ showUserInitiatedUpdateCheckWithCancellation:

    + +
    +
    + + + + + + + + +
    - (void) showUserInitiatedUpdateCheckWithCancellation: (void(^)(void)) cancellation
    +
    + +

    Show the user initating an update check.

    +

    Respond to the user initiating an update check. Sparkle uses this to show the user a window with an indeterminate progress bar.

    +
    Parameters
    + + +
    cancellationInvoke this cancellation block to cancel the update check before the update check is completed.
    +
    +
    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_p_u_user_driver-p.png b/documentation/api-reference/protocol_s_p_u_user_driver-p.png new file mode 100644 index 0000000..ff05e94 Binary files /dev/null and b/documentation/api-reference/protocol_s_p_u_user_driver-p.png differ diff --git a/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p-members.html b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p-members.html new file mode 100644 index 0000000..f66ac21 --- /dev/null +++ b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUAppcastDriverDelegate> Member List
    +
    +
    + +

    This is the complete list of members for <SUAppcastDriverDelegate>, including all inherited members.

    + + + + + +
    didFailToFetchAppcastWithError: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didFindValidUpdateWithAppcastItem:secondaryAppcastItem: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didFinishLoadingAppcast: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background: (defined in <SUAppcastDriverDelegate>)<SUAppcastDriverDelegate>
    + + + + diff --git a/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.html b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.html new file mode 100644 index 0000000..cb9f359 --- /dev/null +++ b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.html @@ -0,0 +1,108 @@ + + + + + + + +Sparkle: <SUAppcastDriverDelegate> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUAppcastDriverDelegate> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SUAppcastDriverDelegate>:
    +
    +
    + + +SPUBasicUpdateDriver() + +
    + + + + + + + + + + +

    +Instance Methods

    +(void) - didFailToFetchAppcastWithError:
     
    +(void) - didFinishLoadingAppcast:
     
    +(void) - didFindValidUpdateWithAppcastItem:secondaryAppcastItem:
     
    +(void) - didNotFindUpdateWithLatestAppcastItem:hostToLatestAppcastItemComparisonResult:background:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.png b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.png new file mode 100644 index 0000000..ebbca78 Binary files /dev/null and b/documentation/api-reference/protocol_s_u_appcast_driver_delegate-p.png differ diff --git a/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p-members.html b/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p-members.html new file mode 100644 index 0000000..3c8cd7f --- /dev/null +++ b/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p-members.html @@ -0,0 +1,82 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUInstallerAgentInitiationProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SUInstallerAgentInitiationProtocol>, including all inherited members.

    + + + +
    connectionDidInitiateWithReply: (defined in <SUInstallerAgentInitiationProtocol>)<SUInstallerAgentInitiationProtocol>
    connectionWillInvalidateWithError: (defined in <SUInstallerAgentInitiationProtocol>)<SUInstallerAgentInitiationProtocol>
    + + + + diff --git a/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p.html b/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p.html new file mode 100644 index 0000000..4e7b353 --- /dev/null +++ b/documentation/api-reference/protocol_s_u_installer_agent_initiation_protocol-p.html @@ -0,0 +1,93 @@ + + + + + + + +Sparkle: <SUInstallerAgentInitiationProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUInstallerAgentInitiationProtocol> Protocol Reference
    +
    +
    + + + + + + +

    +Instance Methods

    +(void) - connectionDidInitiateWithReply:
     
    +(void) - connectionWillInvalidateWithError:
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_u_installer_protocol-p-members.html b/documentation/api-reference/protocol_s_u_installer_protocol-p-members.html new file mode 100644 index 0000000..b2794d1 --- /dev/null +++ b/documentation/api-reference/protocol_s_u_installer_protocol-p-members.html @@ -0,0 +1,84 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUInstallerProtocol> Member List
    +
    +
    + +

    This is the complete list of members for <SUInstallerProtocol>, including all inherited members.

    + + + + + +
    canInstallSilently (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    installationPath (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    performFinalInstallationProgressBlock:error: (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    performInitialInstallation: (defined in <SUInstallerProtocol>)<SUInstallerProtocol>
    + + + + diff --git a/documentation/api-reference/protocol_s_u_installer_protocol-p.html b/documentation/api-reference/protocol_s_u_installer_protocol-p.html new file mode 100644 index 0000000..83dc76c --- /dev/null +++ b/documentation/api-reference/protocol_s_u_installer_protocol-p.html @@ -0,0 +1,105 @@ + + + + + + + +Sparkle: <SUInstallerProtocol> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUInstallerProtocol> Protocol Reference
    +
    +
    +
    +Inheritance diagram for <SUInstallerProtocol>:
    +
    +
    + +
    + + + + + + + + + + +

    +Instance Methods

    +(BOOL) - performInitialInstallation:
     
    +(BOOL) - performFinalInstallationProgressBlock:error:
     
    +(BOOL) - canInstallSilently
     
    +(NSString *) - installationPath
     
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_u_installer_protocol-p.png b/documentation/api-reference/protocol_s_u_installer_protocol-p.png new file mode 100644 index 0000000..7b127fd Binary files /dev/null and b/documentation/api-reference/protocol_s_u_installer_protocol-p.png differ diff --git a/documentation/api-reference/protocol_s_u_version_comparison-p-members.html b/documentation/api-reference/protocol_s_u_version_comparison-p-members.html new file mode 100644 index 0000000..a059b4a --- /dev/null +++ b/documentation/api-reference/protocol_s_u_version_comparison-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUVersionComparison> Member List
    +
    +
    + +

    This is the complete list of members for <SUVersionComparison>, including all inherited members.

    + + +
    compareVersion:toVersion:<SUVersionComparison>
    + + + + diff --git a/documentation/api-reference/protocol_s_u_version_comparison-p.html b/documentation/api-reference/protocol_s_u_version_comparison-p.html new file mode 100644 index 0000000..7469c5e --- /dev/null +++ b/documentation/api-reference/protocol_s_u_version_comparison-p.html @@ -0,0 +1,140 @@ + + + + + + + +Sparkle: <SUVersionComparison> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUVersionComparison> Protocol Reference
    +
    +
    + +

    Provides version comparison facilities for Sparkle. + More...

    + +

    #import <SUVersionComparisonProtocol.h>

    +
    +Inheritance diagram for <SUVersionComparison>:
    +
    +
    + + +SUStandardVersionComparator + +
    + + + + + +

    +Instance Methods

    (NSComparisonResult) - compareVersion:toVersion:
     An abstract method to compare two version strings. More...
     
    +

    Detailed Description

    +

    Provides version comparison facilities for Sparkle.

    +

    Method Documentation

    + +

    ◆ compareVersion:toVersion:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (NSComparisonResult) compareVersion: (NSString *) versionA
    toVersion:(NSString *) versionB 
    +
    + +

    An abstract method to compare two version strings.

    +

    Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent.

    + +

    Reimplemented in SUStandardVersionComparator.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/protocol_s_u_version_comparison-p.png b/documentation/api-reference/protocol_s_u_version_comparison-p.png new file mode 100644 index 0000000..b080539 Binary files /dev/null and b/documentation/api-reference/protocol_s_u_version_comparison-p.png differ diff --git a/documentation/api-reference/protocol_s_u_version_display-p-members.html b/documentation/api-reference/protocol_s_u_version_display-p-members.html new file mode 100644 index 0000000..5b20f09 --- /dev/null +++ b/documentation/api-reference/protocol_s_u_version_display-p-members.html @@ -0,0 +1,81 @@ + + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    <SUVersionDisplay> Member List
    +
    +
    + +

    This is the complete list of members for <SUVersionDisplay>, including all inherited members.

    + + +
    formatVersion:andVersion:<SUVersionDisplay>
    + + + + diff --git a/documentation/api-reference/protocol_s_u_version_display-p.html b/documentation/api-reference/protocol_s_u_version_display-p.html new file mode 100644 index 0000000..416112a --- /dev/null +++ b/documentation/api-reference/protocol_s_u_version_display-p.html @@ -0,0 +1,129 @@ + + + + + + + +Sparkle: <SUVersionDisplay> Protocol Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    <SUVersionDisplay> Protocol Reference
    +
    +
    + +

    Applies special display formatting to version numbers. + More...

    + +

    #import <SUVersionDisplayProtocol.h>

    + + + + + +

    +Instance Methods

    (void) - formatVersion:andVersion:
     Formats two version strings. More...
     
    +

    Detailed Description

    +

    Applies special display formatting to version numbers.

    +

    Method Documentation

    + +

    ◆ formatVersion:andVersion:

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    - (void) formatVersion: (NSString *_Nonnull *_Nonnull) inOutVersionA
    andVersion:(NSString *_Nonnull *_Nonnull) inOutVersionB 
    +
    + +

    Formats two version strings.

    +

    Both versions are provided so that important distinguishing information can be displayed while also leaving out unnecessary/confusing parts.

    + +
    +
    +
    The documentation for this protocol was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/search.json b/documentation/api-reference/search.json new file mode 100644 index 0000000..8a0cad3 --- /dev/null +++ b/documentation/api-reference/search.json @@ -0,0 +1 @@ +{"Protocols/SUVersionDisplay.html#/c:objc(pl)SUVersionDisplay(im)formatVersion:andVersion:":{"name":"-formatVersion:andVersion:","abstract":"

    Formats two version strings.

    ","parent_name":"SUVersionDisplay"},"Protocols/SUVersionComparison.html#/c:objc(pl)SUVersionComparison(im)compareVersion:toVersion:":{"name":"-compareVersion:toVersion:","abstract":"

    An abstract method to compare two version strings.

    ","parent_name":"SUVersionComparison"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterMayCheckForUpdates:":{"name":"-updaterMayCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)feedParametersForUpdater:sendingSystemProfile:":{"name":"-feedParametersForUpdater:sendingSystemProfile:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)feedURLStringForUpdater:":{"name":"-feedURLStringForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterShouldPromptForPermissionToCheckForUpdates:":{"name":"-updaterShouldPromptForPermissionToCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didFinishLoadingAppcast:":{"name":"-updater:didFinishLoadingAppcast:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)bestValidUpdateInAppcast:forUpdater:":{"name":"-bestValidUpdateInAppcast:forUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didFindValidUpdate:":{"name":"-updater:didFindValidUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidNotFindUpdate:":{"name":"-updaterDidNotFindUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willDownloadUpdate:withRequest:":{"name":"-updater:willDownloadUpdate:withRequest:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didDownloadUpdate:":{"name":"-updater:didDownloadUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:failedToDownloadUpdate:error:":{"name":"-updater:failedToDownloadUpdate:error:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)userDidCancelDownload:":{"name":"-userDidCancelDownload:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willExtractUpdate:":{"name":"-updater:willExtractUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didExtractUpdate:":{"name":"-updater:didExtractUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdate:":{"name":"-updater:willInstallUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:userDidSkipThisVersion:":{"name":"-updater:userDidSkipThisVersion:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:untilInvoking:":{"name":"-updater:shouldPostponeRelaunchForUpdate:untilInvoking:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:":{"name":"-updater:shouldPostponeRelaunchForUpdate:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterShouldRelaunchApplication:":{"name":"-updaterShouldRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterWillRelaunchApplication:":{"name":"-updaterWillRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidRelaunchApplication:":{"name":"-updaterDidRelaunchApplication:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)versionComparatorForUpdater:":{"name":"-versionComparatorForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)versionDisplayerForUpdater:":{"name":"-versionDisplayerForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)pathToRelaunchForUpdater:":{"name":"-pathToRelaunchForUpdater:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterWillShowModalAlert:":{"name":"-updaterWillShowModalAlert:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updaterDidShowModalAlert:":{"name":"-updaterDidShowModalAlert:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationInvocation:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationInvocation:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationBlock:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationBlock:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didCancelInstallUpdateOnQuit:":{"name":"-updater:didCancelInstallUpdateOnQuit:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SUUpdaterDelegate.html#/c:objc(pl)SUUpdaterDelegate(im)updater:didAbortWithError:":{"name":"-updater:didAbortWithError:","abstract":"

    Undocumented

    ","parent_name":"SUUpdaterDelegate"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdatePermissionRequest:reply:":{"name":"-showUpdatePermissionRequest:reply:","abstract":"

    Show an updater permission request to the user

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUserInitiatedUpdateCheckWithCancellation:":{"name":"-showUserInitiatedUpdateCheckWithCancellation:","abstract":"

    Show the user initating an update check

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateFoundWithAppcastItem:state:reply:":{"name":"-showUpdateFoundWithAppcastItem:state:reply:","abstract":"

    Show the user a new update is found.

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateReleaseNotesWithDownloadData:":{"name":"-showUpdateReleaseNotesWithDownloadData:","abstract":"

    Show the user the release notes for the new update

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateReleaseNotesFailedToDownloadWithError:":{"name":"-showUpdateReleaseNotesFailedToDownloadWithError:","abstract":"

    Show the user that the new update’s release notes could not be downloaded

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateNotFoundWithError:acknowledgement:":{"name":"-showUpdateNotFoundWithError:acknowledgement:","abstract":"

    Show the user a new update was not found

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdaterError:acknowledgement:":{"name":"-showUpdaterError:acknowledgement:","abstract":"

    Show the user an update error occurred

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadInitiatedWithCancellation:":{"name":"-showDownloadInitiatedWithCancellation:","abstract":"

    Show the user that downloading the new update initiated

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidReceiveExpectedContentLength:":{"name":"-showDownloadDidReceiveExpectedContentLength:","abstract":"

    Show the user the content length of the new update that will be downloaded

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidReceiveDataOfLength:":{"name":"-showDownloadDidReceiveDataOfLength:","abstract":"

    Show the user that the update download received more data

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showDownloadDidStartExtractingUpdate":{"name":"-showDownloadDidStartExtractingUpdate","abstract":"

    Show the user that the update finished downloading and started extracting

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showExtractionReceivedProgress:":{"name":"-showExtractionReceivedProgress:","abstract":"

    Show the user that the update is extracting with progress

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showInstallingUpdate":{"name":"-showInstallingUpdate","abstract":"

    Show the user that the update is installing

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showReadyToInstallAndRelaunch:":{"name":"-showReadyToInstallAndRelaunch:","abstract":"

    Show the user that the update is ready to install & relaunch

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showSendingTerminationSignal":{"name":"-showSendingTerminationSignal","abstract":"

    Show or dismiss progress while a termination signal is being sent to the application from Sparkle’s installer

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInstalledAndRelaunched:acknowledgement:":{"name":"-showUpdateInstalledAndRelaunched:acknowledgement:","abstract":"

    Show the user that the update installation finished

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInFocus":{"name":"-showUpdateInFocus","abstract":"

    Show the user the current presented update or its progress in utmost focus

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)dismissUpdateInstallation":{"name":"-dismissUpdateInstallation","abstract":"

    Dismiss the current update installation

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateNotFoundWithAcknowledgement:":{"name":"-showUpdateNotFoundWithAcknowledgement:","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)showUpdateInstallationDidFinishWithAcknowledgement:":{"name":"-showUpdateInstallationDidFinishWithAcknowledgement:","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUserDriver.html#/c:objc(pl)SPUUserDriver(im)dismissUserInitiatedUpdateCheck":{"name":"-dismissUserInitiatedUpdateCheck","abstract":"

    Undocumented

    ","parent_name":"SPUUserDriver"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:mayPerformUpdateCheck:error:":{"name":"-updater:mayPerformUpdateCheck:error:","abstract":"

    Returns whether to allow Sparkle to check for updates.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)allowedChannelsForUpdater:":{"name":"-allowedChannelsForUpdater:","abstract":"

    Returns the set of Sparkle channels the updater is allowed to find new updates from.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)feedURLStringForUpdater:":{"name":"-feedURLStringForUpdater:","abstract":"

    Returns a custom appcast URL used for checking for new updates.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)feedParametersForUpdater:sendingSystemProfile:":{"name":"-feedParametersForUpdater:sendingSystemProfile:","abstract":"

    Returns additional parameters to append to the appcast URL’s query string.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterShouldPromptForPermissionToCheckForUpdates:":{"name":"-updaterShouldPromptForPermissionToCheckForUpdates:","abstract":"

    Returns whether Sparkle should prompt the user about checking for new updates automatically.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)allowedSystemProfileKeysForUpdater:":{"name":"-allowedSystemProfileKeysForUpdater:","abstract":"

    Returns an allowed list of system profile keys to be appended to the appcast URL’s query string.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFinishLoadingAppcast:":{"name":"-updater:didFinishLoadingAppcast:","abstract":"

    Called after Sparkle has downloaded the appcast from the remote server.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFindValidUpdate:":{"name":"-updater:didFindValidUpdate:","abstract":"

    Called when a new valid update is found by the update driver.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterDidNotFindUpdate:error:":{"name":"-updaterDidNotFindUpdate:error:","abstract":"

    Called when a valid new update is not found.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterDidNotFindUpdate:":{"name":"-updaterDidNotFindUpdate:","abstract":"

    Called when a valid new update is not found.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)bestValidUpdateInAppcast:forUpdater:":{"name":"-bestValidUpdateInAppcast:forUpdater:","abstract":"

    Returns the item in the appcast corresponding to the update that should be installed.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldProceedWithUpdate:updateCheck:error:":{"name":"-updater:shouldProceedWithUpdate:updateCheck:error:","abstract":"

    Returns whether or not the updater should proceed with the new chosen update from the appcast.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:userDidSkipThisVersion:":{"name":"-updater:userDidSkipThisVersion:","abstract":"

    Called when an update is skipped by the user.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldDownloadReleaseNotesForUpdate:":{"name":"-updater:shouldDownloadReleaseNotesForUpdate:","abstract":"

    Returns whether the release notes (if available) should be downloaded after an update is found and shown.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willDownloadUpdate:withRequest:":{"name":"-updater:willDownloadUpdate:withRequest:","abstract":"

    Called immediately before downloading the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didDownloadUpdate:":{"name":"-updater:didDownloadUpdate:","abstract":"

    Called immediately after succesfull download of the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:failedToDownloadUpdate:error:":{"name":"-updater:failedToDownloadUpdate:error:","abstract":"

    Called after the specified update failed to download.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)userDidCancelDownload:":{"name":"-userDidCancelDownload:","abstract":"

    Called when the user cancels an update while it is being downloaded.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willExtractUpdate:":{"name":"-updater:willExtractUpdate:","abstract":"

    Called immediately before extracting the specified downloaded update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didExtractUpdate:":{"name":"-updater:didExtractUpdate:","abstract":"

    Called immediately after extracting the specified downloaded update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willInstallUpdate:":{"name":"-updater:willInstallUpdate:","abstract":"

    Called immediately before installing the specified update.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:":{"name":"-updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:","abstract":"

    Returns whether the relaunch should be delayed in order to perform other tasks.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterShouldRelaunchApplication:":{"name":"-updaterShouldRelaunchApplication:","abstract":"

    Returns whether the application should be relaunched at all.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterWillRelaunchApplication:":{"name":"-updaterWillRelaunchApplication:","abstract":"

    Called immediately before relaunching.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)versionComparatorForUpdater:":{"name":"-versionComparatorForUpdater:","abstract":"

    Returns an object that compares version numbers to determine their arithmetic relation to each other.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willScheduleUpdateCheckAfterDelay:":{"name":"-updater:willScheduleUpdateCheckAfterDelay:","abstract":"

    Called when a background update will be scheduled after a delay.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterWillNotScheduleUpdateCheck:":{"name":"-updaterWillNotScheduleUpdateCheck:","abstract":"

    Called when no update checks will be scheduled in the future.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)decryptionPasswordForUpdater:":{"name":"-decryptionPasswordForUpdater:","abstract":"

    Returns the decryption password (if any) which is used to extract the update archive DMG.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:willInstallUpdateOnQuit:immediateInstallationBlock:":{"name":"-updater:willInstallUpdateOnQuit:immediateInstallationBlock:","abstract":"

    Called when an update is scheduled to be silently installed on quit after downloading the update automatically.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didAbortWithError:":{"name":"-updater:didAbortWithError:","abstract":"

    Called after the update driver aborts due to an error.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updater:didFinishUpdateCycleForUpdateCheck:error:":{"name":"-updater:didFinishUpdateCycleForUpdateCheck:error:","abstract":"

    Called after the update driver finishes.

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterMayCheckForUpdates:":{"name":"-updaterMayCheckForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SPUUpdaterDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverWillShowModalAlert":{"name":"-standardUserDriverWillShowModalAlert","abstract":"

    Called before showing a modal alert window,","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverDidShowModalAlert":{"name":"-standardUserDriverDidShowModalAlert","abstract":"

    Called after showing a modal alert window,","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html#/c:objc(pl)SPUStandardUserDriverDelegate(im)standardUserDriverRequestsVersionDisplayer":{"name":"-standardUserDriverRequestsVersionDisplayer","abstract":"

    Returns an object that formats version numbers for display to the user.","parent_name":"SPUStandardUserDriverDelegate"},"Protocols/SPUStandardUserDriverDelegate.html":{"name":"SPUStandardUserDriverDelegate","abstract":"

    A protocol for Sparkle’s standard user driver’s delegate

    "},"Protocols/SPUUpdaterDelegate.html":{"name":"SPUUpdaterDelegate","abstract":"

    Provides delegation methods to control the behavior of an SPUUpdater object.

    "},"Protocols/SPUUserDriver.html":{"name":"SPUUserDriver","abstract":"

    The API in Sparkle for controlling the user interaction.

    "},"Protocols/SUUpdaterDelegate.html":{"name":"SUUpdaterDelegate","abstract":"

    Undocumented

    "},"Protocols/SUVersionComparison.html":{"name":"SUVersionComparison","abstract":"

    Provides version comparison facilities for Sparkle.

    "},"Protocols/SUVersionDisplay.html":{"name":"SUVersionDisplay","abstract":"

    Applies special display formatting to version numbers.

    "},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonUnknown":{"name":"SPUNoUpdateFoundReasonUnknown","abstract":"

    A new update is unavailable for an unknown reason.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonOnLatestVersion":{"name":"SPUNoUpdateFoundReasonOnLatestVersion","abstract":"

    A new update is unavailable because the user is on the latest known version in the appcast feed.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonOnNewerThanLatestVersion":{"name":"SPUNoUpdateFoundReasonOnNewerThanLatestVersion","abstract":"

    A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonSystemIsTooOld":{"name":"SPUNoUpdateFoundReasonSystemIsTooOld","abstract":"

    A new update is unavailable because the user’s operating system version is too old for the update.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SPUNoUpdateFoundReason.html#/c:@E@SPUNoUpdateFoundReason@SPUNoUpdateFoundReasonSystemIsTooNew":{"name":"SPUNoUpdateFoundReasonSystemIsTooNew","abstract":"

    A new update is unavailable because the user’s operating system version is too new for the update.

    ","parent_name":"SPUNoUpdateFoundReason"},"Enums/SUError.html#/c:@E@SUError@SUNoPublicDSAFoundError":{"name":"SUNoPublicDSAFoundError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInsufficientSigningError":{"name":"SUInsufficientSigningError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInsecureFeedURLError":{"name":"SUInsecureFeedURLError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidFeedURLError":{"name":"SUInvalidFeedURLError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidUpdaterError":{"name":"SUInvalidUpdaterError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidHostBundleIdentifierError":{"name":"SUInvalidHostBundleIdentifierError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInvalidHostVersionError":{"name":"SUInvalidHostVersionError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAppcastParseError":{"name":"SUAppcastParseError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUNoUpdateError":{"name":"SUNoUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAppcastError":{"name":"SUAppcastError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURunningFromDiskImageError":{"name":"SURunningFromDiskImageError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUResumeAppcastError":{"name":"SUResumeAppcastError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURunningTranslocated":{"name":"SURunningTranslocated","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUWebKitTerminationError":{"name":"SUWebKitTerminationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUTemporaryDirectoryError":{"name":"SUTemporaryDirectoryError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUDownloadError":{"name":"SUDownloadError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUUnarchivingError":{"name":"SUUnarchivingError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUSignatureError":{"name":"SUSignatureError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUValidationError":{"name":"SUValidationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUFileCopyFailure":{"name":"SUFileCopyFailure","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAuthenticationFailure":{"name":"SUAuthenticationFailure","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUMissingUpdateError":{"name":"SUMissingUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUMissingInstallerToolError":{"name":"SUMissingInstallerToolError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SURelaunchError":{"name":"SURelaunchError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationError":{"name":"SUInstallationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUDowngradeError":{"name":"SUDowngradeError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationCanceledError":{"name":"SUInstallationCanceledError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUInstallationAuthorizeLaterError":{"name":"SUInstallationAuthorizeLaterError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUNotValidUpdateError":{"name":"SUNotValidUpdateError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUAgentInvalidationError":{"name":"SUAgentInvalidationError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SUError.html#/c:@E@SUError@SUIncorrectAPIUsageError":{"name":"SUIncorrectAPIUsageError","abstract":"

    Undocumented

    ","parent_name":"SUError"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageNotDownloaded":{"name":"SPUUserUpdateStageNotDownloaded","abstract":"

    The update has not been downloaded.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageDownloaded":{"name":"SPUUserUpdateStageDownloaded","abstract":"

    The update has already been downloaded but not begun installing.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateStage.html#/c:@E@SPUUserUpdateStage@SPUUserUpdateStageInstalling":{"name":"SPUUserUpdateStageInstalling","abstract":"

    The update has already been downloaded and began installing in the background.

    ","parent_name":"SPUUserUpdateStage"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceSkip":{"name":"SPUUserUpdateChoiceSkip","abstract":"

    Dismisses the update and skips being notified of it in the future.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceInstall":{"name":"SPUUserUpdateChoiceInstall","abstract":"

    Downloads (if needed) and installs the update.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUserUpdateChoice.html#/c:@E@SPUUserUpdateChoice@SPUUserUpdateChoiceDismiss":{"name":"SPUUserUpdateChoiceDismiss","abstract":"

    Dismisses the update until Sparkle reminds the user of it at a later time.

    ","parent_name":"SPUUserUpdateChoice"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdates":{"name":"SPUUpdateCheckUpdates","abstract":"

    The user-initiated update check corresponding to -[SPUUpdater checkForUpdates].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdatesInBackground":{"name":"SPUUpdateCheckUpdatesInBackground","abstract":"

    The background scheduled update check corresponding to -[SPUUpdater checkForUpdatesInBackground].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html#/c:@E@SPUUpdateCheck@SPUUpdateCheckUpdateInformation":{"name":"SPUUpdateCheckUpdateInformation","abstract":"

    The informational probe update check corresponding to -[SPUUpdater checkForUpdateInformation].

    ","parent_name":"SPUUpdateCheck"},"Enums/SPUUpdateCheck.html":{"name":"SPUUpdateCheck","abstract":"

    Describes the type of update check being performed.

    "},"Enums/SPUUserUpdateChoice.html":{"name":"SPUUserUpdateChoice","abstract":"

    A choice made by the user when prompted with a new update.

    "},"Enums/SPUUserUpdateStage.html":{"name":"SPUUserUpdateStage","abstract":"

    Describes the current stage an update is undergoing.

    "},"Enums/SUError.html":{"name":"SUError","abstract":"

    Undocumented

    "},"Enums/SPUNoUpdateFoundReason.html":{"name":"SPUNoUpdateFoundReason","abstract":"

    The reason why a new update is not available.

    "},"Constants.html#/c:@SUUpdaterDidFinishLoadingAppCastNotification":{"name":"SUUpdaterDidFinishLoadingAppCastNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterDidFindValidUpdateNotification":{"name":"SUUpdaterDidFindValidUpdateNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterDidNotFindUpdateNotification":{"name":"SUUpdaterDidNotFindUpdateNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterWillRestartNotification":{"name":"SUUpdaterWillRestartNotification","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterAppcastItemNotificationKey":{"name":"SUUpdaterAppcastItemNotificationKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUUpdaterAppcastNotificationKey":{"name":"SUUpdaterAppcastNotificationKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerApplicationNameKey":{"name":"SUSystemProfilerApplicationNameKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerApplicationVersionKey":{"name":"SUSystemProfilerApplicationVersionKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPU64bitKey":{"name":"SUSystemProfilerCPU64bitKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUCountKey":{"name":"SUSystemProfilerCPUCountKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUFrequencyKey":{"name":"SUSystemProfilerCPUFrequencyKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUTypeKey":{"name":"SUSystemProfilerCPUTypeKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerCPUSubtypeKey":{"name":"SUSystemProfilerCPUSubtypeKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerHardwareModelKey":{"name":"SUSystemProfilerHardwareModelKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerMemoryKey":{"name":"SUSystemProfilerMemoryKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerOperatingSystemVersionKey":{"name":"SUSystemProfilerOperatingSystemVersionKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSystemProfilerPreferredLanguageKey":{"name":"SUSystemProfilerPreferredLanguageKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SUSparkleErrorDomain":{"name":"SUSparkleErrorDomain","abstract":"

    Error domain used by Sparkle

    "},"Constants.html#/c:@SPUNoUpdateFoundReasonKey":{"name":"SPUNoUpdateFoundReasonKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SPULatestAppcastItemFoundKey":{"name":"SPULatestAppcastItemFoundKey","abstract":"

    Undocumented

    "},"Constants.html#/c:@SPUNoUpdateFoundUserInitiatedKey":{"name":"SPUNoUpdateFoundUserInitiatedKey","abstract":"

    Undocumented

    "},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)delegate":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(cm)sharedUpdater":{"name":"+sharedUpdater","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(cm)updaterForBundle:":{"name":"+updaterForBundle:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)initForBundle:":{"name":"-initForBundle:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdates:":{"name":"-checkForUpdates:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)validateMenuItem:":{"name":"-validateMenuItem:","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdatesInBackground":{"name":"-checkForUpdatesInBackground","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)checkForUpdateInformation":{"name":"-checkForUpdateInformation","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)feedURL":{"name":"feedURL","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)hostBundle":{"name":"hostBundle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)sparkleBundle":{"name":"sparkleBundle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)userAgentString":{"name":"userAgentString","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)httpHeaders":{"name":"httpHeaders","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)decryptionPassword":{"name":"decryptionPassword","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)lastUpdateCheckDate":{"name":"lastUpdateCheckDate","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(im)resetUpdateCycle":{"name":"-resetUpdateCycle","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdater.html#/c:objc(cs)SUUpdater(py)updateInProgress":{"name":"updateInProgress","abstract":"

    Undocumented

    ","parent_name":"SUUpdater"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(im)initWithAutomaticUpdateChecks:sendSystemProfile:":{"name":"-initWithAutomaticUpdateChecks:sendSystemProfile:","abstract":"

    Initializes a new update permission response instance.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(py)automaticUpdateChecks":{"name":"automaticUpdateChecks","abstract":"

    A read-only property indicating whether automatic update checks are allowed or not.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUUpdatePermissionResponse.html#/c:objc(cs)SUUpdatePermissionResponse(py)sendSystemProfile":{"name":"sendSystemProfile","abstract":"

    A read-only property indicating if system profile should be sent or not.

    ","parent_name":"SUUpdatePermissionResponse"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(im)init":{"name":"-init","abstract":"

    Initializes a new instance of the standard version comparator.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(cpy)defaultComparator":{"name":"defaultComparator","abstract":"

    A singleton instance of the comparator.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUStandardVersionComparator.html#/c:objc(cs)SUStandardVersionComparator(im)compareVersion:toVersion:":{"name":"-compareVersion:toVersion:","abstract":"

    Compares two version strings through textual analysis.

    ","parent_name":"SUStandardVersionComparator"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)versionString":{"name":"versionString","abstract":"

    The version of the update item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)displayVersionString":{"name":"displayVersionString","abstract":"

    The human-readable display version of the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)fileURL":{"name":"fileURL","abstract":"

    The file URL to the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)contentLength":{"name":"contentLength","abstract":"

    The content length of the download in bytes.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)infoURL":{"name":"infoURL","abstract":"

    The info URL to the update item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)informationOnlyUpdate":{"name":"informationOnlyUpdate","abstract":"

    Indicates whether or not the update item is only informational and has no download.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)title":{"name":"title","abstract":"

    The title of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)dateString":{"name":"dateString","abstract":"

    The date string of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)date":{"name":"date","abstract":"

    The date constructed from the dateString property if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)releaseNotesURL":{"name":"releaseNotesURL","abstract":"

    The release notes URL of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)itemDescription":{"name":"itemDescription","abstract":"

    The description of the appcast item if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumSystemVersion":{"name":"minimumSystemVersion","abstract":"

    The required minimum system operating version string for this update if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumOperatingSystemVersionIsOK":{"name":"minimumOperatingSystemVersionIsOK","abstract":"

    Indicates whether or not the current running system passes the minimumSystemVersion requirement.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)maximumSystemVersion":{"name":"maximumSystemVersion","abstract":"

    The required maximum system operating version string for this update if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)maximumOperatingSystemVersionIsOK":{"name":"maximumOperatingSystemVersionIsOK","abstract":"

    Indicates whether or not the current running system passes the maximumSystemVersion requirement.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)channel":{"name":"channel","abstract":"

    The channel the update item is on if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)installationType":{"name":"installationType","abstract":"

    The installation type of the update at fileURL

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)phasedRolloutInterval":{"name":"phasedRolloutInterval","abstract":"

    The phased rollout interval of the update item in seconds if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)minimumAutoupdateVersion":{"name":"minimumAutoupdateVersion","abstract":"

    The minimum bundle version string this update requires for automatically downloading and installing updates if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)majorUpgrade":{"name":"majorUpgrade","abstract":"

    Indicates whether or not the update item is a major upgrade.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)criticalUpdate":{"name":"criticalUpdate","abstract":"

    Indicates whether or not the update item is critical.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)osString":{"name":"osString","abstract":"

    Specifies the operating system the download update is available for if provided.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)macOsUpdate":{"name":"macOsUpdate","abstract":"

    Indicates whether or not this update item is for macOS.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)deltaUpdates":{"name":"deltaUpdates","abstract":"

    The delta updates for this update item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)deltaUpdate":{"name":"deltaUpdate","abstract":"

    Indicates whether or not the update item is a delta update.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(py)propertiesDictionary":{"name":"propertiesDictionary","abstract":"

    The dictionary representing the entire appcast item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(cm)emptyAppcastItem":{"name":"+emptyAppcastItem","abstract":"

    An empty appcast item.

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:":{"name":"-initWithDictionary:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:failureReason:":{"name":"-initWithDictionary:failureReason:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcastItem.html#/c:objc(cs)SUAppcastItem(im)initWithDictionary:relativeToURL:failureReason:":{"name":"-initWithDictionary:relativeToURL:failureReason:","abstract":"

    Undocumented

    ","parent_name":"SUAppcastItem"},"Classes/SUAppcast.html#/c:objc(cs)SUAppcast(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SUAppcast"},"Classes/SUAppcast.html#/c:objc(cs)SUAppcast(py)items":{"name":"items","abstract":"

    The collection of update items.

    ","parent_name":"SUAppcast"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(py)stage":{"name":"stage","abstract":"

    The current update stage.

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUserUpdateState.html#/c:objc(cs)SPUUserUpdateState(py)userInitiated":{"name":"userInitiated","abstract":"

    Indicates whether or not the update check was initiated by the user.

    ","parent_name":"SPUUserUpdateState"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(im)initWithHostBundle:":{"name":"-initWithHostBundle:","abstract":"

    Undocumented

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    Indicates whether or not automatic update checks are enabled.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    The regular update check interval.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)allowsAutomaticUpdates":{"name":"allowsAutomaticUpdates","abstract":"

    Indicates whether or not automatically downloading updates is allowed to be turned on by the user.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    Indicates whether or not automatically downloading updates is enabled by the user or developer.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdaterSettings.html#/c:objc(cs)SPUUpdaterSettings(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    Indicates whether or not anonymous system profile information is sent when checking for updates.

    ","parent_name":"SPUUpdaterSettings"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)initWithHostBundle:applicationBundle:userDriver:delegate:":{"name":"-initWithHostBundle:applicationBundle:userDriver:delegate:","abstract":"

    Initializes a new SPUUpdater instance

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)init":{"name":"-init","abstract":"

    Use -initWithHostBundle:applicationBundle:userDriver:delegate: or SPUStandardUpdaterController standard adapter instead.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)startUpdater:":{"name":"-startUpdater:","abstract":"

    Starts the updater.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdates":{"name":"-checkForUpdates","abstract":"

    Checks for updates, and displays progress while doing so if needed.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdatesInBackground":{"name":"-checkForUpdatesInBackground","abstract":"

    Checks for updates, but does not display any UI unless an update is found.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdateInformation":{"name":"-checkForUpdateInformation","abstract":"

    Begins a “probing” check for updates which will not actually offer to","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)canCheckForUpdates":{"name":"canCheckForUpdates","abstract":"

    A property indicating whether or not updates can be checked by the user.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)sessionInProgress":{"name":"sessionInProgress","abstract":"

    A property indicating whether or not an update session is in progress.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)automaticallyChecksForUpdates":{"name":"automaticallyChecksForUpdates","abstract":"

    A property indicating whether or not to check for updates automatically.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)updateCheckInterval":{"name":"updateCheckInterval","abstract":"

    A property indicating the current automatic update check interval in seconds.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)automaticallyDownloadsUpdates":{"name":"automaticallyDownloadsUpdates","abstract":"

    A property indicating whether or not updates can be automatically downloaded in the background.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)feedURL":{"name":"feedURL","abstract":"

    The URL of the appcast used to download update information.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)hostBundle":{"name":"hostBundle","abstract":"

    The host bundle that is being updated.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)userAgentString":{"name":"userAgentString","abstract":"

    The user agent used when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)httpHeaders":{"name":"httpHeaders","abstract":"

    The HTTP headers used when checking for updates, downloading release notes, and downloading updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)sendsSystemProfile":{"name":"sendsSystemProfile","abstract":"

    A property indicating whether or not the user’s system profile information is sent when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)lastUpdateCheckDate":{"name":"lastUpdateCheckDate","abstract":"

    The date of the last update check or nil if no check has been performed yet.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)resetUpdateCycle":{"name":"-resetUpdateCycle","abstract":"

    Appropriately schedules or cancels the update checking timer according to the preferences for time interval and automatic checks.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)systemProfileArray":{"name":"systemProfileArray","abstract":"

    The system profile information that is sent when checking for updates.

    ","parent_name":"SPUUpdater"},"Classes/SPUUpdatePermissionRequest.html#/c:objc(cs)SPUUpdatePermissionRequest(im)initWithSystemProfile:":{"name":"-initWithSystemProfile:","abstract":"

    Initializes a new update permission request instance.

    ","parent_name":"SPUUpdatePermissionRequest"},"Classes/SPUUpdatePermissionRequest.html#/c:objc(cs)SPUUpdatePermissionRequest(py)systemProfile":{"name":"systemProfile","abstract":"

    A read-only property for the user’s system profile.

    ","parent_name":"SPUUpdatePermissionRequest"},"Classes/SPUStandardUserDriver.html#/c:objc(cs)SPUStandardUserDriver(im)initWithHostBundle:delegate:":{"name":"-initWithHostBundle:delegate:","abstract":"

    Initializes a Sparkle’s standard user driver for user update interactions

    ","parent_name":"SPUStandardUserDriver"},"Classes/SPUStandardUserDriver.html#/c:objc(cs)SPUStandardUserDriver(im)init":{"name":"-init","abstract":"

    Use initWithHostBundle:delegate: instead.

    ","parent_name":"SPUStandardUserDriver"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)updaterDelegate":{"name":"updaterDelegate","abstract":"

    Interface builder outlet for the updater’s delegate.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)userDriverDelegate":{"name":"userDriverDelegate","abstract":"

    Interface builder outlet for the user driver’s delegate.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)updater":{"name":"updater","abstract":"

    Accessible property for the updater. Some properties on the updater can be binded via KVO

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(py)userDriver":{"name":"userDriver","abstract":"

    Accessible property for the updater’s user driver.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)init":{"name":"-init","abstract":"

    Create a new SPUStandardUpdaterController from a nib.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)initWithUpdaterDelegate:userDriverDelegate:":{"name":"-initWithUpdaterDelegate:userDriverDelegate:","abstract":"

    Create a new SPUStandardUpdaterController programmatically.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)initWithStartingUpdater:updaterDelegate:userDriverDelegate:":{"name":"-initWithStartingUpdater:updaterDelegate:userDriverDelegate:","abstract":"

    Create a new SPUStandardUpdaterController programmatically allowing you to specify whether or not to start the updater immediately.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)startUpdater":{"name":"-startUpdater","abstract":"

    Starts the updater if it has not already been started.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)checkForUpdates:":{"name":"-checkForUpdates:","abstract":"

    Explicitly checks for updates and displays a progress dialog while doing so.

    ","parent_name":"SPUStandardUpdaterController"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)data":{"name":"data","abstract":"

    The raw data that was downloaded.

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)URL":{"name":"URL","abstract":"

    The URL that was fetched from.

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)textEncodingName":{"name":"textEncodingName","abstract":"

    The IANA charset encoding name if available. Eg: “utf-8”

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html#/c:objc(cs)SPUDownloadData(py)MIMEType":{"name":"MIMEType","abstract":"

    The MIME type if available. Eg: “text/plain”

    ","parent_name":"SPUDownloadData"},"Classes/SPUDownloadData.html":{"name":"SPUDownloadData","abstract":"

    A class for containing downloaded data along with some information about it.

    "},"Classes/SPUStandardUpdaterController.html":{"name":"SPUStandardUpdaterController","abstract":"

    A controller class that instantiates a SPUUpdater and allows binding UI to its updater settings.

    "},"Classes/SPUStandardUserDriver.html":{"name":"SPUStandardUserDriver","abstract":"

    Sparkle’s standard built-in user driver for updater interactions

    "},"Classes/SPUUpdatePermissionRequest.html":{"name":"SPUUpdatePermissionRequest","abstract":"

    This class represents information needed to make a permission request for checking updates.

    "},"Classes/SPUUpdater.html":{"name":"SPUUpdater","abstract":"

    The main API in Sparkle for controlling the update mechanism.

    "},"Classes/SPUUpdaterSettings.html":{"name":"SPUUpdaterSettings","abstract":"

    This class can be used for reading certain updater settings.

    "},"Classes/SPUUserUpdateState.html":{"name":"SPUUserUpdateState","abstract":"

    This represents the user’s current update state.

    "},"Classes/SUAppcast.html":{"name":"SUAppcast","abstract":"

    The appcast representing a collection of SUAppcastItem items in the feed.

    "},"Classes/SUAppcastItem.html":{"name":"SUAppcastItem","abstract":"

    The appcast item describing an update in the application’s appcast feed.

    "},"Classes/SUStandardVersionComparator.html":{"name":"SUStandardVersionComparator","abstract":"

    Sparkle’s default version comparator.

    "},"Classes/SUUpdatePermissionResponse.html":{"name":"SUUpdatePermissionResponse","abstract":"

    This class represents a response for permission to check updates.

    "},"Classes/SUUpdater.html":{"name":"SUUpdater","abstract":"

    The legacy API in Sparkle for controlling the update mechanism.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "}} \ No newline at end of file diff --git a/documentation/api-reference/search/all_0.html b/documentation/api-reference/search/all_0.html new file mode 100644 index 0000000..1ec5b2d --- /dev/null +++ b/documentation/api-reference/search/all_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_0.js b/documentation/api-reference/search/all_0.js new file mode 100644 index 0000000..605bdd6 --- /dev/null +++ b/documentation/api-reference/search/all_0.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['allowedchannelsforupdater_3a_0',['allowedChannelsForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a717db8ad85d47309e3f4deebdc09e7b4',1,'SPUUpdaterDelegate-p']]], + ['allowedsystemprofilekeysforupdater_3a_1',['allowedSystemProfileKeysForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aec7e4b19a2fc4afdcc86286c3bbf06b1',1,'SPUUpdaterDelegate-p']]], + ['allowsautomaticupdates_2',['allowsAutomaticUpdates',['../interface_s_p_u_updater_settings.html#ae9b58785573e4d3e2abea0c57544681f',1,'SPUUpdaterSettings']]], + ['automaticallychecksforupdates_3',['automaticallyChecksForUpdates',['../interface_s_p_u_updater.html#a9a154002bdbe3306e763d000502a0980',1,'SPUUpdater::automaticallyChecksForUpdates()'],['../interface_s_p_u_updater_settings.html#a41e4d0f0e10e9afa92fe5c81d21bfde3',1,'SPUUpdaterSettings::automaticallyChecksForUpdates()']]], + ['automaticallydownloadsupdates_4',['automaticallyDownloadsUpdates',['../interface_s_p_u_updater.html#aa5f5578c29e6496cb90546aca35804e6',1,'SPUUpdater::automaticallyDownloadsUpdates()'],['../interface_s_p_u_updater_settings.html#af1a1fba7d6dcd05b52339f173c7a0a8d',1,'SPUUpdaterSettings::automaticallyDownloadsUpdates()']]], + ['automaticupdatechecks_5',['automaticUpdateChecks',['../interface_s_u_update_permission_response.html#a84a21b766bcbbe1fff16c26b8689aa56',1,'SUUpdatePermissionResponse']]] +]; diff --git a/documentation/api-reference/search/all_1.html b/documentation/api-reference/search/all_1.html new file mode 100644 index 0000000..9f80e90 --- /dev/null +++ b/documentation/api-reference/search/all_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_1.js b/documentation/api-reference/search/all_1.js new file mode 100644 index 0000000..797ad91 --- /dev/null +++ b/documentation/api-reference/search/all_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['bestvalidupdateinappcast_3aforupdater_3a_6',['bestValidUpdateInAppcast:forUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a0f38585740c428ce8904bf38f712396d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/all_2.html b/documentation/api-reference/search/all_2.html new file mode 100644 index 0000000..02cfffc --- /dev/null +++ b/documentation/api-reference/search/all_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_2.js b/documentation/api-reference/search/all_2.js new file mode 100644 index 0000000..712d85e --- /dev/null +++ b/documentation/api-reference/search/all_2.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['cancheckforupdates_7',['canCheckForUpdates',['../interface_s_p_u_updater.html#aa8ec4e87308007ae49228165534e683c',1,'SPUUpdater']]], + ['changeownerandgroupofitematrooturl_3atomatchurl_3aerror_3a_8',['changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:',['../interface_s_u_file_manager.html#af0defc82017c43bd1f0eab5540c05f09',1,'SUFileManager']]], + ['checkforupdateinformation_9',['checkForUpdateInformation',['../interface_s_p_u_updater.html#ad38751e23aa42be220206e7e671c697d',1,'SPUUpdater']]], + ['checkforupdates_10',['checkForUpdates',['../interface_s_p_u_updater.html#a7df56bb150d327beb72b7b050799790d',1,'SPUUpdater']]], + ['checkforupdates_3a_11',['checkForUpdates:',['../interface_s_p_u_standard_updater_controller.html#af2d2c860e3f3ae9d8feba95d196c4dc9',1,'SPUStandardUpdaterController']]], + ['checkforupdatesinbackground_12',['checkForUpdatesInBackground',['../interface_s_p_u_updater.html#a2e1e3ca715f29bae7ee0b16e15e34850',1,'SPUUpdater']]], + ['compareversion_3atoversion_3a_13',['compareVersion:toVersion:',['../interface_s_u_standard_version_comparator.html#a50d145ce078dd80d55346f17e946d282',1,'SUStandardVersionComparator::compareVersion:toVersion:()'],['../protocol_s_u_version_comparison-p.html#a0f94aedcc244ce41757e1fa620d0eb40',1,'SUVersionComparison-p::compareVersion:toVersion:()']]], + ['copyitematurl_3atourl_3aerror_3a_14',['copyItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#ac33297bd6dfbf11a23c3c0ded059f4d0',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/search/all_3.html b/documentation/api-reference/search/all_3.html new file mode 100644 index 0000000..39767b8 --- /dev/null +++ b/documentation/api-reference/search/all_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_3.js b/documentation/api-reference/search/all_3.js new file mode 100644 index 0000000..6409f82 --- /dev/null +++ b/documentation/api-reference/search/all_3.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['data_15',['data',['../interface_s_p_u_download_data.html#ae8c680d14f0213633c117684e58fbef2',1,'SPUDownloadData']]], + ['decryptionpasswordforupdater_3a_16',['decryptionPasswordForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aaf8dbbcdef45b16d2fc43a4cc5487051',1,'SPUUpdaterDelegate-p']]], + ['defaultcomparator_17',['defaultComparator',['../interface_s_u_standard_version_comparator.html#a67be5d5bf36c4774432d912261cb3048',1,'SUStandardVersionComparator']]], + ['dismissupdateinstallation_18',['dismissUpdateInstallation',['../protocol_s_p_u_user_driver-p.html#a5df3b42fd77ab1b5c971c8df9ef35048',1,'SPUUserDriver-p']]] +]; diff --git a/documentation/api-reference/search/all_4.html b/documentation/api-reference/search/all_4.html new file mode 100644 index 0000000..fc40463 --- /dev/null +++ b/documentation/api-reference/search/all_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_4.js b/documentation/api-reference/search/all_4.js new file mode 100644 index 0000000..62f3039 --- /dev/null +++ b/documentation/api-reference/search/all_4.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['feedparametersforupdater_3asendingsystemprofile_3a_19',['feedParametersForUpdater:sendingSystemProfile:',['../protocol_s_p_u_updater_delegate-p.html#a43cee9820784cffdffc3b48d8b07407e',1,'SPUUpdaterDelegate-p']]], + ['feedurl_20',['feedURL',['../interface_s_p_u_updater.html#af49bc6a058dc0e758943a4b4b1ff98dc',1,'SPUUpdater']]], + ['feedurlstringforupdater_3a_21',['feedURLStringForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#afd1a89b0133a35faf849b58944349516',1,'SPUUpdaterDelegate-p']]], + ['formatversion_3aandversion_3a_22',['formatVersion:andVersion:',['../protocol_s_u_version_display-p.html#afb8728137859a22c1ed795637e654dbd',1,'SUVersionDisplay-p']]] +]; diff --git a/documentation/api-reference/search/all_5.html b/documentation/api-reference/search/all_5.html new file mode 100644 index 0000000..9dd9344 --- /dev/null +++ b/documentation/api-reference/search/all_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_5.js b/documentation/api-reference/search/all_5.js new file mode 100644 index 0000000..96e99e0 --- /dev/null +++ b/documentation/api-reference/search/all_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hasanykeys_23',['hasAnyKeys',['../interface_s_u_public_keys.html#ae2a53f6befe084d9a6fa7369a0dbe78a',1,'SUPublicKeys']]], + ['hostbundle_24',['hostBundle',['../interface_s_p_u_updater.html#aeae19dba9dc83ae9098279b0eed76d47',1,'SPUUpdater']]], + ['httpheaders_25',['httpHeaders',['../interface_s_p_u_updater.html#a2e2747823e204ebc07800ae31c201ad1',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/all_6.html b/documentation/api-reference/search/all_6.html new file mode 100644 index 0000000..f1e516d --- /dev/null +++ b/documentation/api-reference/search/all_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_6.js b/documentation/api-reference/search/all_6.js new file mode 100644 index 0000000..550eedf --- /dev/null +++ b/documentation/api-reference/search/all_6.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['init_26',['init',['../interface_s_u_file_manager.html#a972da7c2fb112d09d4903ada3564126a',1,'SUFileManager::init()'],['../interface_s_u_standard_version_comparator.html#aef2dc178fc9895961ccb8ba966c1446b',1,'SUStandardVersionComparator::init()']]], + ['initwithautomaticupdatechecks_3asendsystemprofile_3a_27',['initWithAutomaticUpdateChecks:sendSystemProfile:',['../interface_s_u_update_permission_response.html#a09be7ccbcaf1521fc9a3f5dd420785ee',1,'SUUpdatePermissionResponse']]], + ['initwithdictionary_3arelativetourl_3astateresolver_3afailurereason_3a_28',['initWithDictionary:relativeToURL:stateResolver:failureReason:',['../category_s_u_appcast_item_07_private_08.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem(Private)::initWithDictionary:relativeToURL:stateResolver:failureReason:()'],['../interface_s_u_appcast_item.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem::initWithDictionary:relativeToURL:stateResolver:failureReason:()']]], + ['initwithhostbundle_3aapplicationbundle_3auserdriver_3adelegate_3a_29',['initWithHostBundle:applicationBundle:userDriver:delegate:',['../interface_s_p_u_updater.html#aed247e3fde0667e50b8d2345e84033e1',1,'SPUUpdater']]], + ['initwithhostbundle_3adelegate_3a_30',['initWithHostBundle:delegate:',['../interface_s_p_u_standard_user_driver.html#a153eafa16df66af096947673762c2deb',1,'SPUStandardUserDriver']]], + ['initwithstartingupdater_3aupdaterdelegate_3auserdriverdelegate_3a_31',['initWithStartingUpdater:updaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a5612aa1955b41cd306200dc451c2079c',1,'SPUStandardUpdaterController']]], + ['initwithsystemprofile_3a_32',['initWithSystemProfile:',['../interface_s_p_u_update_permission_request.html#a111cc1f6605e481954f1ea57f833b6ab',1,'SPUUpdatePermissionRequest']]], + ['initwithupdaterdelegate_3auserdriverdelegate_3a_33',['initWithUpdaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a696072b114786259d2e6744914b55850',1,'SPUStandardUpdaterController']]], + ['installerprogressappcontroller_34',['InstallerProgressAppController',['../interface_installer_progress_app_controller.html',1,'']]], + ['installerprogressappcontroller_28_29_35',['InstallerProgressAppController()',['../category_installer_progress_app_controller_07_08.html',1,'']]], + ['installerprogressdelegate_2dp_36',['InstallerProgressDelegate-p',['../protocol_installer_progress_delegate-p.html',1,'']]] +]; diff --git a/documentation/api-reference/search/all_7.html b/documentation/api-reference/search/all_7.html new file mode 100644 index 0000000..8ddbf6c --- /dev/null +++ b/documentation/api-reference/search/all_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_7.js b/documentation/api-reference/search/all_7.js new file mode 100644 index 0000000..a25460b --- /dev/null +++ b/documentation/api-reference/search/all_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['lastupdatecheckdate_37',['lastUpdateCheckDate',['../interface_s_p_u_updater.html#a22a62559c6938c7a34b1787f22043010',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/all_8.html b/documentation/api-reference/search/all_8.html new file mode 100644 index 0000000..83c55ae --- /dev/null +++ b/documentation/api-reference/search/all_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_8.js b/documentation/api-reference/search/all_8.js new file mode 100644 index 0000000..2402d38 --- /dev/null +++ b/documentation/api-reference/search/all_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['makedirectoryaturl_3aerror_3a_38',['makeDirectoryAtURL:error:',['../interface_s_u_file_manager.html#ace4c529974dc1b64360db12689c2e9aa',1,'SUFileManager']]], + ['maketemporarydirectorywithpreferredname_3aappropriatefordirectoryurl_3aerror_3a_39',['makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:',['../interface_s_u_file_manager.html#a055d2ef9910e85c90a7d0dc34b34ce92',1,'SUFileManager']]], + ['mimetype_40',['MIMEType',['../interface_s_p_u_download_data.html#a108d9dec279550089dbea559e449321c',1,'SPUDownloadData']]], + ['moveitematurl_3atourl_3aerror_3a_41',['moveItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#a8f9d15f622a08284e2d5157ebea440f3',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/search/all_9.html b/documentation/api-reference/search/all_9.html new file mode 100644 index 0000000..1e263c1 --- /dev/null +++ b/documentation/api-reference/search/all_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_9.js b/documentation/api-reference/search/all_9.js new file mode 100644 index 0000000..ee69966 --- /dev/null +++ b/documentation/api-reference/search/all_9.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['ns_5funavailable_42',['NS_UNAVAILABLE',['../interface_s_p_u_standard_updater_controller.html#a3c582fd7f0de322edc97915c9405eced',1,'SPUStandardUpdaterController::NS_UNAVAILABLE()'],['../interface_s_p_u_standard_user_driver.html#a9ad2b659b5760b2f4274e5c63b1f8094',1,'SPUStandardUserDriver::NS_UNAVAILABLE()'],['../interface_s_p_u_updater.html#ac2907583983833ce9f09bee2867d7654',1,'SPUUpdater::NS_UNAVAILABLE()']]], + ['nsbutton_28sierrasdk_29_43',['NSButton(SierraSDK)',['../category_n_s_button_07_sierra_s_d_k_08.html',1,'']]], + ['nsdata_28susignatureverifier_29_44',['NSData(SUSignatureVerifier)',['../category_n_s_data_07_s_u_signature_verifier_08.html',1,'']]], + ['nsobject_28privatedelegatemethods_29_45',['NSObject(PrivateDelegateMethods)',['../category_n_s_object_07_private_delegate_methods_08.html',1,'']]], + ['nsoperatingsystemversion_46',['NSOperatingSystemVersion',['../struct_n_s_operating_system_version.html',1,'']]], + ['nsprocessinfo_28_29_47',['NSProcessInfo()',['../category_n_s_process_info_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/search/all_a.html b/documentation/api-reference/search/all_a.html new file mode 100644 index 0000000..3a6cac1 --- /dev/null +++ b/documentation/api-reference/search/all_a.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_a.js b/documentation/api-reference/search/all_a.js new file mode 100644 index 0000000..9bbc556 --- /dev/null +++ b/documentation/api-reference/search/all_a.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['releaseitemfromquarantineatrooturl_3aerror_3a_48',['releaseItemFromQuarantineAtRootURL:error:',['../interface_s_u_file_manager.html#a8599b8160422edbb38f34e547889f727',1,'SUFileManager']]], + ['removeitematurl_3aerror_3a_49',['removeItemAtURL:error:',['../interface_s_u_file_manager.html#aea79ee52a31937c33f5e00e60f873b4b',1,'SUFileManager']]], + ['replaceitematurl_3awithitematurl_3aerror_3a_50',['replaceItemAtURL:withItemAtURL:error:',['../interface_s_u_file_manager.html#aec3de47f6e37353f905b855951b37c65',1,'SUFileManager']]], + ['resetupdatecycle_51',['resetUpdateCycle',['../interface_s_p_u_updater.html#aefe1e7f5ae5b8e02f1d7beab189b51af',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/all_b.html b/documentation/api-reference/search/all_b.html new file mode 100644 index 0000000..130deb4 --- /dev/null +++ b/documentation/api-reference/search/all_b.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_b.js b/documentation/api-reference/search/all_b.js new file mode 100644 index 0000000..ec526d6 --- /dev/null +++ b/documentation/api-reference/search/all_b.js @@ -0,0 +1,121 @@ +var searchData= +[ + ['sendssystemprofile_52',['sendsSystemProfile',['../interface_s_p_u_updater.html#a521d2f6d09ceec6af979f6116bc58f7f',1,'SPUUpdater::sendsSystemProfile()'],['../interface_s_p_u_updater_settings.html#a97b5102512608a905bda83b33dd0bb5d',1,'SPUUpdaterSettings::sendsSystemProfile()']]], + ['sendsystemprofile_53',['sendSystemProfile',['../interface_s_u_update_permission_response.html#af9436f4e07219513c68dbad51daf9c8d',1,'SUUpdatePermissionResponse']]], + ['sessioninprogress_54',['sessionInProgress',['../interface_s_p_u_updater.html#aebc820be90ea36d0d97c6f11e80f3a4f',1,'SPUUpdater']]], + ['setfeedurl_3a_55',['setFeedURL:',['../interface_s_p_u_updater.html#adfaabdc767d7a7668c8e472e45abd635',1,'SPUUpdater']]], + ['showdownloaddidreceivedataoflength_3a_56',['showDownloadDidReceiveDataOfLength:',['../protocol_s_p_u_user_driver-p.html#ac86c11d9dd8f66cc54bc3f3dd303fb6c',1,'SPUUserDriver-p']]], + ['showdownloaddidreceiveexpectedcontentlength_3a_57',['showDownloadDidReceiveExpectedContentLength:',['../protocol_s_p_u_user_driver-p.html#abf58b5974797500618b7745f1987833a',1,'SPUUserDriver-p']]], + ['showdownloaddidstartextractingupdate_58',['showDownloadDidStartExtractingUpdate',['../protocol_s_p_u_user_driver-p.html#a19ada57d6b77c7ea3ed402833dcda44c',1,'SPUUserDriver-p']]], + ['showdownloadinitiatedwithcancellation_3a_59',['showDownloadInitiatedWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a3c6cd7f7b93f6d2777b04f3c9f0bb62c',1,'SPUUserDriver-p']]], + ['showextractionreceivedprogress_3a_60',['showExtractionReceivedProgress:',['../protocol_s_p_u_user_driver-p.html#a3ffb49c0f51864011685049b7225dfbf',1,'SPUUserDriver-p']]], + ['showinstallerprogress_61',['ShowInstallerProgress',['../interface_show_installer_progress.html',1,'']]], + ['showinstallerprogress_28_29_62',['ShowInstallerProgress()',['../category_show_installer_progress_07_08.html',1,'']]], + ['showinstallingupdate_63',['showInstallingUpdate',['../protocol_s_p_u_user_driver-p.html#ab774cef0a00dbc7c074f8850c1e6c21f',1,'SPUUserDriver-p']]], + ['showreadytoinstallandrelaunch_3a_64',['showReadyToInstallAndRelaunch:',['../protocol_s_p_u_user_driver-p.html#a91ad34f8469dc022c7b1ed42b0f1575d',1,'SPUUserDriver-p']]], + ['showsendingterminationsignal_65',['showSendingTerminationSignal',['../protocol_s_p_u_user_driver-p.html#a3eb11e826fe5c1f68112a73600c23bf2',1,'SPUUserDriver-p']]], + ['showupdatefoundwithappcastitem_3astate_3areply_3a_66',['showUpdateFoundWithAppcastItem:state:reply:',['../protocol_s_p_u_user_driver-p.html#ac0f8e99c60962476ea55729833a0e3f2',1,'SPUUserDriver-p']]], + ['showupdateinfocus_67',['showUpdateInFocus',['../protocol_s_p_u_user_driver-p.html#ac6d613d4689dbc6415774d0ab63afd55',1,'SPUUserDriver-p']]], + ['showupdateinstalledandrelaunched_3aacknowledgement_3a_68',['showUpdateInstalledAndRelaunched:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#aa8b7ae192288db21ab43b4413b2d80c3',1,'SPUUserDriver-p']]], + ['showupdatenotfoundwitherror_3aacknowledgement_3a_69',['showUpdateNotFoundWithError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#abf3ca2a6bb84fe26a4ce53ae5b6f2233',1,'SPUUserDriver-p']]], + ['showupdatepermissionrequest_3areply_3a_70',['showUpdatePermissionRequest:reply:',['../protocol_s_p_u_user_driver-p.html#a6382048832f06216f505659c251dc1e0',1,'SPUUserDriver-p']]], + ['showupdatereleasenotesfailedtodownloadwitherror_3a_71',['showUpdateReleaseNotesFailedToDownloadWithError:',['../protocol_s_p_u_user_driver-p.html#ab304bc81459aa83fc617eb5047cd93a1',1,'SPUUserDriver-p']]], + ['showupdatereleasenoteswithdownloaddata_3a_72',['showUpdateReleaseNotesWithDownloadData:',['../protocol_s_p_u_user_driver-p.html#ae5fe75d599aae6597d81bd2449919be8',1,'SPUUserDriver-p']]], + ['showupdatererror_3aacknowledgement_3a_73',['showUpdaterError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#ac10bbf2fbe588106bf3a8c951caa2d53',1,'SPUUserDriver-p']]], + ['showuserinitiatedupdatecheckwithcancellation_3a_74',['showUserInitiatedUpdateCheckWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a797fb61eacdd1fba10a232d7b2b5ceac',1,'SPUUserDriver-p']]], + ['sparklebundle_75',['sparkleBundle',['../interface_s_p_u_updater.html#aa0e335f7212dbd90668ea0bbef0f00c2',1,'SPUUpdater']]], + ['spuappcastitemstate_76',['SPUAppcastItemState',['../interface_s_p_u_appcast_item_state.html',1,'']]], + ['spuappcastitemstate_28_29_77',['SPUAppcastItemState()',['../category_s_p_u_appcast_item_state_07_08.html',1,'']]], + ['spuappcastitemstateresolver_78',['SPUAppcastItemStateResolver',['../interface_s_p_u_appcast_item_state_resolver.html',1,'']]], + ['spuautomaticupdatedriver_79',['SPUAutomaticUpdateDriver',['../interface_s_p_u_automatic_update_driver.html',1,'']]], + ['spuautomaticupdatedriver_28_29_80',['SPUAutomaticUpdateDriver()',['../category_s_p_u_automatic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriver_81',['SPUBasicUpdateDriver',['../interface_s_p_u_basic_update_driver.html',1,'']]], + ['spubasicupdatedriver_28_29_82',['SPUBasicUpdateDriver()',['../category_s_p_u_basic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriverdelegate_2dp_83',['SPUBasicUpdateDriverDelegate-p',['../protocol_s_p_u_basic_update_driver_delegate-p.html',1,'']]], + ['spucorebasedupdatedriver_84',['SPUCoreBasedUpdateDriver',['../interface_s_p_u_core_based_update_driver.html',1,'']]], + ['spucorebasedupdatedriver_28_29_85',['SPUCoreBasedUpdateDriver()',['../category_s_p_u_core_based_update_driver_07_08.html',1,'']]], + ['spucorebasedupdatedriverdelegate_2dp_86',['SPUCoreBasedUpdateDriverDelegate-p',['../protocol_s_p_u_core_based_update_driver_delegate-p.html',1,'']]], + ['spudownloaddata_87',['SPUDownloadData',['../interface_s_p_u_download_data.html',1,'']]], + ['spudownloaddriver_88',['SPUDownloadDriver',['../interface_s_p_u_download_driver.html',1,'']]], + ['spudownloaddriver_28_29_89',['SPUDownloadDriver()',['../category_s_p_u_download_driver_07_08.html',1,'']]], + ['spudownloaddriverdelegate_2dp_90',['SPUDownloadDriverDelegate-p',['../protocol_s_p_u_download_driver_delegate-p.html',1,'']]], + ['spudownloadedupdate_91',['SPUDownloadedUpdate',['../interface_s_p_u_downloaded_update.html',1,'']]], + ['spuinformationalupdate_92',['SPUInformationalUpdate',['../interface_s_p_u_informational_update.html',1,'']]], + ['spuinstalleragentprotocol_2dp_93',['SPUInstallerAgentProtocol-p',['../protocol_s_p_u_installer_agent_protocol-p.html',1,'']]], + ['spuinstallerdriver_94',['SPUInstallerDriver',['../interface_s_p_u_installer_driver.html',1,'']]], + ['spuinstallerdriver_28_29_95',['SPUInstallerDriver()',['../category_s_p_u_installer_driver_07_08.html',1,'']]], + ['spuinstallerdriverdelegate_2dp_96',['SPUInstallerDriverDelegate-p',['../protocol_s_p_u_installer_driver_delegate-p.html',1,'']]], + ['spulocalcachedirectory_97',['SPULocalCacheDirectory',['../interface_s_p_u_local_cache_directory.html',1,'']]], + ['spuprobeinstallstatus_98',['SPUProbeInstallStatus',['../interface_s_p_u_probe_install_status.html',1,'']]], + ['spuprobingupdatedriver_99',['SPUProbingUpdateDriver',['../interface_s_p_u_probing_update_driver.html',1,'']]], + ['spuprobingupdatedriver_28_29_100',['SPUProbingUpdateDriver()',['../category_s_p_u_probing_update_driver_07_08.html',1,'']]], + ['spureleasenotesdriver_101',['SPUReleaseNotesDriver',['../interface_s_p_u_release_notes_driver.html',1,'']]], + ['spuresumableupdate_2dp_102',['SPUResumableUpdate-p',['../protocol_s_p_u_resumable_update-p.html',1,'']]], + ['spuscheduledupdatedriver_103',['SPUScheduledUpdateDriver',['../interface_s_p_u_scheduled_update_driver.html',1,'']]], + ['spuscheduledupdatedriver_28_29_104',['SPUScheduledUpdateDriver()',['../category_s_p_u_scheduled_update_driver_07_08.html',1,'']]], + ['spuskippedupdate_105',['SPUSkippedUpdate',['../interface_s_p_u_skipped_update.html',1,'']]], + ['spustandardupdatercontroller_106',['SPUStandardUpdaterController',['../interface_s_p_u_standard_updater_controller.html',1,'']]], + ['spustandarduserdriver_107',['SPUStandardUserDriver',['../interface_s_p_u_standard_user_driver.html',1,'']]], + ['spustandarduserdriverdelegate_2dp_108',['SPUStandardUserDriverDelegate-p',['../protocol_s_p_u_standard_user_driver_delegate-p.html',1,'']]], + ['spuuibasedupdatedriver_109',['SPUUIBasedUpdateDriver',['../interface_s_p_u_u_i_based_update_driver.html',1,'']]], + ['spuuibasedupdatedriver_28_29_110',['SPUUIBasedUpdateDriver()',['../category_s_p_u_u_i_based_update_driver_07_08.html',1,'']]], + ['spuuibasedupdatedriverdelegate_2dp_111',['SPUUIBasedUpdateDriverDelegate-p',['../protocol_s_p_u_u_i_based_update_driver_delegate-p.html',1,'']]], + ['spuupdatedriver_2dp_112',['SPUUpdateDriver-p',['../protocol_s_p_u_update_driver-p.html',1,'']]], + ['spuupdatepermissionrequest_113',['SPUUpdatePermissionRequest',['../interface_s_p_u_update_permission_request.html',1,'']]], + ['spuupdater_114',['SPUUpdater',['../interface_s_p_u_updater.html',1,'']]], + ['spuupdater_28_29_115',['SPUUpdater()',['../category_s_p_u_updater_07_08.html',1,'']]], + ['spuupdatercycle_116',['SPUUpdaterCycle',['../interface_s_p_u_updater_cycle.html',1,'']]], + ['spuupdatercycle_28_29_117',['SPUUpdaterCycle()',['../category_s_p_u_updater_cycle_07_08.html',1,'']]], + ['spuupdatercycledelegate_2dp_118',['SPUUpdaterCycleDelegate-p',['../protocol_s_p_u_updater_cycle_delegate-p.html',1,'']]], + ['spuupdaterdelegate_2dp_119',['SPUUpdaterDelegate-p',['../protocol_s_p_u_updater_delegate-p.html',1,'']]], + ['spuupdatersettings_120',['SPUUpdaterSettings',['../interface_s_p_u_updater_settings.html',1,'']]], + ['spuupdatersettings_28_29_121',['SPUUpdaterSettings()',['../category_s_p_u_updater_settings_07_08.html',1,'']]], + ['spuupdatertimer_122',['SPUUpdaterTimer',['../interface_s_p_u_updater_timer.html',1,'']]], + ['spuupdatertimer_28_29_123',['SPUUpdaterTimer()',['../category_s_p_u_updater_timer_07_08.html',1,'']]], + ['spuupdatertimerdelegate_2dp_124',['SPUUpdaterTimerDelegate-p',['../protocol_s_p_u_updater_timer_delegate-p.html',1,'']]], + ['spuurlrequest_125',['SPUURLRequest',['../interface_s_p_u_u_r_l_request.html',1,'']]], + ['spuurlrequest_28_29_126',['SPUURLRequest()',['../category_s_p_u_u_r_l_request_07_08.html',1,'']]], + ['spuuserdriver_2dp_127',['SPUUserDriver-p',['../protocol_s_p_u_user_driver-p.html',1,'']]], + ['spuuserinitiatedupdatedriver_128',['SPUUserInitiatedUpdateDriver',['../interface_s_p_u_user_initiated_update_driver.html',1,'']]], + ['spuuserinitiatedupdatedriver_28_29_129',['SPUUserInitiatedUpdateDriver()',['../category_s_p_u_user_initiated_update_driver_07_08.html',1,'']]], + ['spuuserupdatestate_130',['SPUUserUpdateState',['../interface_s_p_u_user_update_state.html',1,'']]], + ['spuuserupdatestate_28_29_131',['SPUUserUpdateState()',['../category_s_p_u_user_update_state_07_08.html',1,'']]], + ['spuuserupdatestate_28private_29_132',['SPUUserUpdateState(Private)',['../category_s_p_u_user_update_state_07_private_08.html',1,'']]], + ['standarduserdriverdidshowmodalalert_133',['standardUserDriverDidShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#aaaafb308354867990fed28c308dc881d',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverrequestsversiondisplayer_134',['standardUserDriverRequestsVersionDisplayer',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ae96836bc3c2fb3104d6586e5067001b3',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverwillshowmodalalert_135',['standardUserDriverWillShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ad3bbc4db85bf302e8d6db6b4f030969a',1,'SPUStandardUserDriverDelegate-p']]], + ['startupdater_136',['startUpdater',['../interface_s_p_u_standard_updater_controller.html#a13632a2dd07a4d49333ec23091a3c6a5',1,'SPUStandardUpdaterController']]], + ['startupdater_3a_137',['startUpdater:',['../interface_s_p_u_updater.html#a30c0f163e0fbc7b100f84c64b491b353',1,'SPUUpdater']]], + ['suappcast_138',['SUAppcast',['../interface_s_u_appcast.html',1,'']]], + ['suappcast_28_29_139',['SUAppcast()',['../category_s_u_appcast_07_08.html',1,'']]], + ['suappcast_28private_29_140',['SUAppcast(Private)',['../category_s_u_appcast_07_private_08.html',1,'']]], + ['suappcastdriver_141',['SUAppcastDriver',['../interface_s_u_appcast_driver.html',1,'']]], + ['suappcastdriver_28_29_142',['SUAppcastDriver()',['../category_s_u_appcast_driver_07_08.html',1,'']]], + ['suappcastdriverdelegate_2dp_143',['SUAppcastDriverDelegate-p',['../protocol_s_u_appcast_driver_delegate-p.html',1,'']]], + ['suappcastitem_144',['SUAppcastItem',['../interface_s_u_appcast_item.html',1,'']]], + ['suappcastitem_28_29_145',['SUAppcastItem()',['../category_s_u_appcast_item_07_08.html',1,'']]], + ['suappcastitem_28private_29_146',['SUAppcastItem(Private)',['../category_s_u_appcast_item_07_private_08.html',1,'']]], + ['suapplicationinfo_147',['SUApplicationInfo',['../interface_s_u_application_info.html',1,'']]], + ['subundleicon_148',['SUBundleIcon',['../interface_s_u_bundle_icon.html',1,'']]], + ['sufilemanager_149',['SUFileManager',['../interface_s_u_file_manager.html',1,'']]], + ['suhost_150',['SUHost',['../interface_s_u_host.html',1,'']]], + ['suhost_28_29_151',['SUHost()',['../category_s_u_host_07_08.html',1,'']]], + ['suinstalleragentinitiationprotocol_2dp_152',['SUInstallerAgentInitiationProtocol-p',['../protocol_s_u_installer_agent_initiation_protocol-p.html',1,'']]], + ['suinstallerprotocol_2dp_153',['SUInstallerProtocol-p',['../protocol_s_u_installer_protocol-p.html',1,'']]], + ['suoperatingsystem_154',['SUOperatingSystem',['../interface_s_u_operating_system.html',1,'']]], + ['suphasedupdategroupinfo_155',['SUPhasedUpdateGroupInfo',['../interface_s_u_phased_update_group_info.html',1,'']]], + ['supublickeys_156',['SUPublicKeys',['../interface_s_u_public_keys.html',1,'']]], + ['susignatures_157',['SUSignatures',['../interface_s_u_signatures.html',1,'']]], + ['sustandardversioncomparator_158',['SUStandardVersionComparator',['../interface_s_u_standard_version_comparator.html',1,'']]], + ['sustatuscontroller_159',['SUStatusController',['../interface_s_u_status_controller.html',1,'']]], + ['sustatuscontroller_28_29_160',['SUStatusController()',['../category_s_u_status_controller_07_08.html',1,'']]], + ['susystemprofiler_161',['SUSystemProfiler',['../interface_s_u_system_profiler.html',1,'']]], + ['sutouchbarbuttongroup_162',['SUTouchBarButtonGroup',['../interface_s_u_touch_bar_button_group.html',1,'']]], + ['suupdatepermissionresponse_163',['SUUpdatePermissionResponse',['../interface_s_u_update_permission_response.html',1,'']]], + ['suupdatevalidator_164',['SUUpdateValidator',['../interface_s_u_update_validator.html',1,'']]], + ['suupdatevalidator_28_29_165',['SUUpdateValidator()',['../category_s_u_update_validator_07_08.html',1,'']]], + ['suversioncomparison_2dp_166',['SUVersionComparison-p',['../protocol_s_u_version_comparison-p.html',1,'']]], + ['suversiondisplay_2dp_167',['SUVersionDisplay-p',['../protocol_s_u_version_display-p.html',1,'']]], + ['systemprofile_168',['systemProfile',['../interface_s_p_u_update_permission_request.html#a318086878d3e1ec1efa9b8d2424f9844',1,'SPUUpdatePermissionRequest']]], + ['systemprofilearray_169',['systemProfileArray',['../interface_s_p_u_updater.html#a90e21876539a0dab3eacfccad863aaa2',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/all_c.html b/documentation/api-reference/search/all_c.html new file mode 100644 index 0000000..3dd5af0 --- /dev/null +++ b/documentation/api-reference/search/all_c.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_c.js b/documentation/api-reference/search/all_c.js new file mode 100644 index 0000000..cc57e5f --- /dev/null +++ b/documentation/api-reference/search/all_c.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['terminationlistener_170',['TerminationListener',['../interface_termination_listener.html',1,'']]], + ['terminationlistener_28_29_171',['TerminationListener()',['../category_termination_listener_07_08.html',1,'']]], + ['textencodingname_172',['textEncodingName',['../interface_s_p_u_download_data.html#a8316fe998bf3afa7bc4d6df7dc0ac070',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/search/all_d.html b/documentation/api-reference/search/all_d.html new file mode 100644 index 0000000..af7f2f0 --- /dev/null +++ b/documentation/api-reference/search/all_d.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_d.js b/documentation/api-reference/search/all_d.js new file mode 100644 index 0000000..1d6772a --- /dev/null +++ b/documentation/api-reference/search/all_d.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['updateaccesstimeofitematrooturl_3aerror_3a_173',['updateAccessTimeOfItemAtRootURL:error:',['../interface_s_u_file_manager.html#ae7b47ef3936d2ab36d32d1f496c9b133',1,'SUFileManager']]], + ['updatecheckinterval_174',['updateCheckInterval',['../interface_s_p_u_updater.html#a1b2a4bc575d1f9de57e189ca93bda22a',1,'SPUUpdater::updateCheckInterval()'],['../interface_s_p_u_updater_settings.html#affb7ac205324036803bda21826bde524',1,'SPUUpdaterSettings::updateCheckInterval()']]], + ['updatemodificationandaccesstimeofitematurl_3aerror_3a_175',['updateModificationAndAccessTimeOfItemAtURL:error:',['../interface_s_u_file_manager.html#ad81e3246bf42d50c7c0ed2df06ff41de',1,'SUFileManager']]], + ['updater_176',['updater',['../interface_s_p_u_standard_updater_controller.html#afa35dd9683576ac1126d1ebbb6d0f3d3',1,'SPUStandardUpdaterController']]], + ['updater_3adidabortwitherror_3a_177',['updater:didAbortWithError:',['../protocol_s_p_u_updater_delegate-p.html#a71df9732bf67636a1b61a76a54d57878',1,'SPUUpdaterDelegate-p']]], + ['updater_3adiddownloadupdate_3a_178',['updater:didDownloadUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a3f8066b02a7a3c1c215bee70458e6db0',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidextractupdate_3a_179',['updater:didExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a8d7a087d6f25ded00f80acfd3555e504',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfindvalidupdate_3a_180',['updater:didFindValidUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a155defe95c694f91c46f81baff2c99d9',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfinishloadingappcast_3a_181',['updater:didFinishLoadingAppcast:',['../protocol_s_p_u_updater_delegate-p.html#a67f5d81863a898df881ddbbaed9371a8',1,'SPUUpdaterDelegate-p']]], + ['updater_3afailedtodownloadupdate_3aerror_3a_182',['updater:failedToDownloadUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#ab446fa17e9b9adfda488ca48641c203a',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldallowinstallerinteractionforupdatecheck_3a_183',['updater:shouldAllowInstallerInteractionForUpdateCheck:',['../protocol_s_p_u_updater_delegate-p.html#a232aa864ac8c86b266bc043dfd1136b4',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldpostponerelaunchforupdate_3auntilinvokingblock_3a_184',['updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:',['../protocol_s_p_u_updater_delegate-p.html#aeef90220bddc5727c5e6529b58e48164',1,'SPUUpdaterDelegate-p']]], + ['updater_3auserdidskipthisversion_3a_185',['updater:userDidSkipThisVersion:',['../protocol_s_p_u_updater_delegate-p.html#a1f8fcf730b45b3b650b19627dd1ac36c',1,'SPUUpdaterDelegate-p']]], + ['updater_3awilldownloadupdate_3awithrequest_3a_186',['updater:willDownloadUpdate:withRequest:',['../protocol_s_p_u_updater_delegate-p.html#a2255ef7b18b135306e871e1471a4a399',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillextractupdate_3a_187',['updater:willExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a2573857b492ea895f099407a92321a3f',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdate_3a_188',['updater:willInstallUpdate:',['../protocol_s_p_u_updater_delegate-p.html#acf34be619b8fb7f66693837849d5e228',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdateonquit_3aimmediateinstallationblock_3a_189',['updater:willInstallUpdateOnQuit:immediateInstallationBlock:',['../protocol_s_p_u_updater_delegate-p.html#a64585159f4bef97e47de8359e202f3ad',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillscheduleupdatecheckafterdelay_3a_190',['updater:willScheduleUpdateCheckAfterDelay:',['../protocol_s_p_u_updater_delegate-p.html#aafac150db4d32c06c84ee3ad01b0f036',1,'SPUUpdaterDelegate-p']]], + ['updaterdelegate_191',['updaterDelegate',['../interface_s_p_u_standard_updater_controller.html#a8ee554e7555314565b582ea7ddfb91fe',1,'SPUStandardUpdaterController']]], + ['updaterdidnotfindupdate_3a_192',['updaterDidNotFindUpdate:',['../protocol_s_p_u_updater_delegate-p.html#ad112453ce92617e3356a7cd5c4d0658b',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3aerror_3a_193',['updaterDidNotFindUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#a5ad88d4c57d19fe73080273b13ded22d',1,'SPUUpdaterDelegate-p']]], + ['updatermaycheckforupdates_3a_194',['updaterMayCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a1745cb021956a38c2439b370e9cda904',1,'SPUUpdaterDelegate-p']]], + ['updatershoulddownloadreleasenotes_3a_195',['updaterShouldDownloadReleaseNotes:',['../protocol_s_p_u_updater_delegate-p.html#a8b966f752f5a19942534698d5271544a',1,'SPUUpdaterDelegate-p']]], + ['updatershouldpromptforpermissiontocheckforupdates_3a_196',['updaterShouldPromptForPermissionToCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a5cd8012b35bec5de906e70c4dabce602',1,'SPUUpdaterDelegate-p']]], + ['updatershouldrelaunchapplication_3a_197',['updaterShouldRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a703e4aa94c2b4fe835c99b1f2b8f1c48',1,'SPUUpdaterDelegate-p']]], + ['updaterwillidleschedulingupdates_3a_198',['updaterWillIdleSchedulingUpdates:',['../protocol_s_p_u_updater_delegate-p.html#afccc281852fd4f497d815cda9b4695bb',1,'SPUUpdaterDelegate-p']]], + ['updaterwillrelaunchapplication_3a_199',['updaterWillRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a6fa486e14d915cd18ac3791a905647f2',1,'SPUUpdaterDelegate-p']]], + ['url_200',['URL',['../interface_s_p_u_download_data.html#a5eabdc79a39c2de6e0c79b2d6d4e5b0e',1,'SPUDownloadData']]], + ['useragentstring_201',['userAgentString',['../interface_s_p_u_updater.html#a62757b3c7dea957c737527e854408e96',1,'SPUUpdater']]], + ['userdidcanceldownload_3a_202',['userDidCancelDownload:',['../protocol_s_p_u_updater_delegate-p.html#a06e1e03dea92513fd284e263b9f80d02',1,'SPUUpdaterDelegate-p']]], + ['userdriver_203',['userDriver',['../interface_s_p_u_standard_updater_controller.html#a22c96bbd966c2d92884a2cfc6fb4f6f6',1,'SPUStandardUpdaterController']]], + ['userdriverdelegate_204',['userDriverDelegate',['../interface_s_p_u_standard_updater_controller.html#a4afcf2d6fc104bf1186a0e757aa267d7',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/search/all_e.html b/documentation/api-reference/search/all_e.html new file mode 100644 index 0000000..e25df42 --- /dev/null +++ b/documentation/api-reference/search/all_e.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/all_e.js b/documentation/api-reference/search/all_e.js new file mode 100644 index 0000000..9e8d984 --- /dev/null +++ b/documentation/api-reference/search/all_e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['versioncomparatorforupdater_3a_205',['versionComparatorForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a8bea6508b8e81a51c1087a1f3b501c1d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/classes_0.html b/documentation/api-reference/search/classes_0.html new file mode 100644 index 0000000..af8159e --- /dev/null +++ b/documentation/api-reference/search/classes_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/classes_0.js b/documentation/api-reference/search/classes_0.js new file mode 100644 index 0000000..9e35133 --- /dev/null +++ b/documentation/api-reference/search/classes_0.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['installerprogressappcontroller_206',['InstallerProgressAppController',['../interface_installer_progress_app_controller.html',1,'']]], + ['installerprogressappcontroller_28_29_207',['InstallerProgressAppController()',['../category_installer_progress_app_controller_07_08.html',1,'']]], + ['installerprogressdelegate_2dp_208',['InstallerProgressDelegate-p',['../protocol_installer_progress_delegate-p.html',1,'']]] +]; diff --git a/documentation/api-reference/search/classes_1.html b/documentation/api-reference/search/classes_1.html new file mode 100644 index 0000000..576e916 --- /dev/null +++ b/documentation/api-reference/search/classes_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/classes_1.js b/documentation/api-reference/search/classes_1.js new file mode 100644 index 0000000..8da5fe2 --- /dev/null +++ b/documentation/api-reference/search/classes_1.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['nsbutton_28sierrasdk_29_209',['NSButton(SierraSDK)',['../category_n_s_button_07_sierra_s_d_k_08.html',1,'']]], + ['nsdata_28susignatureverifier_29_210',['NSData(SUSignatureVerifier)',['../category_n_s_data_07_s_u_signature_verifier_08.html',1,'']]], + ['nsobject_28privatedelegatemethods_29_211',['NSObject(PrivateDelegateMethods)',['../category_n_s_object_07_private_delegate_methods_08.html',1,'']]], + ['nsoperatingsystemversion_212',['NSOperatingSystemVersion',['../struct_n_s_operating_system_version.html',1,'']]], + ['nsprocessinfo_28_29_213',['NSProcessInfo()',['../category_n_s_process_info_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/search/classes_2.html b/documentation/api-reference/search/classes_2.html new file mode 100644 index 0000000..956405e --- /dev/null +++ b/documentation/api-reference/search/classes_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/classes_2.js b/documentation/api-reference/search/classes_2.js new file mode 100644 index 0000000..be0d489 --- /dev/null +++ b/documentation/api-reference/search/classes_2.js @@ -0,0 +1,92 @@ +var searchData= +[ + ['showinstallerprogress_214',['ShowInstallerProgress',['../interface_show_installer_progress.html',1,'']]], + ['showinstallerprogress_28_29_215',['ShowInstallerProgress()',['../category_show_installer_progress_07_08.html',1,'']]], + ['spuappcastitemstate_216',['SPUAppcastItemState',['../interface_s_p_u_appcast_item_state.html',1,'']]], + ['spuappcastitemstate_28_29_217',['SPUAppcastItemState()',['../category_s_p_u_appcast_item_state_07_08.html',1,'']]], + ['spuappcastitemstateresolver_218',['SPUAppcastItemStateResolver',['../interface_s_p_u_appcast_item_state_resolver.html',1,'']]], + ['spuautomaticupdatedriver_219',['SPUAutomaticUpdateDriver',['../interface_s_p_u_automatic_update_driver.html',1,'']]], + ['spuautomaticupdatedriver_28_29_220',['SPUAutomaticUpdateDriver()',['../category_s_p_u_automatic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriver_221',['SPUBasicUpdateDriver',['../interface_s_p_u_basic_update_driver.html',1,'']]], + ['spubasicupdatedriver_28_29_222',['SPUBasicUpdateDriver()',['../category_s_p_u_basic_update_driver_07_08.html',1,'']]], + ['spubasicupdatedriverdelegate_2dp_223',['SPUBasicUpdateDriverDelegate-p',['../protocol_s_p_u_basic_update_driver_delegate-p.html',1,'']]], + ['spucorebasedupdatedriver_224',['SPUCoreBasedUpdateDriver',['../interface_s_p_u_core_based_update_driver.html',1,'']]], + ['spucorebasedupdatedriver_28_29_225',['SPUCoreBasedUpdateDriver()',['../category_s_p_u_core_based_update_driver_07_08.html',1,'']]], + ['spucorebasedupdatedriverdelegate_2dp_226',['SPUCoreBasedUpdateDriverDelegate-p',['../protocol_s_p_u_core_based_update_driver_delegate-p.html',1,'']]], + ['spudownloaddata_227',['SPUDownloadData',['../interface_s_p_u_download_data.html',1,'']]], + ['spudownloaddriver_228',['SPUDownloadDriver',['../interface_s_p_u_download_driver.html',1,'']]], + ['spudownloaddriver_28_29_229',['SPUDownloadDriver()',['../category_s_p_u_download_driver_07_08.html',1,'']]], + ['spudownloaddriverdelegate_2dp_230',['SPUDownloadDriverDelegate-p',['../protocol_s_p_u_download_driver_delegate-p.html',1,'']]], + ['spudownloadedupdate_231',['SPUDownloadedUpdate',['../interface_s_p_u_downloaded_update.html',1,'']]], + ['spuinformationalupdate_232',['SPUInformationalUpdate',['../interface_s_p_u_informational_update.html',1,'']]], + ['spuinstalleragentprotocol_2dp_233',['SPUInstallerAgentProtocol-p',['../protocol_s_p_u_installer_agent_protocol-p.html',1,'']]], + ['spuinstallerdriver_234',['SPUInstallerDriver',['../interface_s_p_u_installer_driver.html',1,'']]], + ['spuinstallerdriver_28_29_235',['SPUInstallerDriver()',['../category_s_p_u_installer_driver_07_08.html',1,'']]], + ['spuinstallerdriverdelegate_2dp_236',['SPUInstallerDriverDelegate-p',['../protocol_s_p_u_installer_driver_delegate-p.html',1,'']]], + ['spulocalcachedirectory_237',['SPULocalCacheDirectory',['../interface_s_p_u_local_cache_directory.html',1,'']]], + ['spuprobeinstallstatus_238',['SPUProbeInstallStatus',['../interface_s_p_u_probe_install_status.html',1,'']]], + ['spuprobingupdatedriver_239',['SPUProbingUpdateDriver',['../interface_s_p_u_probing_update_driver.html',1,'']]], + ['spuprobingupdatedriver_28_29_240',['SPUProbingUpdateDriver()',['../category_s_p_u_probing_update_driver_07_08.html',1,'']]], + ['spureleasenotesdriver_241',['SPUReleaseNotesDriver',['../interface_s_p_u_release_notes_driver.html',1,'']]], + ['spuresumableupdate_2dp_242',['SPUResumableUpdate-p',['../protocol_s_p_u_resumable_update-p.html',1,'']]], + ['spuscheduledupdatedriver_243',['SPUScheduledUpdateDriver',['../interface_s_p_u_scheduled_update_driver.html',1,'']]], + ['spuscheduledupdatedriver_28_29_244',['SPUScheduledUpdateDriver()',['../category_s_p_u_scheduled_update_driver_07_08.html',1,'']]], + ['spuskippedupdate_245',['SPUSkippedUpdate',['../interface_s_p_u_skipped_update.html',1,'']]], + ['spustandardupdatercontroller_246',['SPUStandardUpdaterController',['../interface_s_p_u_standard_updater_controller.html',1,'']]], + ['spustandarduserdriver_247',['SPUStandardUserDriver',['../interface_s_p_u_standard_user_driver.html',1,'']]], + ['spustandarduserdriverdelegate_2dp_248',['SPUStandardUserDriverDelegate-p',['../protocol_s_p_u_standard_user_driver_delegate-p.html',1,'']]], + ['spuuibasedupdatedriver_249',['SPUUIBasedUpdateDriver',['../interface_s_p_u_u_i_based_update_driver.html',1,'']]], + ['spuuibasedupdatedriver_28_29_250',['SPUUIBasedUpdateDriver()',['../category_s_p_u_u_i_based_update_driver_07_08.html',1,'']]], + ['spuuibasedupdatedriverdelegate_2dp_251',['SPUUIBasedUpdateDriverDelegate-p',['../protocol_s_p_u_u_i_based_update_driver_delegate-p.html',1,'']]], + ['spuupdatedriver_2dp_252',['SPUUpdateDriver-p',['../protocol_s_p_u_update_driver-p.html',1,'']]], + ['spuupdatepermissionrequest_253',['SPUUpdatePermissionRequest',['../interface_s_p_u_update_permission_request.html',1,'']]], + ['spuupdater_254',['SPUUpdater',['../interface_s_p_u_updater.html',1,'']]], + ['spuupdater_28_29_255',['SPUUpdater()',['../category_s_p_u_updater_07_08.html',1,'']]], + ['spuupdatercycle_256',['SPUUpdaterCycle',['../interface_s_p_u_updater_cycle.html',1,'']]], + ['spuupdatercycle_28_29_257',['SPUUpdaterCycle()',['../category_s_p_u_updater_cycle_07_08.html',1,'']]], + ['spuupdatercycledelegate_2dp_258',['SPUUpdaterCycleDelegate-p',['../protocol_s_p_u_updater_cycle_delegate-p.html',1,'']]], + ['spuupdaterdelegate_2dp_259',['SPUUpdaterDelegate-p',['../protocol_s_p_u_updater_delegate-p.html',1,'']]], + ['spuupdatersettings_260',['SPUUpdaterSettings',['../interface_s_p_u_updater_settings.html',1,'']]], + ['spuupdatersettings_28_29_261',['SPUUpdaterSettings()',['../category_s_p_u_updater_settings_07_08.html',1,'']]], + ['spuupdatertimer_262',['SPUUpdaterTimer',['../interface_s_p_u_updater_timer.html',1,'']]], + ['spuupdatertimer_28_29_263',['SPUUpdaterTimer()',['../category_s_p_u_updater_timer_07_08.html',1,'']]], + ['spuupdatertimerdelegate_2dp_264',['SPUUpdaterTimerDelegate-p',['../protocol_s_p_u_updater_timer_delegate-p.html',1,'']]], + ['spuurlrequest_265',['SPUURLRequest',['../interface_s_p_u_u_r_l_request.html',1,'']]], + ['spuurlrequest_28_29_266',['SPUURLRequest()',['../category_s_p_u_u_r_l_request_07_08.html',1,'']]], + ['spuuserdriver_2dp_267',['SPUUserDriver-p',['../protocol_s_p_u_user_driver-p.html',1,'']]], + ['spuuserinitiatedupdatedriver_268',['SPUUserInitiatedUpdateDriver',['../interface_s_p_u_user_initiated_update_driver.html',1,'']]], + ['spuuserinitiatedupdatedriver_28_29_269',['SPUUserInitiatedUpdateDriver()',['../category_s_p_u_user_initiated_update_driver_07_08.html',1,'']]], + ['spuuserupdatestate_270',['SPUUserUpdateState',['../interface_s_p_u_user_update_state.html',1,'']]], + ['spuuserupdatestate_28_29_271',['SPUUserUpdateState()',['../category_s_p_u_user_update_state_07_08.html',1,'']]], + ['spuuserupdatestate_28private_29_272',['SPUUserUpdateState(Private)',['../category_s_p_u_user_update_state_07_private_08.html',1,'']]], + ['suappcast_273',['SUAppcast',['../interface_s_u_appcast.html',1,'']]], + ['suappcast_28_29_274',['SUAppcast()',['../category_s_u_appcast_07_08.html',1,'']]], + ['suappcast_28private_29_275',['SUAppcast(Private)',['../category_s_u_appcast_07_private_08.html',1,'']]], + ['suappcastdriver_276',['SUAppcastDriver',['../interface_s_u_appcast_driver.html',1,'']]], + ['suappcastdriver_28_29_277',['SUAppcastDriver()',['../category_s_u_appcast_driver_07_08.html',1,'']]], + ['suappcastdriverdelegate_2dp_278',['SUAppcastDriverDelegate-p',['../protocol_s_u_appcast_driver_delegate-p.html',1,'']]], + ['suappcastitem_279',['SUAppcastItem',['../interface_s_u_appcast_item.html',1,'']]], + ['suappcastitem_28_29_280',['SUAppcastItem()',['../category_s_u_appcast_item_07_08.html',1,'']]], + ['suappcastitem_28private_29_281',['SUAppcastItem(Private)',['../category_s_u_appcast_item_07_private_08.html',1,'']]], + ['suapplicationinfo_282',['SUApplicationInfo',['../interface_s_u_application_info.html',1,'']]], + ['subundleicon_283',['SUBundleIcon',['../interface_s_u_bundle_icon.html',1,'']]], + ['sufilemanager_284',['SUFileManager',['../interface_s_u_file_manager.html',1,'']]], + ['suhost_285',['SUHost',['../interface_s_u_host.html',1,'']]], + ['suhost_28_29_286',['SUHost()',['../category_s_u_host_07_08.html',1,'']]], + ['suinstalleragentinitiationprotocol_2dp_287',['SUInstallerAgentInitiationProtocol-p',['../protocol_s_u_installer_agent_initiation_protocol-p.html',1,'']]], + ['suinstallerprotocol_2dp_288',['SUInstallerProtocol-p',['../protocol_s_u_installer_protocol-p.html',1,'']]], + ['suoperatingsystem_289',['SUOperatingSystem',['../interface_s_u_operating_system.html',1,'']]], + ['suphasedupdategroupinfo_290',['SUPhasedUpdateGroupInfo',['../interface_s_u_phased_update_group_info.html',1,'']]], + ['supublickeys_291',['SUPublicKeys',['../interface_s_u_public_keys.html',1,'']]], + ['susignatures_292',['SUSignatures',['../interface_s_u_signatures.html',1,'']]], + ['sustandardversioncomparator_293',['SUStandardVersionComparator',['../interface_s_u_standard_version_comparator.html',1,'']]], + ['sustatuscontroller_294',['SUStatusController',['../interface_s_u_status_controller.html',1,'']]], + ['sustatuscontroller_28_29_295',['SUStatusController()',['../category_s_u_status_controller_07_08.html',1,'']]], + ['susystemprofiler_296',['SUSystemProfiler',['../interface_s_u_system_profiler.html',1,'']]], + ['sutouchbarbuttongroup_297',['SUTouchBarButtonGroup',['../interface_s_u_touch_bar_button_group.html',1,'']]], + ['suupdatepermissionresponse_298',['SUUpdatePermissionResponse',['../interface_s_u_update_permission_response.html',1,'']]], + ['suupdatevalidator_299',['SUUpdateValidator',['../interface_s_u_update_validator.html',1,'']]], + ['suupdatevalidator_28_29_300',['SUUpdateValidator()',['../category_s_u_update_validator_07_08.html',1,'']]], + ['suversioncomparison_2dp_301',['SUVersionComparison-p',['../protocol_s_u_version_comparison-p.html',1,'']]], + ['suversiondisplay_2dp_302',['SUVersionDisplay-p',['../protocol_s_u_version_display-p.html',1,'']]] +]; diff --git a/documentation/api-reference/search/classes_3.html b/documentation/api-reference/search/classes_3.html new file mode 100644 index 0000000..d33343b --- /dev/null +++ b/documentation/api-reference/search/classes_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/classes_3.js b/documentation/api-reference/search/classes_3.js new file mode 100644 index 0000000..5ee7f50 --- /dev/null +++ b/documentation/api-reference/search/classes_3.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['terminationlistener_303',['TerminationListener',['../interface_termination_listener.html',1,'']]], + ['terminationlistener_28_29_304',['TerminationListener()',['../category_termination_listener_07_08.html',1,'']]] +]; diff --git a/documentation/api-reference/search/close.svg b/documentation/api-reference/search/close.svg new file mode 100644 index 0000000..a933eea --- /dev/null +++ b/documentation/api-reference/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/documentation/api-reference/search/functions_0.html b/documentation/api-reference/search/functions_0.html new file mode 100644 index 0000000..eb4c501 --- /dev/null +++ b/documentation/api-reference/search/functions_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_0.js b/documentation/api-reference/search/functions_0.js new file mode 100644 index 0000000..a7361fe --- /dev/null +++ b/documentation/api-reference/search/functions_0.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['allowedchannelsforupdater_3a_305',['allowedChannelsForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a717db8ad85d47309e3f4deebdc09e7b4',1,'SPUUpdaterDelegate-p']]], + ['allowedsystemprofilekeysforupdater_3a_306',['allowedSystemProfileKeysForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aec7e4b19a2fc4afdcc86286c3bbf06b1',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/functions_1.html b/documentation/api-reference/search/functions_1.html new file mode 100644 index 0000000..ef4088b --- /dev/null +++ b/documentation/api-reference/search/functions_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_1.js b/documentation/api-reference/search/functions_1.js new file mode 100644 index 0000000..107de75 --- /dev/null +++ b/documentation/api-reference/search/functions_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['bestvalidupdateinappcast_3aforupdater_3a_307',['bestValidUpdateInAppcast:forUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a0f38585740c428ce8904bf38f712396d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/functions_2.html b/documentation/api-reference/search/functions_2.html new file mode 100644 index 0000000..ca5aa10 --- /dev/null +++ b/documentation/api-reference/search/functions_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_2.js b/documentation/api-reference/search/functions_2.js new file mode 100644 index 0000000..15be9ff --- /dev/null +++ b/documentation/api-reference/search/functions_2.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['changeownerandgroupofitematrooturl_3atomatchurl_3aerror_3a_308',['changeOwnerAndGroupOfItemAtRootURL:toMatchURL:error:',['../interface_s_u_file_manager.html#af0defc82017c43bd1f0eab5540c05f09',1,'SUFileManager']]], + ['checkforupdateinformation_309',['checkForUpdateInformation',['../interface_s_p_u_updater.html#ad38751e23aa42be220206e7e671c697d',1,'SPUUpdater']]], + ['checkforupdates_310',['checkForUpdates',['../interface_s_p_u_updater.html#a7df56bb150d327beb72b7b050799790d',1,'SPUUpdater']]], + ['checkforupdates_3a_311',['checkForUpdates:',['../interface_s_p_u_standard_updater_controller.html#af2d2c860e3f3ae9d8feba95d196c4dc9',1,'SPUStandardUpdaterController']]], + ['checkforupdatesinbackground_312',['checkForUpdatesInBackground',['../interface_s_p_u_updater.html#a2e1e3ca715f29bae7ee0b16e15e34850',1,'SPUUpdater']]], + ['compareversion_3atoversion_3a_313',['compareVersion:toVersion:',['../interface_s_u_standard_version_comparator.html#a50d145ce078dd80d55346f17e946d282',1,'SUStandardVersionComparator::compareVersion:toVersion:()'],['../protocol_s_u_version_comparison-p.html#a0f94aedcc244ce41757e1fa620d0eb40',1,'SUVersionComparison-p::compareVersion:toVersion:()']]], + ['copyitematurl_3atourl_3aerror_3a_314',['copyItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#ac33297bd6dfbf11a23c3c0ded059f4d0',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/search/functions_3.html b/documentation/api-reference/search/functions_3.html new file mode 100644 index 0000000..d79f55b --- /dev/null +++ b/documentation/api-reference/search/functions_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_3.js b/documentation/api-reference/search/functions_3.js new file mode 100644 index 0000000..2b2a29f --- /dev/null +++ b/documentation/api-reference/search/functions_3.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['decryptionpasswordforupdater_3a_315',['decryptionPasswordForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#aaf8dbbcdef45b16d2fc43a4cc5487051',1,'SPUUpdaterDelegate-p']]], + ['defaultcomparator_316',['defaultComparator',['../interface_s_u_standard_version_comparator.html#a67be5d5bf36c4774432d912261cb3048',1,'SUStandardVersionComparator']]], + ['dismissupdateinstallation_317',['dismissUpdateInstallation',['../protocol_s_p_u_user_driver-p.html#a5df3b42fd77ab1b5c971c8df9ef35048',1,'SPUUserDriver-p']]] +]; diff --git a/documentation/api-reference/search/functions_4.html b/documentation/api-reference/search/functions_4.html new file mode 100644 index 0000000..1657cad --- /dev/null +++ b/documentation/api-reference/search/functions_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_4.js b/documentation/api-reference/search/functions_4.js new file mode 100644 index 0000000..cfb2484 --- /dev/null +++ b/documentation/api-reference/search/functions_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['feedparametersforupdater_3asendingsystemprofile_3a_318',['feedParametersForUpdater:sendingSystemProfile:',['../protocol_s_p_u_updater_delegate-p.html#a43cee9820784cffdffc3b48d8b07407e',1,'SPUUpdaterDelegate-p']]], + ['feedurlstringforupdater_3a_319',['feedURLStringForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#afd1a89b0133a35faf849b58944349516',1,'SPUUpdaterDelegate-p']]], + ['formatversion_3aandversion_3a_320',['formatVersion:andVersion:',['../protocol_s_u_version_display-p.html#afb8728137859a22c1ed795637e654dbd',1,'SUVersionDisplay-p']]] +]; diff --git a/documentation/api-reference/search/functions_5.html b/documentation/api-reference/search/functions_5.html new file mode 100644 index 0000000..9301d6b --- /dev/null +++ b/documentation/api-reference/search/functions_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_5.js b/documentation/api-reference/search/functions_5.js new file mode 100644 index 0000000..f86fe25 --- /dev/null +++ b/documentation/api-reference/search/functions_5.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['init_321',['init',['../interface_s_u_file_manager.html#a972da7c2fb112d09d4903ada3564126a',1,'SUFileManager::init()'],['../interface_s_u_standard_version_comparator.html#aef2dc178fc9895961ccb8ba966c1446b',1,'SUStandardVersionComparator::init()']]], + ['initwithautomaticupdatechecks_3asendsystemprofile_3a_322',['initWithAutomaticUpdateChecks:sendSystemProfile:',['../interface_s_u_update_permission_response.html#a09be7ccbcaf1521fc9a3f5dd420785ee',1,'SUUpdatePermissionResponse']]], + ['initwithdictionary_3arelativetourl_3astateresolver_3afailurereason_3a_323',['initWithDictionary:relativeToURL:stateResolver:failureReason:',['../category_s_u_appcast_item_07_private_08.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem(Private)::initWithDictionary:relativeToURL:stateResolver:failureReason:()'],['../interface_s_u_appcast_item.html#a0687fe14843337befdfa749e77de60a0',1,'SUAppcastItem::initWithDictionary:relativeToURL:stateResolver:failureReason:()']]], + ['initwithhostbundle_3aapplicationbundle_3auserdriver_3adelegate_3a_324',['initWithHostBundle:applicationBundle:userDriver:delegate:',['../interface_s_p_u_updater.html#aed247e3fde0667e50b8d2345e84033e1',1,'SPUUpdater']]], + ['initwithhostbundle_3adelegate_3a_325',['initWithHostBundle:delegate:',['../interface_s_p_u_standard_user_driver.html#a153eafa16df66af096947673762c2deb',1,'SPUStandardUserDriver']]], + ['initwithstartingupdater_3aupdaterdelegate_3auserdriverdelegate_3a_326',['initWithStartingUpdater:updaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a5612aa1955b41cd306200dc451c2079c',1,'SPUStandardUpdaterController']]], + ['initwithsystemprofile_3a_327',['initWithSystemProfile:',['../interface_s_p_u_update_permission_request.html#a111cc1f6605e481954f1ea57f833b6ab',1,'SPUUpdatePermissionRequest']]], + ['initwithupdaterdelegate_3auserdriverdelegate_3a_328',['initWithUpdaterDelegate:userDriverDelegate:',['../interface_s_p_u_standard_updater_controller.html#a696072b114786259d2e6744914b55850',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/search/functions_6.html b/documentation/api-reference/search/functions_6.html new file mode 100644 index 0000000..9c4f5fc --- /dev/null +++ b/documentation/api-reference/search/functions_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_6.js b/documentation/api-reference/search/functions_6.js new file mode 100644 index 0000000..04d86f2 --- /dev/null +++ b/documentation/api-reference/search/functions_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['makedirectoryaturl_3aerror_3a_329',['makeDirectoryAtURL:error:',['../interface_s_u_file_manager.html#ace4c529974dc1b64360db12689c2e9aa',1,'SUFileManager']]], + ['maketemporarydirectorywithpreferredname_3aappropriatefordirectoryurl_3aerror_3a_330',['makeTemporaryDirectoryWithPreferredName:appropriateForDirectoryURL:error:',['../interface_s_u_file_manager.html#a055d2ef9910e85c90a7d0dc34b34ce92',1,'SUFileManager']]], + ['moveitematurl_3atourl_3aerror_3a_331',['moveItemAtURL:toURL:error:',['../interface_s_u_file_manager.html#a8f9d15f622a08284e2d5157ebea440f3',1,'SUFileManager']]] +]; diff --git a/documentation/api-reference/search/functions_7.html b/documentation/api-reference/search/functions_7.html new file mode 100644 index 0000000..46b5c0f --- /dev/null +++ b/documentation/api-reference/search/functions_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_7.js b/documentation/api-reference/search/functions_7.js new file mode 100644 index 0000000..5631163 --- /dev/null +++ b/documentation/api-reference/search/functions_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ns_5funavailable_332',['NS_UNAVAILABLE',['../interface_s_p_u_standard_updater_controller.html#a3c582fd7f0de322edc97915c9405eced',1,'SPUStandardUpdaterController::NS_UNAVAILABLE()'],['../interface_s_p_u_standard_user_driver.html#a9ad2b659b5760b2f4274e5c63b1f8094',1,'SPUStandardUserDriver::NS_UNAVAILABLE()'],['../interface_s_p_u_updater.html#ac2907583983833ce9f09bee2867d7654',1,'SPUUpdater::NS_UNAVAILABLE()']]] +]; diff --git a/documentation/api-reference/search/functions_8.html b/documentation/api-reference/search/functions_8.html new file mode 100644 index 0000000..31a1d95 --- /dev/null +++ b/documentation/api-reference/search/functions_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_8.js b/documentation/api-reference/search/functions_8.js new file mode 100644 index 0000000..c761fdd --- /dev/null +++ b/documentation/api-reference/search/functions_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['releaseitemfromquarantineatrooturl_3aerror_3a_333',['releaseItemFromQuarantineAtRootURL:error:',['../interface_s_u_file_manager.html#a8599b8160422edbb38f34e547889f727',1,'SUFileManager']]], + ['removeitematurl_3aerror_3a_334',['removeItemAtURL:error:',['../interface_s_u_file_manager.html#aea79ee52a31937c33f5e00e60f873b4b',1,'SUFileManager']]], + ['replaceitematurl_3awithitematurl_3aerror_3a_335',['replaceItemAtURL:withItemAtURL:error:',['../interface_s_u_file_manager.html#aec3de47f6e37353f905b855951b37c65',1,'SUFileManager']]], + ['resetupdatecycle_336',['resetUpdateCycle',['../interface_s_p_u_updater.html#aefe1e7f5ae5b8e02f1d7beab189b51af',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/functions_9.html b/documentation/api-reference/search/functions_9.html new file mode 100644 index 0000000..9a8e429 --- /dev/null +++ b/documentation/api-reference/search/functions_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_9.js b/documentation/api-reference/search/functions_9.js new file mode 100644 index 0000000..0aeed47 --- /dev/null +++ b/documentation/api-reference/search/functions_9.js @@ -0,0 +1,26 @@ +var searchData= +[ + ['setfeedurl_3a_337',['setFeedURL:',['../interface_s_p_u_updater.html#adfaabdc767d7a7668c8e472e45abd635',1,'SPUUpdater']]], + ['showdownloaddidreceivedataoflength_3a_338',['showDownloadDidReceiveDataOfLength:',['../protocol_s_p_u_user_driver-p.html#ac86c11d9dd8f66cc54bc3f3dd303fb6c',1,'SPUUserDriver-p']]], + ['showdownloaddidreceiveexpectedcontentlength_3a_339',['showDownloadDidReceiveExpectedContentLength:',['../protocol_s_p_u_user_driver-p.html#abf58b5974797500618b7745f1987833a',1,'SPUUserDriver-p']]], + ['showdownloaddidstartextractingupdate_340',['showDownloadDidStartExtractingUpdate',['../protocol_s_p_u_user_driver-p.html#a19ada57d6b77c7ea3ed402833dcda44c',1,'SPUUserDriver-p']]], + ['showdownloadinitiatedwithcancellation_3a_341',['showDownloadInitiatedWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a3c6cd7f7b93f6d2777b04f3c9f0bb62c',1,'SPUUserDriver-p']]], + ['showextractionreceivedprogress_3a_342',['showExtractionReceivedProgress:',['../protocol_s_p_u_user_driver-p.html#a3ffb49c0f51864011685049b7225dfbf',1,'SPUUserDriver-p']]], + ['showinstallingupdate_343',['showInstallingUpdate',['../protocol_s_p_u_user_driver-p.html#ab774cef0a00dbc7c074f8850c1e6c21f',1,'SPUUserDriver-p']]], + ['showreadytoinstallandrelaunch_3a_344',['showReadyToInstallAndRelaunch:',['../protocol_s_p_u_user_driver-p.html#a91ad34f8469dc022c7b1ed42b0f1575d',1,'SPUUserDriver-p']]], + ['showsendingterminationsignal_345',['showSendingTerminationSignal',['../protocol_s_p_u_user_driver-p.html#a3eb11e826fe5c1f68112a73600c23bf2',1,'SPUUserDriver-p']]], + ['showupdatefoundwithappcastitem_3astate_3areply_3a_346',['showUpdateFoundWithAppcastItem:state:reply:',['../protocol_s_p_u_user_driver-p.html#ac0f8e99c60962476ea55729833a0e3f2',1,'SPUUserDriver-p']]], + ['showupdateinfocus_347',['showUpdateInFocus',['../protocol_s_p_u_user_driver-p.html#ac6d613d4689dbc6415774d0ab63afd55',1,'SPUUserDriver-p']]], + ['showupdateinstalledandrelaunched_3aacknowledgement_3a_348',['showUpdateInstalledAndRelaunched:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#aa8b7ae192288db21ab43b4413b2d80c3',1,'SPUUserDriver-p']]], + ['showupdatenotfoundwitherror_3aacknowledgement_3a_349',['showUpdateNotFoundWithError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#abf3ca2a6bb84fe26a4ce53ae5b6f2233',1,'SPUUserDriver-p']]], + ['showupdatepermissionrequest_3areply_3a_350',['showUpdatePermissionRequest:reply:',['../protocol_s_p_u_user_driver-p.html#a6382048832f06216f505659c251dc1e0',1,'SPUUserDriver-p']]], + ['showupdatereleasenotesfailedtodownloadwitherror_3a_351',['showUpdateReleaseNotesFailedToDownloadWithError:',['../protocol_s_p_u_user_driver-p.html#ab304bc81459aa83fc617eb5047cd93a1',1,'SPUUserDriver-p']]], + ['showupdatereleasenoteswithdownloaddata_3a_352',['showUpdateReleaseNotesWithDownloadData:',['../protocol_s_p_u_user_driver-p.html#ae5fe75d599aae6597d81bd2449919be8',1,'SPUUserDriver-p']]], + ['showupdatererror_3aacknowledgement_3a_353',['showUpdaterError:acknowledgement:',['../protocol_s_p_u_user_driver-p.html#ac10bbf2fbe588106bf3a8c951caa2d53',1,'SPUUserDriver-p']]], + ['showuserinitiatedupdatecheckwithcancellation_3a_354',['showUserInitiatedUpdateCheckWithCancellation:',['../protocol_s_p_u_user_driver-p.html#a797fb61eacdd1fba10a232d7b2b5ceac',1,'SPUUserDriver-p']]], + ['standarduserdriverdidshowmodalalert_355',['standardUserDriverDidShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#aaaafb308354867990fed28c308dc881d',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverrequestsversiondisplayer_356',['standardUserDriverRequestsVersionDisplayer',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ae96836bc3c2fb3104d6586e5067001b3',1,'SPUStandardUserDriverDelegate-p']]], + ['standarduserdriverwillshowmodalalert_357',['standardUserDriverWillShowModalAlert',['../protocol_s_p_u_standard_user_driver_delegate-p.html#ad3bbc4db85bf302e8d6db6b4f030969a',1,'SPUStandardUserDriverDelegate-p']]], + ['startupdater_358',['startUpdater',['../interface_s_p_u_standard_updater_controller.html#a13632a2dd07a4d49333ec23091a3c6a5',1,'SPUStandardUpdaterController']]], + ['startupdater_3a_359',['startUpdater:',['../interface_s_p_u_updater.html#a30c0f163e0fbc7b100f84c64b491b353',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/functions_a.html b/documentation/api-reference/search/functions_a.html new file mode 100644 index 0000000..5ecc152 --- /dev/null +++ b/documentation/api-reference/search/functions_a.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_a.js b/documentation/api-reference/search/functions_a.js new file mode 100644 index 0000000..0b01297 --- /dev/null +++ b/documentation/api-reference/search/functions_a.js @@ -0,0 +1,28 @@ +var searchData= +[ + ['updateaccesstimeofitematrooturl_3aerror_3a_360',['updateAccessTimeOfItemAtRootURL:error:',['../interface_s_u_file_manager.html#ae7b47ef3936d2ab36d32d1f496c9b133',1,'SUFileManager']]], + ['updatemodificationandaccesstimeofitematurl_3aerror_3a_361',['updateModificationAndAccessTimeOfItemAtURL:error:',['../interface_s_u_file_manager.html#ad81e3246bf42d50c7c0ed2df06ff41de',1,'SUFileManager']]], + ['updater_3adidabortwitherror_3a_362',['updater:didAbortWithError:',['../protocol_s_p_u_updater_delegate-p.html#a71df9732bf67636a1b61a76a54d57878',1,'SPUUpdaterDelegate-p']]], + ['updater_3adiddownloadupdate_3a_363',['updater:didDownloadUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a3f8066b02a7a3c1c215bee70458e6db0',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidextractupdate_3a_364',['updater:didExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a8d7a087d6f25ded00f80acfd3555e504',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfindvalidupdate_3a_365',['updater:didFindValidUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a155defe95c694f91c46f81baff2c99d9',1,'SPUUpdaterDelegate-p']]], + ['updater_3adidfinishloadingappcast_3a_366',['updater:didFinishLoadingAppcast:',['../protocol_s_p_u_updater_delegate-p.html#a67f5d81863a898df881ddbbaed9371a8',1,'SPUUpdaterDelegate-p']]], + ['updater_3afailedtodownloadupdate_3aerror_3a_367',['updater:failedToDownloadUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#ab446fa17e9b9adfda488ca48641c203a',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldallowinstallerinteractionforupdatecheck_3a_368',['updater:shouldAllowInstallerInteractionForUpdateCheck:',['../protocol_s_p_u_updater_delegate-p.html#a232aa864ac8c86b266bc043dfd1136b4',1,'SPUUpdaterDelegate-p']]], + ['updater_3ashouldpostponerelaunchforupdate_3auntilinvokingblock_3a_369',['updater:shouldPostponeRelaunchForUpdate:untilInvokingBlock:',['../protocol_s_p_u_updater_delegate-p.html#aeef90220bddc5727c5e6529b58e48164',1,'SPUUpdaterDelegate-p']]], + ['updater_3auserdidskipthisversion_3a_370',['updater:userDidSkipThisVersion:',['../protocol_s_p_u_updater_delegate-p.html#a1f8fcf730b45b3b650b19627dd1ac36c',1,'SPUUpdaterDelegate-p']]], + ['updater_3awilldownloadupdate_3awithrequest_3a_371',['updater:willDownloadUpdate:withRequest:',['../protocol_s_p_u_updater_delegate-p.html#a2255ef7b18b135306e871e1471a4a399',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillextractupdate_3a_372',['updater:willExtractUpdate:',['../protocol_s_p_u_updater_delegate-p.html#a2573857b492ea895f099407a92321a3f',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdate_3a_373',['updater:willInstallUpdate:',['../protocol_s_p_u_updater_delegate-p.html#acf34be619b8fb7f66693837849d5e228',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillinstallupdateonquit_3aimmediateinstallationblock_3a_374',['updater:willInstallUpdateOnQuit:immediateInstallationBlock:',['../protocol_s_p_u_updater_delegate-p.html#a64585159f4bef97e47de8359e202f3ad',1,'SPUUpdaterDelegate-p']]], + ['updater_3awillscheduleupdatecheckafterdelay_3a_375',['updater:willScheduleUpdateCheckAfterDelay:',['../protocol_s_p_u_updater_delegate-p.html#aafac150db4d32c06c84ee3ad01b0f036',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3a_376',['updaterDidNotFindUpdate:',['../protocol_s_p_u_updater_delegate-p.html#ad112453ce92617e3356a7cd5c4d0658b',1,'SPUUpdaterDelegate-p']]], + ['updaterdidnotfindupdate_3aerror_3a_377',['updaterDidNotFindUpdate:error:',['../protocol_s_p_u_updater_delegate-p.html#a5ad88d4c57d19fe73080273b13ded22d',1,'SPUUpdaterDelegate-p']]], + ['updatermaycheckforupdates_3a_378',['updaterMayCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a1745cb021956a38c2439b370e9cda904',1,'SPUUpdaterDelegate-p']]], + ['updatershoulddownloadreleasenotes_3a_379',['updaterShouldDownloadReleaseNotes:',['../protocol_s_p_u_updater_delegate-p.html#a8b966f752f5a19942534698d5271544a',1,'SPUUpdaterDelegate-p']]], + ['updatershouldpromptforpermissiontocheckforupdates_3a_380',['updaterShouldPromptForPermissionToCheckForUpdates:',['../protocol_s_p_u_updater_delegate-p.html#a5cd8012b35bec5de906e70c4dabce602',1,'SPUUpdaterDelegate-p']]], + ['updatershouldrelaunchapplication_3a_381',['updaterShouldRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a703e4aa94c2b4fe835c99b1f2b8f1c48',1,'SPUUpdaterDelegate-p']]], + ['updaterwillidleschedulingupdates_3a_382',['updaterWillIdleSchedulingUpdates:',['../protocol_s_p_u_updater_delegate-p.html#afccc281852fd4f497d815cda9b4695bb',1,'SPUUpdaterDelegate-p']]], + ['updaterwillrelaunchapplication_3a_383',['updaterWillRelaunchApplication:',['../protocol_s_p_u_updater_delegate-p.html#a6fa486e14d915cd18ac3791a905647f2',1,'SPUUpdaterDelegate-p']]], + ['userdidcanceldownload_3a_384',['userDidCancelDownload:',['../protocol_s_p_u_updater_delegate-p.html#a06e1e03dea92513fd284e263b9f80d02',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/functions_b.html b/documentation/api-reference/search/functions_b.html new file mode 100644 index 0000000..e301fed --- /dev/null +++ b/documentation/api-reference/search/functions_b.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/functions_b.js b/documentation/api-reference/search/functions_b.js new file mode 100644 index 0000000..ffd4c8e --- /dev/null +++ b/documentation/api-reference/search/functions_b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['versioncomparatorforupdater_3a_385',['versionComparatorForUpdater:',['../protocol_s_p_u_updater_delegate-p.html#a8bea6508b8e81a51c1087a1f3b501c1d',1,'SPUUpdaterDelegate-p']]] +]; diff --git a/documentation/api-reference/search/mag_sel.svg b/documentation/api-reference/search/mag_sel.svg new file mode 100644 index 0000000..03626f6 --- /dev/null +++ b/documentation/api-reference/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/documentation/api-reference/search/nomatches.html b/documentation/api-reference/search/nomatches.html new file mode 100644 index 0000000..2b9360b --- /dev/null +++ b/documentation/api-reference/search/nomatches.html @@ -0,0 +1,13 @@ + + + + + + + + +
    +
    No Matches
    +
    + + diff --git a/documentation/api-reference/search/properties_0.html b/documentation/api-reference/search/properties_0.html new file mode 100644 index 0000000..91e9306 --- /dev/null +++ b/documentation/api-reference/search/properties_0.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_0.js b/documentation/api-reference/search/properties_0.js new file mode 100644 index 0000000..eb0e85c --- /dev/null +++ b/documentation/api-reference/search/properties_0.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['allowsautomaticupdates_386',['allowsAutomaticUpdates',['../interface_s_p_u_updater_settings.html#ae9b58785573e4d3e2abea0c57544681f',1,'SPUUpdaterSettings']]], + ['automaticallychecksforupdates_387',['automaticallyChecksForUpdates',['../interface_s_p_u_updater.html#a9a154002bdbe3306e763d000502a0980',1,'SPUUpdater::automaticallyChecksForUpdates()'],['../interface_s_p_u_updater_settings.html#a41e4d0f0e10e9afa92fe5c81d21bfde3',1,'SPUUpdaterSettings::automaticallyChecksForUpdates()']]], + ['automaticallydownloadsupdates_388',['automaticallyDownloadsUpdates',['../interface_s_p_u_updater.html#aa5f5578c29e6496cb90546aca35804e6',1,'SPUUpdater::automaticallyDownloadsUpdates()'],['../interface_s_p_u_updater_settings.html#af1a1fba7d6dcd05b52339f173c7a0a8d',1,'SPUUpdaterSettings::automaticallyDownloadsUpdates()']]], + ['automaticupdatechecks_389',['automaticUpdateChecks',['../interface_s_u_update_permission_response.html#a84a21b766bcbbe1fff16c26b8689aa56',1,'SUUpdatePermissionResponse']]] +]; diff --git a/documentation/api-reference/search/properties_1.html b/documentation/api-reference/search/properties_1.html new file mode 100644 index 0000000..19753dc --- /dev/null +++ b/documentation/api-reference/search/properties_1.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_1.js b/documentation/api-reference/search/properties_1.js new file mode 100644 index 0000000..16f4ef4 --- /dev/null +++ b/documentation/api-reference/search/properties_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['cancheckforupdates_390',['canCheckForUpdates',['../interface_s_p_u_updater.html#aa8ec4e87308007ae49228165534e683c',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/properties_2.html b/documentation/api-reference/search/properties_2.html new file mode 100644 index 0000000..5799756 --- /dev/null +++ b/documentation/api-reference/search/properties_2.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_2.js b/documentation/api-reference/search/properties_2.js new file mode 100644 index 0000000..260b853 --- /dev/null +++ b/documentation/api-reference/search/properties_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['data_391',['data',['../interface_s_p_u_download_data.html#ae8c680d14f0213633c117684e58fbef2',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/search/properties_3.html b/documentation/api-reference/search/properties_3.html new file mode 100644 index 0000000..b1eb716 --- /dev/null +++ b/documentation/api-reference/search/properties_3.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_3.js b/documentation/api-reference/search/properties_3.js new file mode 100644 index 0000000..263fe17 --- /dev/null +++ b/documentation/api-reference/search/properties_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['feedurl_392',['feedURL',['../interface_s_p_u_updater.html#af49bc6a058dc0e758943a4b4b1ff98dc',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/properties_4.html b/documentation/api-reference/search/properties_4.html new file mode 100644 index 0000000..6f3262e --- /dev/null +++ b/documentation/api-reference/search/properties_4.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_4.js b/documentation/api-reference/search/properties_4.js new file mode 100644 index 0000000..7b164c0 --- /dev/null +++ b/documentation/api-reference/search/properties_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hasanykeys_393',['hasAnyKeys',['../interface_s_u_public_keys.html#ae2a53f6befe084d9a6fa7369a0dbe78a',1,'SUPublicKeys']]], + ['hostbundle_394',['hostBundle',['../interface_s_p_u_updater.html#aeae19dba9dc83ae9098279b0eed76d47',1,'SPUUpdater']]], + ['httpheaders_395',['httpHeaders',['../interface_s_p_u_updater.html#a2e2747823e204ebc07800ae31c201ad1',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/properties_5.html b/documentation/api-reference/search/properties_5.html new file mode 100644 index 0000000..b14d3a8 --- /dev/null +++ b/documentation/api-reference/search/properties_5.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_5.js b/documentation/api-reference/search/properties_5.js new file mode 100644 index 0000000..da1bed1 --- /dev/null +++ b/documentation/api-reference/search/properties_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['lastupdatecheckdate_396',['lastUpdateCheckDate',['../interface_s_p_u_updater.html#a22a62559c6938c7a34b1787f22043010',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/properties_6.html b/documentation/api-reference/search/properties_6.html new file mode 100644 index 0000000..19d3d2a --- /dev/null +++ b/documentation/api-reference/search/properties_6.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_6.js b/documentation/api-reference/search/properties_6.js new file mode 100644 index 0000000..97dd548 --- /dev/null +++ b/documentation/api-reference/search/properties_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['mimetype_397',['MIMEType',['../interface_s_p_u_download_data.html#a108d9dec279550089dbea559e449321c',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/search/properties_7.html b/documentation/api-reference/search/properties_7.html new file mode 100644 index 0000000..42aa68a --- /dev/null +++ b/documentation/api-reference/search/properties_7.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_7.js b/documentation/api-reference/search/properties_7.js new file mode 100644 index 0000000..e78b4cc --- /dev/null +++ b/documentation/api-reference/search/properties_7.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['sendssystemprofile_398',['sendsSystemProfile',['../interface_s_p_u_updater.html#a521d2f6d09ceec6af979f6116bc58f7f',1,'SPUUpdater::sendsSystemProfile()'],['../interface_s_p_u_updater_settings.html#a97b5102512608a905bda83b33dd0bb5d',1,'SPUUpdaterSettings::sendsSystemProfile()']]], + ['sendsystemprofile_399',['sendSystemProfile',['../interface_s_u_update_permission_response.html#af9436f4e07219513c68dbad51daf9c8d',1,'SUUpdatePermissionResponse']]], + ['sessioninprogress_400',['sessionInProgress',['../interface_s_p_u_updater.html#aebc820be90ea36d0d97c6f11e80f3a4f',1,'SPUUpdater']]], + ['sparklebundle_401',['sparkleBundle',['../interface_s_p_u_updater.html#aa0e335f7212dbd90668ea0bbef0f00c2',1,'SPUUpdater']]], + ['systemprofile_402',['systemProfile',['../interface_s_p_u_update_permission_request.html#a318086878d3e1ec1efa9b8d2424f9844',1,'SPUUpdatePermissionRequest']]], + ['systemprofilearray_403',['systemProfileArray',['../interface_s_p_u_updater.html#a90e21876539a0dab3eacfccad863aaa2',1,'SPUUpdater']]] +]; diff --git a/documentation/api-reference/search/properties_8.html b/documentation/api-reference/search/properties_8.html new file mode 100644 index 0000000..f13fcd8 --- /dev/null +++ b/documentation/api-reference/search/properties_8.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_8.js b/documentation/api-reference/search/properties_8.js new file mode 100644 index 0000000..04e96d9 --- /dev/null +++ b/documentation/api-reference/search/properties_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['textencodingname_404',['textEncodingName',['../interface_s_p_u_download_data.html#a8316fe998bf3afa7bc4d6df7dc0ac070',1,'SPUDownloadData']]] +]; diff --git a/documentation/api-reference/search/properties_9.html b/documentation/api-reference/search/properties_9.html new file mode 100644 index 0000000..f8bedc8 --- /dev/null +++ b/documentation/api-reference/search/properties_9.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/documentation/api-reference/search/properties_9.js b/documentation/api-reference/search/properties_9.js new file mode 100644 index 0000000..7f9ab55 --- /dev/null +++ b/documentation/api-reference/search/properties_9.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['updatecheckinterval_405',['updateCheckInterval',['../interface_s_p_u_updater.html#a1b2a4bc575d1f9de57e189ca93bda22a',1,'SPUUpdater::updateCheckInterval()'],['../interface_s_p_u_updater_settings.html#affb7ac205324036803bda21826bde524',1,'SPUUpdaterSettings::updateCheckInterval()']]], + ['updater_406',['updater',['../interface_s_p_u_standard_updater_controller.html#afa35dd9683576ac1126d1ebbb6d0f3d3',1,'SPUStandardUpdaterController']]], + ['updaterdelegate_407',['updaterDelegate',['../interface_s_p_u_standard_updater_controller.html#a8ee554e7555314565b582ea7ddfb91fe',1,'SPUStandardUpdaterController']]], + ['url_408',['URL',['../interface_s_p_u_download_data.html#a5eabdc79a39c2de6e0c79b2d6d4e5b0e',1,'SPUDownloadData']]], + ['useragentstring_409',['userAgentString',['../interface_s_p_u_updater.html#a62757b3c7dea957c737527e854408e96',1,'SPUUpdater']]], + ['userdriver_410',['userDriver',['../interface_s_p_u_standard_updater_controller.html#a22c96bbd966c2d92884a2cfc6fb4f6f6',1,'SPUStandardUpdaterController']]], + ['userdriverdelegate_411',['userDriverDelegate',['../interface_s_p_u_standard_updater_controller.html#a4afcf2d6fc104bf1186a0e757aa267d7',1,'SPUStandardUpdaterController']]] +]; diff --git a/documentation/api-reference/search/search.css b/documentation/api-reference/search/search.css new file mode 100644 index 0000000..9074198 --- /dev/null +++ b/documentation/api-reference/search/search.css @@ -0,0 +1,257 @@ +/*---------------- Search Box */ + +#MSearchBox { + white-space : nowrap; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; + z-index: 102; +} + +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; +} + +#MSearchSelect { + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; +} + +#MSearchField { + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; + border:none; + color: #909090; + outline: none; + font-family: Arial, Verdana, sans-serif; + -webkit-border-radius: 0px; + border-radius: 0px; + background: none; +} + + +#MSearchBox .right { + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; +} + +#MSearchClose { + display: none; + font-size: inherit; + background : none; + border: none; + margin: 0; + padding: 0; + outline: none; + +} + +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; + z-index:10000; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; + font-family: Arial, Verdana, sans-serif; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; + font-family: Arial, Verdana, sans-serif; +} + +.SRResult { + display: none; +} + +div.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/documentation/api-reference/search/search.js b/documentation/api-reference/search/search.js new file mode 100644 index 0000000..fb226f7 --- /dev/null +++ b/documentation/api-reference/search/search.js @@ -0,0 +1,816 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + 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. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches' + this.extension; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline-block'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e + + + + + + +Sparkle: Member List + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    +
    +
    NSOperatingSystemVersion Member List
    +
    +
    + +

    This is the complete list of members for NSOperatingSystemVersion, including all inherited members.

    + + + + +
    majorVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    minorVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    patchVersion (defined in NSOperatingSystemVersion)NSOperatingSystemVersion
    + + + + diff --git a/documentation/api-reference/struct_n_s_operating_system_version.html b/documentation/api-reference/struct_n_s_operating_system_version.html new file mode 100644 index 0000000..17e9d07 --- /dev/null +++ b/documentation/api-reference/struct_n_s_operating_system_version.html @@ -0,0 +1,96 @@ + + + + + + + +Sparkle: NSOperatingSystemVersion Struct Reference + + + + + + + + + +
    +
    + + + + + + + +
    +
    Sparkle +  2.0.0 +
    +
    A software update framework for macOS
    +
    +
    + + + + + + + + +
    +
    + + +
    + +
    + +
    +
    + +
    +
    NSOperatingSystemVersion Struct Reference
    +
    +
    + + + + + + + + +

    +Public Attributes

    +NSInteger majorVersion
     
    +NSInteger minorVersion
     
    +NSInteger patchVersion
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/documentation/api-reference/sync_off.png b/documentation/api-reference/sync_off.png new file mode 100644 index 0000000..3b443fc Binary files /dev/null and b/documentation/api-reference/sync_off.png differ diff --git a/documentation/api-reference/sync_on.png b/documentation/api-reference/sync_on.png new file mode 100644 index 0000000..e08320f Binary files /dev/null and b/documentation/api-reference/sync_on.png differ diff --git a/documentation/api-reference/tab_a.png b/documentation/api-reference/tab_a.png new file mode 100644 index 0000000..3b725c4 Binary files /dev/null and b/documentation/api-reference/tab_a.png differ diff --git a/documentation/api-reference/tab_b.png b/documentation/api-reference/tab_b.png new file mode 100644 index 0000000..e2b4a86 Binary files /dev/null and b/documentation/api-reference/tab_b.png differ diff --git a/documentation/api-reference/tab_h.png b/documentation/api-reference/tab_h.png new file mode 100644 index 0000000..fd5cb70 Binary files /dev/null and b/documentation/api-reference/tab_h.png differ diff --git a/documentation/api-reference/tab_s.png b/documentation/api-reference/tab_s.png new file mode 100644 index 0000000..ab478c9 Binary files /dev/null and b/documentation/api-reference/tab_s.png differ diff --git a/documentation/api-reference/tabs.css b/documentation/api-reference/tabs.css new file mode 100644 index 0000000..85a0cd5 --- /dev/null +++ b/documentation/api-reference/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/documentation/api-reference/undocumented.json b/documentation/api-reference/undocumented.json new file mode 100644 index 0000000..eea2899 --- /dev/null +++ b/documentation/api-reference/undocumented.json @@ -0,0 +1,866 @@ +{ + "warnings": [ + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 29, + "symbol": "SUUpdaterDidFinishLoadingAppCastNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 30, + "symbol": "SUUpdaterDidFindValidUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 31, + "symbol": "SUUpdaterDidNotFindUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 32, + "symbol": "SUUpdaterWillRestartNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 37, + "symbol": "SUUpdaterAppcastItemNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 39, + "symbol": "SUUpdaterAppcastNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 45, + "symbol": "SUSystemProfilerApplicationNameKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 46, + "symbol": "SUSystemProfilerApplicationVersionKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 47, + "symbol": "SUSystemProfilerCPU64bitKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 48, + "symbol": "SUSystemProfilerCPUCountKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 49, + "symbol": "SUSystemProfilerCPUFrequencyKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 50, + "symbol": "SUSystemProfilerCPUTypeKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 51, + "symbol": "SUSystemProfilerCPUSubtypeKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 52, + "symbol": "SUSystemProfilerHardwareModelKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 53, + "symbol": "SUSystemProfilerMemoryKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 54, + "symbol": "SUSystemProfilerOperatingSystemVersionKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 55, + "symbol": "SUSystemProfilerPreferredLanguageKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterDelegate.h", + "line": 447, + "symbol": "SPUUpdaterDelegate.-updaterMayCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUpdaterSettings.h", + "line": 29, + "symbol": "SPUUpdaterSettings.-initWithHostBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 278, + "symbol": "SPUUserDriver.-showUpdateNotFoundWithAcknowledgement:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 280, + "symbol": "SPUUserDriver.-showUpdateInstallationDidFinishWithAcknowledgement:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserDriver.h", + "line": 282, + "symbol": "SPUUserDriver.-dismissUserInitiatedUpdateCheck", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SPUUserUpdateState.h", + "line": 66, + "symbol": "SPUUserUpdateState.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcast.h", + "line": 31, + "symbol": "SUAppcast.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 332, + "symbol": "SUAppcastItem.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 342, + "symbol": "SUAppcastItem.-initWithDictionary:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 343, + "symbol": "SUAppcastItem.-initWithDictionary:failureReason:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUAppcastItem.h", + "line": 344, + "symbol": "SUAppcastItem.-initWithDictionary:relativeToURL:failureReason:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 36, + "symbol": "SUError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enum", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 36, + "symbol": "SUError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 38, + "symbol": "SUError.SUNoPublicDSAFoundError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 39, + "symbol": "SUError.SUInsufficientSigningError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 40, + "symbol": "SUError.SUInsecureFeedURLError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 41, + "symbol": "SUError.SUInvalidFeedURLError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 42, + "symbol": "SUError.SUInvalidUpdaterError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 43, + "symbol": "SUError.SUInvalidHostBundleIdentifierError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 44, + "symbol": "SUError.SUInvalidHostVersionError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 47, + "symbol": "SUError.SUAppcastParseError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 48, + "symbol": "SUError.SUNoUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 49, + "symbol": "SUError.SUAppcastError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 50, + "symbol": "SUError.SURunningFromDiskImageError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 51, + "symbol": "SUError.SUResumeAppcastError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 52, + "symbol": "SUError.SURunningTranslocated", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 53, + "symbol": "SUError.SUWebKitTerminationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 56, + "symbol": "SUError.SUTemporaryDirectoryError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 57, + "symbol": "SUError.SUDownloadError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 60, + "symbol": "SUError.SUUnarchivingError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 61, + "symbol": "SUError.SUSignatureError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 62, + "symbol": "SUError.SUValidationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 65, + "symbol": "SUError.SUFileCopyFailure", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 66, + "symbol": "SUError.SUAuthenticationFailure", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 67, + "symbol": "SUError.SUMissingUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 68, + "symbol": "SUError.SUMissingInstallerToolError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 69, + "symbol": "SUError.SURelaunchError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 70, + "symbol": "SUError.SUInstallationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 71, + "symbol": "SUError.SUDowngradeError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 72, + "symbol": "SUError.SUInstallationCanceledError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 73, + "symbol": "SUError.SUInstallationAuthorizeLaterError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 74, + "symbol": "SUError.SUNotValidUpdateError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 75, + "symbol": "SUError.SUAgentInvalidationError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 78, + "symbol": "SUError.SUIncorrectAPIUsageError", + "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 107, + "symbol": "SPUNoUpdateFoundReasonKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 108, + "symbol": "SPULatestAppcastItemFoundKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUErrors.h", + "line": 109, + "symbol": "SPUNoUpdateFoundUserInitiatedKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdatePermissionResponse.h", + "line": 35, + "symbol": "SUUpdatePermissionResponse.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 39, + "symbol": "SUUpdater.delegate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 46, + "symbol": "SUUpdater.+sharedUpdater", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.class", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 52, + "symbol": "SUUpdater.+updaterForBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.class", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 59, + "symbol": "SUUpdater.-initForBundle:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 71, + "symbol": "SUUpdater.-checkForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 76, + "symbol": "SUUpdater.-validateMenuItem:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 91, + "symbol": "SUUpdater.-checkForUpdatesInBackground", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 100, + "symbol": "SUUpdater.automaticallyChecksForUpdates", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 110, + "symbol": "SUUpdater.automaticallyDownloadsUpdates", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 119, + "symbol": "SUUpdater.updateCheckInterval", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 132, + "symbol": "SUUpdater.-checkForUpdateInformation", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 143, + "symbol": "SUUpdater.feedURL", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 148, + "symbol": "SUUpdater.hostBundle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 153, + "symbol": "SUUpdater.sparkleBundle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 160, + "symbol": "SUUpdater.userAgentString", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 167, + "symbol": "SUUpdater.httpHeaders", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 174, + "symbol": "SUUpdater.sendsSystemProfile", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 179, + "symbol": "SUUpdater.decryptionPassword", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 186, + "symbol": "SUUpdater.lastUpdateCheckDate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 195, + "symbol": "SUUpdater.-resetUpdateCycle", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdater.h", + "line": 203, + "symbol": "SUUpdater.updateInProgress", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 28, + "symbol": "SUUpdaterDidFinishLoadingAppCastNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 29, + "symbol": "SUUpdaterDidFindValidUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 30, + "symbol": "SUUpdaterDidNotFindUpdateNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 31, + "symbol": "SUUpdaterWillRestartNotification", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 36, + "symbol": "SUUpdaterAppcastItemNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 38, + "symbol": "SUUpdaterAppcastNotificationKey", + "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 48, + "symbol": "SUUpdaterDelegate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 58, + "symbol": "SUUpdaterDelegate.-updaterMayCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 70, + "symbol": "SUUpdaterDelegate.-feedParametersForUpdater:sendingSystemProfile:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 82, + "symbol": "SUUpdaterDelegate.-feedURLStringForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 91, + "symbol": "SUUpdaterDelegate.-updaterShouldPromptForPermissionToCheckForUpdates:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 101, + "symbol": "SUUpdaterDelegate.-updater:didFinishLoadingAppcast:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 113, + "symbol": "SUUpdaterDelegate.-bestValidUpdateInAppcast:forUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 121, + "symbol": "SUUpdaterDelegate.-updater:didFindValidUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 128, + "symbol": "SUUpdaterDelegate.-updaterDidNotFindUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 137, + "symbol": "SUUpdaterDelegate.-updater:willDownloadUpdate:withRequest:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 145, + "symbol": "SUUpdaterDelegate.-updater:didDownloadUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 154, + "symbol": "SUUpdaterDelegate.-updater:failedToDownloadUpdate:error:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 161, + "symbol": "SUUpdaterDelegate.-userDidCancelDownload:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 169, + "symbol": "SUUpdaterDelegate.-updater:willExtractUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 177, + "symbol": "SUUpdaterDelegate.-updater:didExtractUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 185, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 193, + "symbol": "SUUpdaterDelegate.-updater:userDidSkipThisVersion:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 209, + "symbol": "SUUpdaterDelegate.-updater:shouldPostponeRelaunchForUpdate:untilInvoking:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 224, + "symbol": "SUUpdaterDelegate.-updater:shouldPostponeRelaunchForUpdate:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 234, + "symbol": "SUUpdaterDelegate.-updaterShouldRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 241, + "symbol": "SUUpdaterDelegate.-updaterWillRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 248, + "symbol": "SUUpdaterDelegate.-updaterDidRelaunchApplication:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 263, + "symbol": "SUUpdaterDelegate.-versionComparatorForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 272, + "symbol": "SUUpdaterDelegate.-versionDisplayerForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 283, + "symbol": "SUUpdaterDelegate.-pathToRelaunchForUpdater:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 291, + "symbol": "SUUpdaterDelegate.-updaterWillShowModalAlert:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 299, + "symbol": "SUUpdaterDelegate.-updaterDidShowModalAlert:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 311, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdateOnQuit:immediateInstallationInvocation:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 322, + "symbol": "SUUpdaterDelegate.-updater:willInstallUpdateOnQuit:immediateInstallationBlock:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 332, + "symbol": "SUUpdaterDelegate.-updater:didCancelInstallUpdateOnQuit:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/Users/msp/Documents/Programming/Sparkle/Sparkle/SUUpdaterDelegate.h", + "line": 340, + "symbol": "SUUpdaterDelegate.-updater:didAbortWithError:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + } + ], + "source_directory": "/Users/msp/Documents/Programming/Sparkle" +} \ No newline at end of file diff --git a/documentation/bundles/index.md b/documentation/bundles/index.md index daf7ea8..65240b1 100644 --- a/documentation/bundles/index.md +++ b/documentation/bundles/index.md @@ -38,13 +38,13 @@ The subclass only needs to implement the following two methods: } ``` -### Sparkle 2 (Beta) +### Sparkle 2 #### Bundles The story with updating bundles between Sparkle 1 and 2 is a bit different. -First, Sparkle 2 supports updating any Sparkle-based bundle, which is not just limited to your own application or process. The updater distinguishes the `hostBundle` from the `applicationBundle`. The `hostBundle` is the bundle that Sparkle updates and the `applicationBundle` is the bundle that can be terminated and re-launched (if applicable). See [Sparkle 2's APIs](/documentation/customization#sparkle-2x-apis-beta) for more information on instantiating your own updater. Some kinds of plug-ins in particular may want to use `SURelaunchHostBundle` key there for re-launching the host bundle. +First, Sparkle 2 supports updating any Sparkle-based bundle, which is not just limited to your own application or process. The updater distinguishes the `hostBundle` from the `applicationBundle`. The `hostBundle` is the bundle that Sparkle updates and the `applicationBundle` is the bundle that can be terminated and re-launched (if applicable). See the [SPUUpdater API Reference](/documentation/api-reference/Classes/SPUUpdater.html) for more information on instantiating your own updater. Some kinds of plug-ins may also want to use `SURelaunchHostBundle` key in [Customizing Sparkle](/documentation/customization) for re-launching the host bundle. Second, Sparkle 2 doesn't keep track of shared updater instances and doesn't try to prohibit multiple updater instances from existing -- either inside the same process or multiple updaters updating the same bundle from different processes. In fact, it is even possible for one updater to start an update (say a silent deferred one), and for a second updater (say sparkle-cli) to resume that same update for the same bundle. diff --git a/documentation/customization/index.md b/documentation/customization/index.md index 91e0239..2bea1c0 100644 --- a/documentation/customization/index.md +++ b/documentation/customization/index.md @@ -13,18 +13,22 @@ Here are the main routes by which you can bend Sparkle's behavior to your will: | Key | Type | Value | | --- | ---- | ----- | ------- | | `SUFeedURL` | String | The URL of your appcast, e.g. `https://example.com/appcast.xml`. It's recommended to always set it in Info.plist, even if you change it later programmatically. | -| `SUEnableAutomaticChecks` | Boolean | Setting to `YES` (recommended) enables checking for updates (but not installation) by default, without asking your users for permission first.
    By default, if it's not set to any value, users will be prompted for permission before the first update check.
    Setting to `NO` disables update checks, but can be overridden by a call to `SUUpdater`'s (or `SPUUpdater`'s in 'Sparkle 2) `setAutomaticallyChecksForUpdates:` | +| `SUEnableAutomaticChecks` | Boolean | Setting to `YES` enables checking for updates (but not installation) by default, without asking your users for permission first.
    By default, if it's not set to any value, users will be prompted for permission before the first update check.
    Setting to `NO` disables update checks, but can be overridden by setting [automaticallyChecksForUpdates](http://127.0.0.1:4000/documentation/api-reference/Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)automaticallyChecksForUpdates). | | `SUPublicEDKey` | String | The base64-encoded public EdDSA key. Use Sparkle's `generate_keys` tool to get it. | | `SUEnableSystemProfiling` | Boolean | Default: `NO`. Enables anonymous system profiling. See [System Profiling](/documentation/system-profiling) for more. | | `SUScheduledCheckInterval` | Number | The number of seconds between updates. The default is `86400` (1 day). Setting to 0 disables updates.

    **Note:** this has a minimum bound of 1 hour in order to keep you from accidentally overloading your servers. | | `SUAllowsAutomaticUpdates` | Boolean | Default: `YES`. Sparkle presents your users with the *option* to allow to automatically download and install any available updates. Set this to `NO` to disallow automatic updates and require manual installation every time. | -| `SUAutomaticallyUpdate` | Boolean | Default: `NO`. Enables automatic download and installation of updates. If set to `YES`, users will not be informed about updates, and updates will be silently installed when the app quits. +| `SUAutomaticallyUpdate` | Boolean | Default: `NO`. Enables automatic download and installation of updates. If set to `YES`, Sparkle will attempt to download and install new updates silently in the background. In Sparkle 1, updates won't be opted into this if users need to provide authorization. In Sparkle 2, updates will be downloaded but not installed automatically if authorization is required. | `SUShowReleaseNotes` | Boolean | Default: `YES`. Set this to `NO` to hide release notes display from the update alert. | | `SUBundleName` | String | Optional alternative bundle display name. For example, if your bundle name already has a version number appended to it, setting this may help smooth out certain messages, e.g. "MyApp 3 4.0 is now available" vs "MyApp 4.0 is now available". | | `SUDefaultsDomain` | String | Optional alternative `NSUserDefaults` domain name if you don't want to use the standard user defaults, for example when accessing preferences from an App Group suite. | | `SUEnableJavaScript` | Boolean | Default: `NO`. Set this to `YES` if you want to allow JavaScript in your release notes. | | `SURelaunchHostBundle` | Boolean | Default: `NO`. For plug-ins in Sparkle 2, set this to `YES` to re-launch the host targetted bundle instead of the application bundle. For example, this can be used to re-open a System Preferences prefpane after an update has been installed. +### Sparkle 2 APIs + +Please visit the [Sparkle 2 API Reference](/documentation/api-reference). + ### Sparkle 1 APIs #### Calls to SUUpdater @@ -146,145 +150,3 @@ You can control the SUUpdater's behavior a little more closely by providing it w #### Other options If these methods aren't enough to do what you need, you're going to have to dig into Sparkle's code. You might start by creating a different update driver: check out SUBasicUpdateDriver.h to get an idea. - ---- - -### Sparkle 2 APIs (Beta) - -#### Calls to SPUUpdater - -The `SPUUpdater` object is the main controller for the updating system in your app. If you are using `SPUStandardUpdaterController`, you can retrieve the updater via its `updater` property. Otherwise you will have had to create an `SPUStandardUpdaterController` or `SPUUpdater` and may need to start the updater (`-startUpdater` or `-startUpdater:error:` respectively) yourself. - -Once you have the `SPUUpdater` instance, there are a few interesting accessors you could use. Please use them only if you need dynamic behavior (e.g. user preferences). Do not use these functions to set default configuration. Use Info.plist keys to set default configuration instead. - -```objc -@property (nonatomic) BOOL automaticallyChecksForUpdates; - -@property (nonatomic) NSTimeInterval updateCheckInterval; - -@property (nonatomic, readonly) NSURL *feedURL; - -// Using this method is discouraged. Consider -[SPUUpdaterDelegate feedURLStringForUpdater:] or -[SPUUpdaterDelegate feedParametersForUpdater:sendingSystemProfile:] instead. -- (void)setFeedURL:(NSURL *)feedURL; - -@property (nonatomic) BOOL sendsSystemProfile; - -@property (nonatomic) BOOL automaticallyDownloadsUpdates; -``` - -There is a risk of race conditions. If you want to make sure these settings are changed before the first automatic update check, you should do this as soon as possible. For an application instantiating `SPUStandardUpdaterController` in a nib, this will be in the `NSApplication` delegate method `-applicationWillFinishLaunching:`. Otherwise this will be right after a `SPUUpdater` instance is instantiated and before you start the updater in your code. - -A few methods of interest if you are instantiating `SPUUpdater` programmatically: - -```objc -// This is the SPUUpdater initializer. You choose: -// `hostBundle` - The bundle that should be targetted for updating. -// `applicationBundle` - The application bundle that should be relaunched and waited for termination. Usually this can be the same as hostBundle. This may differ when updating a plug-in or other non-application bundle. -// `userDriver` - The user driver that Sparkle uses for user update interaction. Use a `SPUStandardUserDriver` for Sparkle's standard UI. -// `delegate` - The optional delegate for SPUUpdater. -- (instancetype)initWithHostBundle:(NSBundle *)hostBundle applicationBundle:(NSBundle *)applicationBundle userDriver:(id )userDriver delegate:(id _Nullable)delegate; - -// This method checks if Sparkle is configured properly, may show a prompt asking for automatic updates (if needed), -// and may start an update check if automatic update checking is enabled. Must be called to start the updater. -- (BOOL)startUpdater:error:; - -// Checks for updates and display progress while doing so. This is meant for users initiating an update check. -- (void)checkForUpdates; -``` - -The `SPUUserDriver` protocol is the API in Sparkle for controlling the user interface and interaction. If you are using `SPUStandardUpdaterController` in a nib, you can retrieve the user driver via its `userDriver` property. If you are interested in creating your own user interface, please see the header documentation in [`SPUUserDriver.h`](https://github.com/sparkle-project/Sparkle/blob/2.x/Sparkle/SPUUserDriver.h). Note few of the user-facing delegate methods in Sparkle 1's `SUUpdaterDelegate` were moved to `SPUStandardUserDriverDelegate`. - -Properties of interest if you are instantiating the standard user driver `SPUStandardUserDriver` yourself: - -```objc -// Indicates whether or not an update is in progress as far as the user's perspective is concerned -// A typical application may rely on this property for its check for updates menu item validation -// If you were using -[SUUpdater updateInProgress] in Sparkle 1.x, you can use !canCheckForUpdates instead. -@property (nonatomic, readonly) BOOL canCheckForUpdates; -``` - -These are properties of interest if you are using `SPUStandardUpdaterController`. You should hook the outlets in Xcode's interface builder and not programmatically. - -```objc -// Interface builder outlet for the updater's delegate -@property (nonatomic, weak, nullable) IBOutlet id updaterDelegate; - -// Interface builder outlet for the user driver's delegate. -@property (nonatomic, weak, nullable) IBOutlet id userDriverDelegate; - -// Explicitly lets the user check for updates and displays a progress dialog while doing so. -// Connect this action to a main menu item if so desired. -- (IBAction)checkForUpdates:(id)sender; -``` - -More methods of interest on `SPUUpdater`: - -```objc -// 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 automated downloading is turned on, however, -// this will invoke that behavior, and if an update is found, it will be -// downloaded and prepped for installation. -// -// You do not need to call this. Sparkle calls it automatically according to -// the update schedule. -- (void)checkForUpdatesInBackground; - -// 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. -// Essentially, you can use this to UI-lessly determine if there's an update. -- (void)checkForUpdateInformation; - -// Date of last update check. Returns nil if no check has been performed. -@property (nonatomic, readonly, copy, nullable) NSDate *lastUpdateCheckDate; - -// Call this to appropriately schedule or cancel the update checking timer according -// to the preferences for time interval and automatic checks. -- (void)resetUpdateCycle; -``` - -#### Delegate methods - -You can control the SPUUpdater's behavior a little more closely by providing it with a delegate. Here are the delegate methods you might implement: - -```objc -// Use this to override the default behavior for Sparkle prompting the -// user about automatic update checks. You could use this to make Sparkle -// prompt for permission on the first launch instead of the second. -- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SPUUpdater *)updater; - -- (void)updater:(SPUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; - -- (void)updater:(SPUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item; -- (void)updaterDidNotFindUpdate:(SPUUpdater *)updater error:(NSError *)error; - -// Sent immediately before installing the specified update. -- (void)updater:(SPUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; - -// Return YES to delay the relaunch until you do some processing. -// Invoke the provided installHandler block to continue the relaunch. -- (BOOL)updater:(SPUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvokingBlock:(void (^)(void))installHandler; - -// Called immediately before relaunching. -- (BOOL)updaterShouldRelaunchApplication:(SPUUpdater *)updater; - -// Specifies what update channels the updater is allowed to look in -// Useful for eg beta updates -- (NSSet *)allowedChannelsForUpdater:(SPUUpdater *)updater; - -// Specifies what feed URL to use -- (nullable NSString *)feedURLStringForUpdater:(SPUUpdater *)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. See SUVersionComparisonProtocol.h for more. -- (nullable id)versionComparatorForUpdater:(SPUUpdater *)updater; - -// 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 human-readable variants of the former two. -- (NSArray *)feedParametersForUpdater:(SPUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; -``` diff --git a/documentation/index.md b/documentation/index.md index 5120eb3..3b29952 100644 --- a/documentation/index.md +++ b/documentation/index.md @@ -7,7 +7,7 @@ title: Documentation If your app already has an older version of Sparkle or you wish to migrate to Sparkle 2.0 beta, see [upgrading from previous versions](/documentation/upgrading/). -Note [sandboxed applications](/documentation/sandboxing) are only supported in Sparkle 2 (beta). +Note [sandboxed applications](/documentation/sandboxing) are only supported in Sparkle 2. ### 1. Add the Sparkle framework to your project diff --git a/documentation/package-updates/index.md b/documentation/package-updates/index.md index 362026d..96a9662 100644 --- a/documentation/package-updates/index.md +++ b/documentation/package-updates/index.md @@ -11,7 +11,7 @@ Package installation allows Sparkle to update your application by downloading an An automatic archived installation occurs when Sparkle finds a `*.pkg` or `*.mpkg` file in the root of the download archive. [Older versions](/documentation/upgrading/) of Sparkle required the filename to be `*.sparkle_guided.pkg` to perform an automatic installation, so you may want to keep that name until majority of your users update to your application with Sparkle 1.16 or later. -**Note**: For Sparkle 2.0 (Beta), you must add `sparkle:installationType="package"` to your appcast item for updating automatic packages that are archived. +**Note**: For Sparkle 2, you must add `sparkle:installationType="package"` to your appcast item for updating automatic packages that are archived. ### Automatic Bare Installation @@ -23,4 +23,4 @@ An interactive installation occurs when Sparkle finds a `*.sparkle_interactive.p The package will be installed using macOS's built-in GUI installer. The installation will require user to manually click through the steps, so we don't recommend this type of installation. You must also archive your package update to get this behavior. This type of installation is deprecated in Sparkle 2 and may be removed one day. -**Note**: For Sparkle 2.0 (Beta), you must add `sparkle:installationType="interactive-package"` to your appcast item for updating interactive packages. +**Note**: For Sparkle 2, you must add `sparkle:installationType="interactive-package"` to your appcast item for updating interactive packages. diff --git a/documentation/preferences-ui/index.md b/documentation/preferences-ui/index.md index 38cd099..0749726 100644 --- a/documentation/preferences-ui/index.md +++ b/documentation/preferences-ui/index.md @@ -47,7 +47,7 @@ Then just bind the controls to the File's Owner, and start the Model Key Path wi --- -### Sparkle 2 (Beta) +### Sparkle 2 #### Add the updater to your preferences diff --git a/documentation/programmatic-setup/index.md b/documentation/programmatic-setup/index.md index 50f780f..22d67fc 100644 --- a/documentation/programmatic-setup/index.md +++ b/documentation/programmatic-setup/index.md @@ -28,18 +28,16 @@ import Sparkle } ``` -In Sparkle 2 you can also choose to instantiate and use `SPUUpdater` directly instead of the `SPUStandardUpdaterController` wrapper if you need more control over your user interface or what bundle to update. +In Sparkle 2 you can also choose to instantiate and use [SPUUpdater](/documentation/api-reference/Classes/SPUUpdater.html) directly instead of the [SPUStandardUpdaterController](/documentation/api-reference/Classes/SPUStandardUpdaterController.html) wrapper if you need more control over your user interface or what bundle to update. If you use another UI toolkit, these are the relevant APIs in Sparkle 2 for checking for updates and handling menu item validation: -* `-[SPUStandardUpdaterController startUpdater]` or `-[SPUUpdater startUpdater:]` for starting the updater (unless it is specified to be automatically started) -* `-[SPUStandardUpdaterController checkForUpdates:]` or `-[SPUUpdater checkForUpdates]` for checking for updates -* `-[SPUUpdater canCheckForUpdates]` for menu item validation +* [-[SPUStandardUpdaterController startUpdater]](/documentation/api-reference/Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)startUpdater) or [-[SPUUpdater startUpdater:]](/documentation/api-reference/Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)startUpdater:) for starting the updater (unless it is specified to be automatically started) +* [-[SPUStandardUpdaterController checkForUpdates:]](/documentation/api-reference/Classes/SPUStandardUpdaterController.html#/c:objc(cs)SPUStandardUpdaterController(im)checkForUpdates:) or [-[SPUUpdater checkForUpdates]](/documentation/api-reference/Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(im)checkForUpdates) for checking for updates +* [-[SPUUpdater canCheckForUpdates]](/documentation/api-reference/Classes/SPUUpdater.html#/c:objc(cs)SPUUpdater(py)canCheckForUpdates) for menu item validation If you are using Sparkle 1, you will need to use these APIs: * `+[SUUpdater sharedUpdater]` for creating and starting the updater automatically * `-[SUUpdater checkForUpdates:]` for checking for updates * `-[SUUpdater validateMenuItem:]` for menu item validation - -Check [Sparkle's APIs](/documentation/customization) for more information. diff --git a/documentation/publishing/index.md b/documentation/publishing/index.md index 23b717e..6c8d2d0 100644 --- a/documentation/publishing/index.md +++ b/documentation/publishing/index.md @@ -249,7 +249,7 @@ Updates are posted on the default channel unless specified otherwise. This examp ``` -Only updaters that are allowed to look in the beta channel can find this update. An updater may use `-[SPUUpdaterDelegate allowedChannelsForUpdater:]` to find this update in addition to updates that are on the default channel: +Only updaters that are allowed to look in the beta channel can find this update. An updater may use [-[SPUUpdaterDelegate allowedChannelsForUpdater:]](/documentation/api-reference/Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)allowedChannelsForUpdater:) to find this update in addition to updates that are on the default channel: ```swift func allowedChannels(for updater: SPUUpdater) -> Set { @@ -268,7 +268,7 @@ The appcast feed URL can be changed programmatically at runtime. If the feed URL If you want to set the feed programmatically to provide beta/nightly updates, please try to adopt [channels](#channels) in the future instead. If you are supporting older Sparkle versions, continue reading on. -The recommended way to change the feed URL programmatically is using `-[SUUpdaterDelegate feedURLStringForUpdater:]` (or `-[SPUUpdaterDelegate feedURLStringForUpdater:]` in Sparkle 2). +The recommended way to change the feed URL programmatically is using `-[SUUpdaterDelegate feedURLStringForUpdater:]` or [-[SPUUpdaterDelegate feedURLStringForUpdater:]](/documentation/api-reference/Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)feedURLStringForUpdater:) in Sparkle 2. Here is an example: @@ -338,7 +338,7 @@ You can define your own top level elements in the appcast item using your own cu ``` -In Sparkle 2, one place to parse this custom property is in `-[SPUUpdaterDelegate updaterDidNotFindUpdate:error:]`. Here's an example: +In Sparkle 2, one place to parse this custom property is in [-[SPUUpdaterDelegate updaterDidNotFindUpdate:error:]](/documentation/api-reference/Protocols/SPUUpdaterDelegate.html#/c:objc(pl)SPUUpdaterDelegate(im)updaterDidNotFindUpdate:error:). Here's an example: ```swift func updaterDidNotFindUpdate(_ updater: SPUUpdater, error: Error) { diff --git a/documentation/upgrading/index.md b/documentation/upgrading/index.md index c1a0125..4c41180 100644 --- a/documentation/upgrading/index.md +++ b/documentation/upgrading/index.md @@ -15,9 +15,9 @@ Sparkle 2 now requires macOS 10.11 (El Capitan) or later. The `SUUpdater` class has been deprecated and split up in Sparkle 2, but it is still functional for transitional purposes. Sparkle 2 includes three new classes / protocols: -* **SPUUpdater** - The main API in Sparkle for controlling the update mechanism. -* **SPUUserDriver** - The API in Sparkle for controlling the user interface & interaction (`SPUStandardUserDriver` is the standard one). -* **SPUStandardUpdaterController** - A convenient controller class that instantiates a `SPUUpdater` targeting the main application bundle and uses Sparkle's standard user interface (`SPUStandardUserDriver`). This class can also be instantiated in a nib and allows [binding UI](/documentation/preferences-ui#sparkle-2x-beta) to it. +* **[SPUUpdater](/documentation/api-reference/Classes/SPUUpdater.html)** - The main API in Sparkle for controlling the update mechanism. +* **[SPUUserDriver](/documentation/api-reference/Protocols/SPUUserDriver.html)** - The API in Sparkle for controlling the user interface & interaction (`SPUStandardUserDriver` is the standard one). +* **[SPUStandardUpdaterController](/documentation/api-reference/Classes/SPUStandardUpdaterController.html)** - A convenient controller class that instantiates a `SPUUpdater` targeting the main application bundle and uses Sparkle's standard user interface (`SPUStandardUserDriver`). This class can also be instantiated in a nib and allows [binding UI](/documentation/preferences-ui#sparkle-2) to it. If you were previously instantiating a `SUUpdater` in a nib, you will want to adopt `SPUStandardUpdaterController` as shown in the [basic setup](/documentation#2-set-up-a-sparkle-updater-object). @@ -29,7 +29,7 @@ If you create a `SPUUpdater` instance directly, you can now create an updater th `SPUUpdater` and its delegate `SPUUpdaterDelegate` (unlike `SUUpdater`) do not contain any user-interface or AppKit logic. The UI bits were separated into classes implementing `SPUUserDriver` and its delegates. A developer writing their own updater user interface may choose to build Sparkle with `SPARKLE_BUILD_UI_BITS=0` which strips out the standard UI bits that Sparkle provides out of the box. -`SPUUpdater` does not maintain singleton or global instances (unlike `SUUpdater`). Plug-ins that share the same process as their host should prefer to use an external tool like [sparkle-cli](/documentation/sparkle-cli) instead, rather than sharing or injecting a Sparkle.framework in its host. A bit more details about updating bundles [here](/documentation/bundles#sparkle-2x-beta). +`SPUUpdater` does not maintain singleton or global instances (unlike `SUUpdater`). Plug-ins that share the same process as their host should prefer to use an external tool like [sparkle-cli](/documentation/sparkle-cli) instead, rather than sharing or injecting a Sparkle.framework in its host. A bit more details about updating bundles [here](/documentation/bundles#sparkle-2). Downgrades were poorly supported in Sparkle 1 (via `SPARKLE_AUTOMATED_DOWNGRADES`) and are now unavailable in Sparkle 2. @@ -60,7 +60,7 @@ If you use package (pkg) based updates, please see [Package Updates](/documentat Sparkle 2 enhances support for [major upgrades](/documentation/publishing#Major-upgrades). -See [Sparkle 2's APIs](/documentation/customization#sparkle-2x-apis-beta) for more information. +See [Sparkle 2's APIs](/documentation/api-reference) for more information. ## Upgrading from Sparkle 1.25 and older