diff --git a/Classes/BITUpdateManager.h b/Classes/BITUpdateManager.h index 0ac1f7cc45..2ee55ce0b9 100644 --- a/Classes/BITUpdateManager.h +++ b/Classes/BITUpdateManager.h @@ -136,6 +136,12 @@ typedef enum { // default value: HockeyUpdateCheckStartup @property (nonatomic, assign) BITUpdateSetting updateSetting; +// open update info view +- (void)showUpdateView; + +// manually start an update check +- (void)checkForUpdate; + // convenience methode to create hockey view controller - (BITUpdateViewController *)hockeyViewController:(BOOL)modal; diff --git a/Classes/BITUpdateManagerPrivate.h b/Classes/BITUpdateManagerPrivate.h index 5d6b71f9ad..e28069f771 100644 --- a/Classes/BITUpdateManagerPrivate.h +++ b/Classes/BITUpdateManagerPrivate.h @@ -66,12 +66,6 @@ - (void)startManager; -// open update info view -- (void)showUpdateView; - -// manually start an update check -- (void)checkForUpdate; - // checks for update, informs the user (error, no update found, etc) - (void)checkForUpdateShowFeedback:(BOOL)feedback;