diff --git a/MacGPG2_Updater/AppDelegate.m b/MacGPG2_Updater/AppDelegate.m index 55aef027..686ded76 100644 --- a/MacGPG2_Updater/AppDelegate.m +++ b/MacGPG2_Updater/AppDelegate.m @@ -9,7 +9,13 @@ - (void)terminateIfIdle { } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { updater = [SUUpdater sharedUpdater]; + updater.delegate = self; [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(terminateIfIdle) userInfo:nil repeats:YES]; } +- (void)updateAlert:(SUUpdateAlert *)updateAlert willShowReleaseNotesWithSize:(NSSize *)size { + size->width = 600; + size->height = 350; +} + @end