forked from sparkle-project/Sparkle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove installer interaction delegate API / refactor finishing update…
… cycle (sparkle-project#1925)
- Loading branch information
Showing
28 changed files
with
552 additions
and
495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// | ||
// SUInstallerLauncher+Private.h | ||
// SUInstallerLauncher+Private | ||
// | ||
// Created by Mayur Pawashe on 8/21/21. | ||
// Copyright © 2021 Sparkle Project. All rights reserved. | ||
// | ||
|
||
#ifndef SUInstallerLauncher_Private_h | ||
#define SUInstallerLauncher_Private_h | ||
|
||
#import <Sparkle/SUExport.h> | ||
|
||
// Chances are clients will need this too | ||
#import <Sparkle/SPUInstallationType.h> | ||
|
||
@class NSString; | ||
|
||
/** | ||
Private API for determining if the system needs authorization access to update a bundle path | ||
This API is not supported when used directly from a Sandboxed applications and will always return @c YES in that case. | ||
@param bundlePath The bundle path to test if authorization is needed when performing an update that replaces this bundle. | ||
@return @c YES if Sparkle thinks authorization is needed to update the @p bundlePath, otherwise @c NO. | ||
*/ | ||
SU_EXPORT BOOL SPUSystemNeedsAuthorizationAccessForBundlePath(NSString *bundlePath); | ||
|
||
#endif /* SUInstallerLauncher_Private_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.