Skip to content

Commit

Permalink
1.0 - Stable release, non-app store version will only be for patrons.
Browse files Browse the repository at this point in the history
  • Loading branch information
千代田桃 committed Apr 5, 2022
1 parent ae51724 commit 5bfca4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions KaniManabu-macOS/Window Controllers/MainWindowController.m
Original file line number Diff line number Diff line change
Expand Up @@ -592,8 +592,13 @@ - (IBAction)exportdeck:(id)sender {
- (void)deckexceedederror {
NSAlert *alert = [[NSAlert alloc] init] ;
[alert addButtonWithTitle:@"OK"];
#if defined(AppStore)
[alert setMessageText:@"Deck Limit Exceeded"];
alert.informativeText = @"You cannot use this feature since you exceeded the deck limit of 3. Please delete one or more decks or subscribe.";
#else
[alert setMessageText:@"No Patreon License Key"];
alert.informativeText = @"You cannot use this feature since you do not have an active Patron key. Please enter one or download the App Store version.";
#endif
alert.alertStyle = NSAlertStyleInformational;
[alert beginSheetModalForWindow:self.window completionHandler:^(NSModalResponse returnCode) {
}];
Expand Down
Binary file not shown.

0 comments on commit 5bfca4a

Please sign in to comment.