Skip to content

Commit 1346e98

Browse files
committed
Fixed _BSMachError error and added updated podspec
1 parent 02c5a5f commit 1346e98

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CONTRIBUTORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- [attilat85](https://github.com/attilat85) for [Pull Request #124 (Harpy)](https://github.com/ArtSabintsev/Harpy/pull/124)
2323
- [Vahan Margaryan](https://github.com/VahanMargaryan) for [Pull Request #71](https://github.com/ArtSabintsev/Siren/pull/71)
2424
- [Josip Injic](https://github.com/jinjic) for [Pull Request #73](https://github.com/ArtSabintsev/Siren/pull/73)
25+
- [Thi](https://github.com/thii) for [Pull Request #78](https://github.com/ArtSabintsev/Siren/pull/78)
2526

2627
### Harpy Project Contributors
2728
This repo is a Swift language port of [Harpy](http://github.com/ArtSabintsev/Harpy). We couldn't have built this port without acknowledging the following developers who were instrumental in getting Harpy to v3.2.1, the version of Harpy that Siren was based on.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public protocol SirenDelegate: class {
171171
```
172172

173173
## Localization
174-
Harpy is localized for Arabic, Armenian, Basque, Chinese (Simplified), Chinese (Traditional), Danish, Dutch, English, Estonian, French, German, Hebrew, Hungarian, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Polish, Portuguese (Brazil), Portuguese (Portugal), Russian, Slovenian, Swedish, Spanish, Thai, and Turkish.
174+
Harpy is localized for Arabic, Armenian, Basque, Chinese (Simplified), Chinese (Traditional), Danish, Dutch, English, Estonian, French, German, Hebrew, Hungarian, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Polish, Portuguese (Brazil), Portuguese (Portugal), Russian, Slovenian, Swedish, Spanish, Thai, Turkish, Vietnamese.
175175

176176
You may want the update dialog to *always* appear in a certain language, ignoring iOS's language setting (e.g. apps released in a specific country).
177177

Siren.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Siren"
3-
s.version = "0.9.3"
3+
s.version = "0.9.4"
44
s.summary = "Notify users when a new version of your iOS app is available, and prompt them with the App Store link.."
55

66
s.description = <<-DESC

Siren/Siren.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,10 @@ private extension Siren {
621621

622622
let iTunesString = "https://itunes.apple.com/app/id\(appID)"
623623
let iTunesURL = NSURL(string: iTunesString)
624-
UIApplication.sharedApplication().openURL(iTunesURL!)
624+
625+
dispatch_async(dispatch_get_main_queue()) {
626+
UIApplication.sharedApplication().openURL(iTunesURL!)
627+
}
625628
}
626629

627630
func printMessage(message: String) {

0 commit comments

Comments
 (0)