Skip to content
This repository has been archived by the owner on Nov 22, 2020. It is now read-only.

Commit

Permalink
Updated README and removed siren from harpy debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtSabintsev committed May 3, 2018
1 parent a4a6d72 commit bcc1dd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Harpy/Harpy.m
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ the user will prompted to update their app (if the version is newer - checked la
} else {
NSInteger daysSinceRelease = [weakSelf daysSinceDateString:releaseDateString];
if (!(daysSinceRelease >= weakSelf.showAlertAfterCurrentVersionHasBeenReleasedForDays)) {
NSString *message = [NSString stringWithFormat:@"Your app has been released for %ld days, but Siren cannot prompt the user until %lu days have passed.", (long)daysSinceRelease, (unsigned long)weakSelf.showAlertAfterCurrentVersionHasBeenReleasedForDays];
NSString *message = [NSString stringWithFormat:@"Your app has been released for %ld days, but Harpy cannot prompt the user until %lu days have passed.", (long)daysSinceRelease, (unsigned long)weakSelf.showAlertAfterCurrentVersionHasBeenReleasedForDays];
[self printDebugMessage:message];
return;
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Harpy is built to work with the [Semantic Versioning](http://www.semver.org) sys
- Harpy only works with numbers.

## Swift Support
Harpy was ported to Swift by myself and [**Aaron Brager**](http://twitter.com/GetAaron). We've called the new project [**Siren**](https://github.com/ArtSabintsev/Siren) and it can be found [**here**](https://github.com/ArtSabintsev/Siren).
Harpy was ported to Swift by myself and [**Aaron Brager**](http://twitter.com/GetAaron). We've called the new project [**Siren**](https://github.com/ArtSabintsev/Siren).

## Features
- [x] CocoaPods Support
Expand Down Expand Up @@ -93,7 +93,7 @@ Copy the 'Harpy' folder into your Xcode project. It contains the Harpy.h and Har
Please use the HarpyLanguage constants defined in Harpy.h. */
[[Harpy sharedInstance] setForceLanguageLocalization:<#HarpyLanguageConstant#>];

/* (Optional): Delays the update prompt by a specific number of days. By default,
/* (Optional): Delays the update prompt by a specific number of days. By default,
this value is set to 1 day to avoid an issue where Apple updates the JSON faster than the app binary propogates to the App Store.*/
[[Harpy sharedInstance] setShowAlertAfterCurrentVersionHasBeenReleasedForDays:<#Int#>];

Expand Down

0 comments on commit bcc1dd4

Please sign in to comment.