Compare commits

...

10 Commits

Author SHA1 Message Date
Arthur Ariel Sabintsev dd0966b29b Updated podspec 2018-09-29 00:02:53 -04:00
Arthur Ariel Sabintsev 421eb6802e 100% documentation again 2018-09-29 00:00:26 -04:00
Arthur Ariel Sabintsev 01c33f99d6 Added more docs 2018-09-28 23:51:39 -04:00
Arthur Ariel Sabintsev de925dc477 Added more missing documentation 2018-09-28 23:44:50 -04:00
Arthur Ariel Sabintsev bdf15f9be8 Updated project 2018-09-28 10:02:09 -04:00
Arthur Ariel Sabintsev 8cb742d2a6 Updated docs 2018-09-28 09:59:55 -04:00
Arthur Ariel Sabintsev 2168a4f1fc Updated docs 2018-09-28 09:58:39 -04:00
Arthur Ariel Sabintsev 1febce77dd Updated podspec 2018-09-27 22:22:23 -04:00
Arthur Ariel Sabintsev 2197494481 Removed force unwrapped localization methods 2018-09-27 22:21:42 -04:00
Arthur Ariel Sabintsev 74284809e3 Cleaned up constants file 2018-09-27 21:51:47 -04:00
54 changed files with 926 additions and 1200 deletions
+5 -3
View File
@@ -317,7 +317,7 @@
};
8EC391801A58B465001C121E = {
CreatedOnToolsVersion = 6.1.1;
DevelopmentTeam = UHP8ST8F8D;
DevelopmentTeam = HT94948NDD;
DevelopmentTeamName = "Arthur Sabintsev";
LastSwiftMigration = 0900;
SystemCapabilities = {
@@ -478,6 +478,7 @@
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -509,6 +510,7 @@
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -674,7 +676,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = UHP8ST8F8D;
DEVELOPMENT_TEAM = HT94948NDD;
INFOPLIST_FILE = "$(SRCROOT)/Siren/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -689,7 +691,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = UHP8ST8F8D;
DEVELOPMENT_TEAM = HT94948NDD;
INFOPLIST_FILE = "$(SRCROOT)/Siren/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
-2
View File
@@ -15,5 +15,3 @@ FOUNDATION_EXPORT double SirenVersionNumber;
FOUNDATION_EXPORT const unsigned char SirenVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <Siren/PublicHeader.h>
+1 -1
View File
@@ -2,5 +2,5 @@
source "https://rubygems.org"
gem "cocoapods"
gem "jazzy"
gem "jazzy", :git => "git@github.com:realm/jazzy.git"
gem "rubygems-bundler"
+15 -10
View File
@@ -1,3 +1,17 @@
GIT
remote: git@github.com:realm/jazzy.git
revision: 6932e5efe0eb2b95df48881924f6c9bc8dd60594
specs:
jazzy (0.9.3)
cocoapods (~> 1.0)
mustache (~> 0.99)
open4
redcarpet (~> 3.2)
rouge (>= 2.0.6, < 4.0)
sass (~> 3.4)
sqlite3 (~> 1.3)
xcinvoke (~> 0.3.0)
GEM
remote: https://rubygems.org/
specs:
@@ -53,15 +67,6 @@ GEM
gh_inspector (1.1.3)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jazzy (0.9.3)
cocoapods (~> 1.0)
mustache (~> 0.99)
open4
redcarpet (~> 3.2)
rouge (>= 2.0.6, < 4.0)
sass (~> 3.4)
sqlite3 (~> 1.3)
xcinvoke (~> 0.3.0)
liferaft (0.0.6)
minitest (5.11.3)
molinillo (0.6.6)
@@ -102,7 +107,7 @@ PLATFORMS
DEPENDENCIES
cocoapods
jazzy
jazzy!
rubygems-bundler
BUNDLED WITH
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
# Version
s.version = "3.7.0"
s.version = "3.7.2"
s.swift_version = '4.2'
# Meta
+12 -11
View File
@@ -15,26 +15,27 @@ extension Bundle {
return Bundle.main.bundleIdentifier
}
final class func sirenBundlePath() -> String {
return Bundle(for: Siren.self).path(forResource: "Siren", ofType: "bundle")!
final class func sirenBundlePath() -> String? {
return Bundle(for: Siren.self).path(forResource: "Siren", ofType: "bundle")
}
final class func sirenForcedBundlePath(forceLanguageLocalization: Siren.LanguageType) -> String {
let path = sirenBundlePath()
final class func sirenForcedBundlePath(forceLanguageLocalization: Siren.LanguageType) -> String? {
guard let path = sirenBundlePath() else { return nil }
let name = forceLanguageLocalization.rawValue
return Bundle(path: path)!.path(forResource: name, ofType: "lproj")!
return Bundle(path: path)?.path(forResource: name, ofType: "lproj")
}
final class func localizedString(forKey key: String, forceLanguageLocalization: Siren.LanguageType?) -> String {
var path = sirenBundlePath()
final class func localizedString(forKey key: String, forceLanguageLocalization: Siren.LanguageType?) -> String? {
guard var path = sirenBundlePath() else { return nil }
let table = "SirenLocalizable"
if let forceLanguageLocalization = forceLanguageLocalization {
path = sirenForcedBundlePath(forceLanguageLocalization: forceLanguageLocalization)
if let forceLanguageLocalization = forceLanguageLocalization,
let forcedPath = sirenForcedBundlePath(forceLanguageLocalization: forceLanguageLocalization) {
path = forcedPath
}
return Bundle(path: path)!.localizedString(forKey: key, value: key, table: table)
return Bundle(path: path)?.localizedString(forKey: key, value: key, table: table)
}
final class func bestMatchingAppName() -> String {
@@ -48,7 +49,7 @@ extension Bundle {
// MARK: - Bundle Extension for Testing Siren
extension Bundle {
func testLocalizedString(forKey key: String, forceLanguageLocalization: Siren.LanguageType?) -> String {
func testLocalizedString(forKey key: String, forceLanguageLocalization: Siren.LanguageType?) -> String? {
return Bundle.localizedString(forKey: key, forceLanguageLocalization: forceLanguageLocalization)
}
}
@@ -11,19 +11,15 @@ import Foundation
// MARK: - Helpers (Localization)
extension Siren {
func localizedUpdateAvailableMessage() -> String {
return Bundle.localizedString(forKey: alertMessaging.updateTitle.string,
forceLanguageLocalization: forceLanguageLocalization)
}
func localizedUpdateTitle() -> String {
return Bundle.localizedString(forKey: alertMessaging.updateTitle.string,
forceLanguageLocalization: forceLanguageLocalization)
return Bundle.localizedString(forKey: alertMessaging.updateTitle.string, forceLanguageLocalization: forceLanguageLocalization)
?? alertMessaging.updateTitle.string
}
func localizedNewVersionMessage() -> String {
let newVersionMessage = Bundle.localizedString(forKey: alertMessaging.updateMessage.string,
forceLanguageLocalization: forceLanguageLocalization)
?? alertMessaging.updateMessage.string
guard let currentAppStoreVersion = currentAppStoreVersion else {
return String(format: newVersionMessage, appName, "Unknown")
@@ -32,18 +28,21 @@ extension Siren {
return String(format: newVersionMessage, appName, currentAppStoreVersion)
}
func localizedUpdateButtonTitle() -> String {
func localizedUpdateButtonTitle() -> String? {
return Bundle.localizedString(forKey: alertMessaging.updateButtonMessage.string,
forceLanguageLocalization: forceLanguageLocalization)
?? alertMessaging.updateButtonMessage.string
}
func localizedNextTimeButtonTitle() -> String {
func localizedNextTimeButtonTitle() -> String? {
return Bundle.localizedString(forKey: alertMessaging.nextTimeButtonMessage.string,
forceLanguageLocalization: forceLanguageLocalization)
?? alertMessaging.nextTimeButtonMessage.string
}
func localizedSkipButtonTitle() -> String {
func localizedSkipButtonTitle() -> String? {
return Bundle.localizedString(forKey: alertMessaging.skipVersionButtonMessage.string,
forceLanguageLocalization: forceLanguageLocalization)
?? alertMessaging.skipVersionButtonMessage.string
}
}
+1
View File
@@ -10,6 +10,7 @@ import Foundation
// MARK: - Model representing a selection of results from the iTunes Lookup API
/// MARK: Siren extension used to parse and map the iTunes JSON results into a model represented in Swift.
public struct SirenLookupModel: Decodable {
private enum CodingKeys: String, CodingKey {
case results
+5
View File
@@ -20,10 +20,15 @@ import Foundation
/// - revision: Revision release available: a.b.c.D
/// - unknown: No information available about the update.
public enum UpdateType: String {
/// Major release available: A.b.c.d
case major
/// Minor release available: a.B.c.d
case minor
/// Patch release available: a.b.C.d
case patch
/// Revision release available: a.b.c.D
case revision
/// No information available about the update.
case unknown
}
+1 -4
View File
@@ -109,9 +109,6 @@ public final class Siren: NSObject {
/// The App's Singleton
public static let shared = Siren()
@available(*, deprecated: 1.2.0, unavailable, renamed: "shared")
public static let sharedInstance = Siren()
override init() {
lastVersionCheckPerformedOnDate = UserDefaults.storedVersionCheckDate
}
@@ -293,7 +290,7 @@ private extension Siren {
func showAlert() {
storeVersionCheckDate()
let updateAvailableMessage = localizedUpdateAvailableMessage()
let updateAvailableMessage = localizedUpdateTitle()
let newVersionMessage = localizedNewVersionMessage()
let alertController = UIAlertController(title: updateAvailableMessage, message: newVersionMessage, preferredStyle: .alert)
+44 -13
View File
@@ -8,20 +8,18 @@
import Foundation
// MARK: - Enumerated Types (Public)
// MARK: - Enumerated Types
// MARK: Siren extension dealing with enumerated types and constants.
public extension Siren {
/// Determines the type of alert to present after a successful version check has been performed.
enum AlertType {
/// Forces user to update your app (1 button alert).
case force
/// (DEFAULT) Presents user with option to update app now or at next launch (2 button alert).
case option
/// Presents user with option to update the app now, at next launch, or to skip this version all together (3 button alert).
case skip
/// Doesn't show the alert, but instead returns a localized message
/// for use in a custom UI within the sirenDidDetectNewVersionWithoutAlert() delegate method.
case none
@@ -32,10 +30,8 @@ public extension Siren {
enum VersionCheckType: Int {
/// Version check performed every time the app is launched.
case immediately = 0
/// Version check performed once a day.
case daily = 1
/// Version check performed once a week.
case weekly = 7
}
@@ -45,54 +41,89 @@ public extension Siren {
/// By default, the operating system's default lanuage setting is used. However, you can force a specific language
/// by setting the forceLanguageLocalization property before calling checkVersion()
enum LanguageType: String {
/// Arabic
case arabic = "ar"
/// Armenian
case armenian = "hy"
/// Basque
case basque = "eu"
/// Simplified Chinese
case chineseSimplified = "zh-Hans"
/// Traditional Chinese
case chineseTraditional = "zh-Hant"
/// Croatian
case croatian = "hr"
/// Czech
case czech = "cs"
/// Danish
case danish = "da"
/// Dutch
case dutch = "nl"
/// English
case english = "en"
/// Estonian
case estonian = "et"
/// Finnish
case finnish = "fi"
/// French
case french = "fr"
/// German
case german = "de"
/// Greek
case greek = "el"
/// Hebrew
case hebrew = "he"
/// Hungarian
case hungarian = "hu"
/// Indonesian
case indonesian = "id"
/// Italian
case italian = "it"
/// Japanese
case japanese = "ja"
/// Korean
case korean = "ko"
/// Latvian
case latvian = "lv"
/// Lithuanian
case lithuanian = "lt"
/// Malaysian
case malay = "ms"
/// Norwegian
case norwegian = "nb-NO"
/// Persian
case persian = "fa"
/// Persian (Afghanistan)
case persianAfghanistan = "fa-AF"
/// Persian (Iran)
case persianIran = "fa-IR"
/// Polish
case polish = "pl"
/// Portuguese (Brazil)
case portugueseBrazil = "pt"
/// Portuguese (Portugal)
case portuguesePortugal = "pt-PT"
/// Russian
case russian = "ru"
/// Serbian (Cyrillic)
case serbianCyrillic = "sr-Cyrl"
/// Serbian (Latin)
case serbianLatin = "sr-Latn"
/// Slovenian
case slovenian = "sl"
/// Spanish
case spanish = "es"
/// Swedish
case swedish = "sv"
/// Thai
case thai = "th"
/// Turkish
case turkish = "tr"
/// Urdu
case urdu = "ur"
/// Ukranian
case ukrainian = "uk"
/// Vietnamese
case vietnamese = "vi"
}
}
// MARK: - Enumerated Types (Internal)
extension Siren {
/// Siren-specific UserDefaults Keys
}
+26 -14
View File
@@ -9,32 +9,44 @@
import Foundation
// MARK: - Siren Error Handling
public struct SirenError: LocalizedError {
/// Enumerates all potentials errors that Siren can handle.
///
/// - appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a 'trackId' key.
/// - appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.
/// - appStoreJSONParsingFailure: Error parsing App Store JSON data.
/// - appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the `countryCode` variable to fix this error.
/// - appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.
/// - appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.
/// - appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a 'version' key.
/// - malformedURL: The iTunes URL is malformed. Please leave an issue on https://github.com/ArtSabintsev/Siren with as many details as possible.
/// - noUpdateAvailable: No new update available.
/// - recentlyCheckedAlready: Not checking the version, because it was already checked recently.
public enum Known: Error {
/// Data structure used to build Siren specific Errors.
public struct SirenError: LocalizedError {
/// Enumerates all potentials errors that Siren can handle.
///
/// - appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a 'trackId' key.
/// - appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.
/// - appStoreJSONParsingFailure: Error parsing App Store JSON data.
/// - appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the `countryCode` variable to fix this error.
/// - appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.
/// - appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.
/// - appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a 'version' key.
/// - malformedURL: The iTunes URL is malformed. Please leave an issue on https://github.com/ArtSabintsev/Siren with as many details as possible.
/// - noUpdateAvailable: No new update available.
/// - recentlyCheckedAlready: Not checking the version, because it was already checked recently.
public enum Known: Error {
/// Error retrieving trackId as the JSON does not contain a 'trackId' key.
case appStoreAppIDFailure
/// Error retrieving App Store data as an error was returned.
case appStoreDataRetrievalFailure(underlyingError: Error?)
/// Error parsing App Store JSON data.
case appStoreJSONParsingFailure(underlyingError: Error)
/// Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the `countryCode` variable to fix this error.
case appStoreDataRetrievalEmptyResults
/// Error retrieving iOS version number as there was no data returned.
case appStoreOSVersionNumberFailure
/// The version of iOS on the device is lower than that of the one required by the app verison update.
case appStoreOSVersionUnsupported
/// Error retrieving App Store verson number as the JSON does not contain a 'version' key.
case appStoreVersionArrayFailure
/// The iTunes URL is malformed. Please leave an issue on https://github.com/ArtSabintsev/Siren with as many details as possible.
case malformedURL
/// No new update available.
case noUpdateAvailable
/// Not checking the version, because it was already checked recently.
case recentlyCheckedAlready
/// The localized description for each error handled by Siren.
var localizedDescription: String {
switch self {
case .appStoreAppIDFailure:
+2 -2
View File
@@ -14,7 +14,7 @@
<a title="Classes Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -135,7 +135,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+8 -8
View File
@@ -14,7 +14,7 @@
<a title="Siren Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -567,9 +567,9 @@ Defaults to 1 day to avoid an issue where Apple updates the JSON faster than the
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12checkVersionyAB0C9CheckTypeO0bE0_tF"></a>
<a name="/s:5SirenAAC12checkVersion0B4TypeyAB0c5CheckD0O_tF"></a>
<a name="//apple_ref/swift/Method/checkVersion(checkType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12checkVersionyAB0C9CheckTypeO0bE0_tF">checkVersion(checkType:)</a>
<a class="token" href="#/s:5SirenAAC12checkVersion0B4TypeyAB0c5CheckD0O_tF">checkVersion(checkType:)</a>
</code>
</div>
<div class="height-container">
@@ -648,10 +648,10 @@ you should set the <code><a href="../Classes/Siren.html#/s:5SirenAAC11countryCod
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Enumerated%20Types%20(Public)"></a>
<a name="//apple_ref/swift/Section/Enumerated Types (Public)" class="dashAnchor"></a>
<a href="#/Enumerated%20Types%20(Public)">
<h3 class="section-name">Enumerated Types (Public)</h3>
<a name="/Siren%20extension%20dealing%20with%20enumerated%20types%20and%20constants."></a>
<a name="//apple_ref/swift/Section/Siren extension dealing with enumerated types and constants." class="dashAnchor"></a>
<a href="#/Siren%20extension%20dealing%20with%20enumerated%20types%20and%20constants.">
<h3 class="section-name">Siren extension dealing with enumerated types and constants.</h3>
</a>
</div>
<ul>
@@ -747,7 +747,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+11 -11
View File
@@ -14,7 +14,7 @@
<a title="AlertType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO5forceA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO5forceyA2DmF"></a>
<a name="//apple_ref/swift/Element/force" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO5forceA2DmF">force</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO5forceyA2DmF">force</a>
</code>
</div>
<div class="height-container">
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO6optionA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO6optionyA2DmF"></a>
<a name="//apple_ref/swift/Element/option" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO6optionA2DmF">option</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO6optionyA2DmF">option</a>
</code>
</div>
<div class="height-container">
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO4skipA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO4skipyA2DmF"></a>
<a name="//apple_ref/swift/Element/skip" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4skipA2DmF">skip</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4skipyA2DmF">skip</a>
</code>
</div>
<div class="height-container">
@@ -185,9 +185,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO4noneA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO4noneyA2DmF"></a>
<a name="//apple_ref/swift/Element/none" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4noneA2DmF">none</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4noneyA2DmF">none</a>
</code>
</div>
<div class="height-container">
@@ -195,7 +195,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Doesn&rsquo;t show the alert, but instead returns a localized message
<p>Doesn&rsquo;t show the alert, but instead returns a localized message
for use in a custom UI within the sirenDidDetectNewVersionWithoutAlert() delegate method.</p>
</div>
@@ -215,7 +215,7 @@ for use in a custom UI within the sirenDidDetectNewVersionWithoutAlert() delegat
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+128 -128
View File
@@ -14,7 +14,7 @@
<a title="LanguageType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -107,9 +107,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6arabicA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6arabicyA2DmF"></a>
<a name="//apple_ref/swift/Element/arabic" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6arabicA2DmF">arabic</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6arabicyA2DmF">arabic</a>
</code>
</div>
<div class="height-container">
@@ -117,7 +117,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Arabic</p>
</div>
<div class="declaration">
@@ -134,9 +134,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8armenianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8armenianyA2DmF"></a>
<a name="//apple_ref/swift/Element/armenian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8armenianA2DmF">armenian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8armenianyA2DmF">armenian</a>
</code>
</div>
<div class="height-container">
@@ -144,7 +144,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Armenian</p>
</div>
<div class="declaration">
@@ -161,9 +161,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6basqueA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6basqueyA2DmF"></a>
<a name="//apple_ref/swift/Element/basque" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6basqueA2DmF">basque</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6basqueyA2DmF">basque</a>
</code>
</div>
<div class="height-container">
@@ -171,7 +171,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Basque</p>
</div>
<div class="declaration">
@@ -188,9 +188,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO17chineseSimplifiedA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO17chineseSimplifiedyA2DmF"></a>
<a name="//apple_ref/swift/Element/chineseSimplified" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO17chineseSimplifiedA2DmF">chineseSimplified</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO17chineseSimplifiedyA2DmF">chineseSimplified</a>
</code>
</div>
<div class="height-container">
@@ -198,7 +198,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Simplified Chinese</p>
</div>
<div class="declaration">
@@ -215,9 +215,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18chineseTraditionalA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18chineseTraditionalyA2DmF"></a>
<a name="//apple_ref/swift/Element/chineseTraditional" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18chineseTraditionalA2DmF">chineseTraditional</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18chineseTraditionalyA2DmF">chineseTraditional</a>
</code>
</div>
<div class="height-container">
@@ -225,7 +225,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Traditional Chinese</p>
</div>
<div class="declaration">
@@ -242,9 +242,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8croatianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8croatianyA2DmF"></a>
<a name="//apple_ref/swift/Element/croatian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8croatianA2DmF">croatian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8croatianyA2DmF">croatian</a>
</code>
</div>
<div class="height-container">
@@ -252,7 +252,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Croatian</p>
</div>
<div class="declaration">
@@ -269,9 +269,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5czechA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5czechyA2DmF"></a>
<a name="//apple_ref/swift/Element/czech" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5czechA2DmF">czech</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5czechyA2DmF">czech</a>
</code>
</div>
<div class="height-container">
@@ -279,7 +279,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Czech</p>
</div>
<div class="declaration">
@@ -296,9 +296,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6danishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6danishyA2DmF"></a>
<a name="//apple_ref/swift/Element/danish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6danishA2DmF">danish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6danishyA2DmF">danish</a>
</code>
</div>
<div class="height-container">
@@ -306,7 +306,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Danish</p>
</div>
<div class="declaration">
@@ -323,9 +323,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5dutchA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5dutchyA2DmF"></a>
<a name="//apple_ref/swift/Element/dutch" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5dutchA2DmF">dutch</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5dutchyA2DmF">dutch</a>
</code>
</div>
<div class="height-container">
@@ -333,7 +333,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Dutch</p>
</div>
<div class="declaration">
@@ -350,9 +350,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7englishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7englishyA2DmF"></a>
<a name="//apple_ref/swift/Element/english" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7englishA2DmF">english</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7englishyA2DmF">english</a>
</code>
</div>
<div class="height-container">
@@ -360,7 +360,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>English</p>
</div>
<div class="declaration">
@@ -377,9 +377,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8estonianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8estonianyA2DmF"></a>
<a name="//apple_ref/swift/Element/estonian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8estonianA2DmF">estonian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8estonianyA2DmF">estonian</a>
</code>
</div>
<div class="height-container">
@@ -387,7 +387,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Estonian</p>
</div>
<div class="declaration">
@@ -404,9 +404,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7finnishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7finnishyA2DmF"></a>
<a name="//apple_ref/swift/Element/finnish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7finnishA2DmF">finnish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7finnishyA2DmF">finnish</a>
</code>
</div>
<div class="height-container">
@@ -414,7 +414,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Finnish</p>
</div>
<div class="declaration">
@@ -431,9 +431,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6frenchA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6frenchyA2DmF"></a>
<a name="//apple_ref/swift/Element/french" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6frenchA2DmF">french</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6frenchyA2DmF">french</a>
</code>
</div>
<div class="height-container">
@@ -441,7 +441,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>French</p>
</div>
<div class="declaration">
@@ -458,9 +458,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6germanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6germanyA2DmF"></a>
<a name="//apple_ref/swift/Element/german" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6germanA2DmF">german</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6germanyA2DmF">german</a>
</code>
</div>
<div class="height-container">
@@ -468,7 +468,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>German</p>
</div>
<div class="declaration">
@@ -485,9 +485,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5greekA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5greekyA2DmF"></a>
<a name="//apple_ref/swift/Element/greek" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5greekA2DmF">greek</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5greekyA2DmF">greek</a>
</code>
</div>
<div class="height-container">
@@ -495,7 +495,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Greek</p>
</div>
<div class="declaration">
@@ -512,9 +512,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6hebrewA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6hebrewyA2DmF"></a>
<a name="//apple_ref/swift/Element/hebrew" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6hebrewA2DmF">hebrew</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6hebrewyA2DmF">hebrew</a>
</code>
</div>
<div class="height-container">
@@ -522,7 +522,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Hebrew</p>
</div>
<div class="declaration">
@@ -539,9 +539,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9hungarianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9hungarianyA2DmF"></a>
<a name="//apple_ref/swift/Element/hungarian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9hungarianA2DmF">hungarian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9hungarianyA2DmF">hungarian</a>
</code>
</div>
<div class="height-container">
@@ -549,7 +549,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Hungarian</p>
</div>
<div class="declaration">
@@ -566,9 +566,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10indonesianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10indonesianyA2DmF"></a>
<a name="//apple_ref/swift/Element/indonesian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10indonesianA2DmF">indonesian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10indonesianyA2DmF">indonesian</a>
</code>
</div>
<div class="height-container">
@@ -576,7 +576,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Indonesian</p>
</div>
<div class="declaration">
@@ -593,9 +593,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7italianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7italianyA2DmF"></a>
<a name="//apple_ref/swift/Element/italian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7italianA2DmF">italian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7italianyA2DmF">italian</a>
</code>
</div>
<div class="height-container">
@@ -603,7 +603,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Italian</p>
</div>
<div class="declaration">
@@ -620,9 +620,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8japaneseA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8japaneseyA2DmF"></a>
<a name="//apple_ref/swift/Element/japanese" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8japaneseA2DmF">japanese</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8japaneseyA2DmF">japanese</a>
</code>
</div>
<div class="height-container">
@@ -630,7 +630,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Japanese</p>
</div>
<div class="declaration">
@@ -647,9 +647,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6koreanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6koreanyA2DmF"></a>
<a name="//apple_ref/swift/Element/korean" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6koreanA2DmF">korean</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6koreanyA2DmF">korean</a>
</code>
</div>
<div class="height-container">
@@ -657,7 +657,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Korean</p>
</div>
<div class="declaration">
@@ -674,9 +674,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7latvianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7latvianyA2DmF"></a>
<a name="//apple_ref/swift/Element/latvian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7latvianA2DmF">latvian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7latvianyA2DmF">latvian</a>
</code>
</div>
<div class="height-container">
@@ -684,7 +684,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Latvian</p>
</div>
<div class="declaration">
@@ -701,9 +701,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10lithuanianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10lithuanianyA2DmF"></a>
<a name="//apple_ref/swift/Element/lithuanian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10lithuanianA2DmF">lithuanian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10lithuanianyA2DmF">lithuanian</a>
</code>
</div>
<div class="height-container">
@@ -711,7 +711,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Lithuanian</p>
</div>
<div class="declaration">
@@ -728,9 +728,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5malayA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5malayyA2DmF"></a>
<a name="//apple_ref/swift/Element/malay" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5malayA2DmF">malay</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5malayyA2DmF">malay</a>
</code>
</div>
<div class="height-container">
@@ -738,7 +738,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Malaysian</p>
</div>
<div class="declaration">
@@ -755,9 +755,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9norwegianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9norwegianyA2DmF"></a>
<a name="//apple_ref/swift/Element/norwegian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9norwegianA2DmF">norwegian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9norwegianyA2DmF">norwegian</a>
</code>
</div>
<div class="height-container">
@@ -765,7 +765,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Norwegian</p>
</div>
<div class="declaration">
@@ -782,9 +782,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7persianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7persianyA2DmF"></a>
<a name="//apple_ref/swift/Element/persian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7persianA2DmF">persian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7persianyA2DmF">persian</a>
</code>
</div>
<div class="height-container">
@@ -792,7 +792,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian</p>
</div>
<div class="declaration">
@@ -809,9 +809,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18persianAfghanistanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18persianAfghanistanyA2DmF"></a>
<a name="//apple_ref/swift/Element/persianAfghanistan" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18persianAfghanistanA2DmF">persianAfghanistan</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18persianAfghanistanyA2DmF">persianAfghanistan</a>
</code>
</div>
<div class="height-container">
@@ -819,7 +819,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian (Afghanistan)</p>
</div>
<div class="declaration">
@@ -836,9 +836,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO11persianIranA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO11persianIranyA2DmF"></a>
<a name="//apple_ref/swift/Element/persianIran" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO11persianIranA2DmF">persianIran</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO11persianIranyA2DmF">persianIran</a>
</code>
</div>
<div class="height-container">
@@ -846,7 +846,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian (Iran)</p>
</div>
<div class="declaration">
@@ -863,9 +863,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6polishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6polishyA2DmF"></a>
<a name="//apple_ref/swift/Element/polish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6polishA2DmF">polish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6polishyA2DmF">polish</a>
</code>
</div>
<div class="height-container">
@@ -873,7 +873,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Polish</p>
</div>
<div class="declaration">
@@ -890,9 +890,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO16portugueseBrazilA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO16portugueseBrazilyA2DmF"></a>
<a name="//apple_ref/swift/Element/portugueseBrazil" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO16portugueseBrazilA2DmF">portugueseBrazil</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO16portugueseBrazilyA2DmF">portugueseBrazil</a>
</code>
</div>
<div class="height-container">
@@ -900,7 +900,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Portuguese (Brazil)</p>
</div>
<div class="declaration">
@@ -917,9 +917,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18portuguesePortugalA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18portuguesePortugalyA2DmF"></a>
<a name="//apple_ref/swift/Element/portuguesePortugal" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18portuguesePortugalA2DmF">portuguesePortugal</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18portuguesePortugalyA2DmF">portuguesePortugal</a>
</code>
</div>
<div class="height-container">
@@ -927,7 +927,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Portuguese (Portugal)</p>
</div>
<div class="declaration">
@@ -944,9 +944,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7russianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7russianyA2DmF"></a>
<a name="//apple_ref/swift/Element/russian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7russianA2DmF">russian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7russianyA2DmF">russian</a>
</code>
</div>
<div class="height-container">
@@ -954,7 +954,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Russian</p>
</div>
<div class="declaration">
@@ -971,9 +971,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO15serbianCyrillicA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO15serbianCyrillicyA2DmF"></a>
<a name="//apple_ref/swift/Element/serbianCyrillic" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO15serbianCyrillicA2DmF">serbianCyrillic</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO15serbianCyrillicyA2DmF">serbianCyrillic</a>
</code>
</div>
<div class="height-container">
@@ -981,7 +981,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Serbian (Cyrillic)</p>
</div>
<div class="declaration">
@@ -998,9 +998,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO12serbianLatinA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO12serbianLatinyA2DmF"></a>
<a name="//apple_ref/swift/Element/serbianLatin" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO12serbianLatinA2DmF">serbianLatin</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO12serbianLatinyA2DmF">serbianLatin</a>
</code>
</div>
<div class="height-container">
@@ -1008,7 +1008,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Serbian (Latin)</p>
</div>
<div class="declaration">
@@ -1025,9 +1025,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9slovenianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9slovenianyA2DmF"></a>
<a name="//apple_ref/swift/Element/slovenian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9slovenianA2DmF">slovenian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9slovenianyA2DmF">slovenian</a>
</code>
</div>
<div class="height-container">
@@ -1035,7 +1035,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Slovenian</p>
</div>
<div class="declaration">
@@ -1052,9 +1052,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7spanishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7spanishyA2DmF"></a>
<a name="//apple_ref/swift/Element/spanish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7spanishA2DmF">spanish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7spanishyA2DmF">spanish</a>
</code>
</div>
<div class="height-container">
@@ -1062,7 +1062,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Spanish</p>
</div>
<div class="declaration">
@@ -1079,9 +1079,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7swedishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7swedishyA2DmF"></a>
<a name="//apple_ref/swift/Element/swedish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7swedishA2DmF">swedish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7swedishyA2DmF">swedish</a>
</code>
</div>
<div class="height-container">
@@ -1089,7 +1089,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Swedish</p>
</div>
<div class="declaration">
@@ -1106,9 +1106,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO4thaiA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO4thaiyA2DmF"></a>
<a name="//apple_ref/swift/Element/thai" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4thaiA2DmF">thai</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4thaiyA2DmF">thai</a>
</code>
</div>
<div class="height-container">
@@ -1116,7 +1116,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Thai</p>
</div>
<div class="declaration">
@@ -1133,9 +1133,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7turkishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7turkishyA2DmF"></a>
<a name="//apple_ref/swift/Element/turkish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7turkishA2DmF">turkish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7turkishyA2DmF">turkish</a>
</code>
</div>
<div class="height-container">
@@ -1143,7 +1143,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Turkish</p>
</div>
<div class="declaration">
@@ -1160,9 +1160,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO4urduA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO4urduyA2DmF"></a>
<a name="//apple_ref/swift/Element/urdu" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4urduA2DmF">urdu</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4urduyA2DmF">urdu</a>
</code>
</div>
<div class="height-container">
@@ -1170,7 +1170,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Urdu</p>
</div>
<div class="declaration">
@@ -1187,9 +1187,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9ukrainianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9ukrainianyA2DmF"></a>
<a name="//apple_ref/swift/Element/ukrainian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9ukrainianA2DmF">ukrainian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9ukrainianyA2DmF">ukrainian</a>
</code>
</div>
<div class="height-container">
@@ -1197,7 +1197,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Ukranian</p>
</div>
<div class="declaration">
@@ -1214,9 +1214,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10vietnameseA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10vietnameseyA2DmF"></a>
<a name="//apple_ref/swift/Element/vietnamese" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10vietnameseA2DmF">vietnamese</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10vietnameseyA2DmF">vietnamese</a>
</code>
</div>
<div class="height-container">
@@ -1224,7 +1224,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Vietnamese</p>
</div>
<div class="declaration">
@@ -1243,7 +1243,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+8 -8
View File
@@ -14,7 +14,7 @@
<a title="VersionCheckType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO11immediatelyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO11immediatelyyA2DmF"></a>
<a name="//apple_ref/swift/Element/immediately" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO11immediatelyA2DmF">immediately</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO11immediatelyyA2DmF">immediately</a>
</code>
</div>
<div class="height-container">
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO5dailyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO5dailyyA2DmF"></a>
<a name="//apple_ref/swift/Element/daily" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO5dailyA2DmF">daily</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO5dailyyA2DmF">daily</a>
</code>
</div>
<div class="height-container">
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO6weeklyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO6weeklyyA2DmF"></a>
<a name="//apple_ref/swift/Element/weekly" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO6weeklyA2DmF">weekly</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO6weeklyyA2DmF">weekly</a>
</code>
</div>
<div class="height-container">
@@ -187,7 +187,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+2 -2
View File
@@ -14,7 +14,7 @@
<a title="Enumerations Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -139,7 +139,7 @@ custom alert to inform the user about an update.</p>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+17 -17
View File
@@ -14,7 +14,7 @@
<a title="UpdateType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -115,9 +115,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5majorA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5majoryA2CmF"></a>
<a name="//apple_ref/swift/Element/major" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5majorA2CmF">major</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5majoryA2CmF">major</a>
</code>
</div>
<div class="height-container">
@@ -125,7 +125,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Major release available: A.b.c.d</p>
</div>
<div class="declaration">
@@ -142,9 +142,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5minorA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5minoryA2CmF"></a>
<a name="//apple_ref/swift/Element/minor" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5minorA2CmF">minor</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5minoryA2CmF">minor</a>
</code>
</div>
<div class="height-container">
@@ -152,7 +152,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Minor release available: a.B.c.d</p>
</div>
<div class="declaration">
@@ -169,9 +169,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5patchA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5patchyA2CmF"></a>
<a name="//apple_ref/swift/Element/patch" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5patchA2CmF">patch</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5patchyA2CmF">patch</a>
</code>
</div>
<div class="height-container">
@@ -179,7 +179,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Patch release available: a.b.C.d</p>
</div>
<div class="declaration">
@@ -196,9 +196,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO8revisionA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO8revisionyA2CmF"></a>
<a name="//apple_ref/swift/Element/revision" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO8revisionA2CmF">revision</a>
<a class="token" href="#/s:5Siren10UpdateTypeO8revisionyA2CmF">revision</a>
</code>
</div>
<div class="height-container">
@@ -206,7 +206,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Revision release available: a.b.c.D</p>
</div>
<div class="declaration">
@@ -223,9 +223,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO7unknownA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO7unknownyA2CmF"></a>
<a name="//apple_ref/swift/Element/unknown" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO7unknownA2CmF">unknown</a>
<a class="token" href="#/s:5Siren10UpdateTypeO7unknownyA2CmF">unknown</a>
</code>
</div>
<div class="height-container">
@@ -233,7 +233,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>No information available about the update.</p>
</div>
<div class="declaration">
@@ -252,7 +252,7 @@ custom alert to inform the user about an update.</p>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+2 -2
View File
@@ -14,7 +14,7 @@
<a title="Protocols Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -135,7 +135,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+29 -10
View File
@@ -14,7 +14,7 @@
<a title="SirenDelegate Protocol Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlertySS5title_SS7messageAA10UpdateTypeO06updateM0tF"></a>
<a name="/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlert5title7message10updateTypeySS_SSAA06UpdateM0OtF"></a>
<a name="//apple_ref/swift/Method/sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlertySS5title_SS7messageAA10UpdateTypeO06updateM0tF">sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlert5title7message10updateTypeySS_SSAA06UpdateM0OtF">sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -138,9 +138,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP24sirenDidFailVersionCheckys5Error_p5error_tF"></a>
<a name="/s:5Siren0A8DelegateP24sirenDidFailVersionCheck5errorys5Error_p_tF"></a>
<a name="//apple_ref/swift/Method/sirenDidFailVersionCheck(error:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidFailVersionCheckys5Error_p5error_tF">sirenDidFailVersionCheck(error:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidFailVersionCheck5errorys5Error_p_tF">sirenDidFailVersionCheck(error:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -178,9 +178,9 @@ a system-level error may be returned.
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP24sirenDidShowUpdateDialogyA2AC9AlertTypeO05alertI0_tF"></a>
<a name="/s:5Siren0A8DelegateP24sirenDidShowUpdateDialog9alertTypeyA2AC05AlertI0O_tF"></a>
<a name="//apple_ref/swift/Method/sirenDidShowUpdateDialog(alertType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidShowUpdateDialogyA2AC9AlertTypeO05alertI0_tF">sirenDidShowUpdateDialog(alertType:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidShowUpdateDialog9alertTypeyA2AC05AlertI0O_tF">sirenDidShowUpdateDialog(alertType:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -206,6 +206,25 @@ a system-level error may be returned.
</div>
</div>
<div>
<h4>Parameters</h4>
<table class="graybox">
<tbody>
<tr>
<td>
<code>
<em>alertType</em>
</code>
</td>
<td>
<div>
<p>The type of alert that was presented.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</li>
@@ -246,9 +265,9 @@ a system-level error may be returned.
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformationyAA0A11LookupModelV06lookupM0_tF"></a>
<a name="/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformation11lookupModelyAA0a6LookupM0V_tF"></a>
<a name="//apple_ref/swift/Method/sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformationyAA0A11LookupModelV06lookupM0_tF">sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformation11lookupModelyAA0a6LookupM0V_tF">sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -403,7 +422,7 @@ a system-level error may be returned.
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+43 -43
View File
@@ -14,7 +14,7 @@
<a title="Structures Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -122,7 +122,7 @@
</div>
<p>As SirenAlertMessaging is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<p>As <code>SirenAlertMessaging</code> is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<a href="Structs/SirenAlertMessaging.html" class="slightly-smaller">See more</a>
</div>
@@ -139,45 +139,6 @@
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Siren%20Error%20Handling"></a>
<a name="//apple_ref/swift/Section/Siren Error Handling" class="dashAnchor"></a>
<a href="#/Siren%20Error%20Handling">
<h3 class="section-name">Siren Error Handling</h3>
</a>
</div>
<ul>
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV"></a>
<a name="//apple_ref/swift/Struct/SirenError" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV">SirenError</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<a href="Structs/SirenError.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SirenError</span> <span class="p">:</span> <span class="kt">LocalizedError</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Model%20representing%20a%20selection%20of%20results%20from%20the%20iTunes%20Lookup%20API"></a>
@@ -200,7 +161,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>MARK: Siren extension used to parse and map the iTunes JSON results into a model represented in Swift.</p>
<a href="Structs/SirenLookupModel.html" class="slightly-smaller">See more</a>
</div>
@@ -217,10 +178,49 @@
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Siren%20Error%20Handling"></a>
<a name="//apple_ref/swift/Section/Siren Error Handling" class="dashAnchor"></a>
<a href="#/Siren%20Error%20Handling">
<h3 class="section-name">Siren Error Handling</h3>
</a>
</div>
<ul>
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV"></a>
<a name="//apple_ref/swift/Struct/SirenError" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV">SirenError</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Data structure used to build Siren specific Errors.</p>
<a href="Structs/SirenError.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SirenError</span> <span class="p">:</span> <span class="kt">LocalizedError</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+10 -10
View File
@@ -14,7 +14,7 @@
<a title="SirenAlertMessaging Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -102,7 +102,7 @@
</div>
<p>As SirenAlertMessaging is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<p>As <code>SirenAlertMessaging</code> is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
</section>
<section class="section task-group-section">
@@ -139,9 +139,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingVACSS11updateTitle_SS0D7MessageSS0d6ButtonF0SS08nextTimegF0SS011skipVersiongF0tcfc"></a>
<a name="/s:5Siren0A14AlertMessagingV11updateTitle0D7Message0d6ButtonF008nextTimegF0011skipVersiongF0ACSo18NSAttributedStringC_A4Jtcfc"></a>
<a name="//apple_ref/swift/Method/init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingVACSS11updateTitle_SS0D7MessageSS0d6ButtonF0SS08nextTimegF0SS011skipVersiongF0tcfc">init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV11updateTitle0D7Message0d6ButtonF008nextTimegF0011skipVersiongF0ACSo18NSAttributedStringC_A4Jtcfc">init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)</a>
</code>
</div>
<div class="height-container">
@@ -156,11 +156,11 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="n">updateTitle</span> <span class="nv">title</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateTitle</span><span class="p">,</span>
<span class="n">updateMessage</span> <span class="nv">message</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateMessage</span><span class="p">,</span>
<span class="nv">updateButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateNow</span><span class="p">,</span>
<span class="nv">nextTimeButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">nextTime</span><span class="p">,</span>
<span class="nv">skipVersionButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">skipVersion</span><span class="p">)</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="n">updateTitle</span> <span class="nv">title</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateTitle</span><span class="p">,</span>
<span class="n">updateMessage</span> <span class="nv">message</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateMessage</span><span class="p">,</span>
<span class="nv">updateButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateNow</span><span class="p">,</span>
<span class="nv">nextTimeButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">nextTime</span><span class="p">,</span>
<span class="nv">skipVersionButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">skipVersion</span><span class="p">)</span></code></pre>
</div>
</div>
@@ -239,7 +239,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+17 -17
View File
@@ -14,7 +14,7 @@
<a title="Constants Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/nextTime" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSSvpZ">nextTime</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSo18NSAttributedStringCvpZ">nextTime</a>
</code>
</div>
<div class="height-container">
@@ -121,7 +121,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">nextTime</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">nextTime</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/skipVersion" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSSvpZ">skipVersion</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSo18NSAttributedStringCvpZ">skipVersion</a>
</code>
</div>
<div class="height-container">
@@ -148,7 +148,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">skipVersion</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">skipVersion</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateMessage" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSSvpZ">updateMessage</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSo18NSAttributedStringCvpZ">updateMessage</a>
</code>
</div>
<div class="height-container">
@@ -175,7 +175,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateMessage</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -185,9 +185,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateTitle" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSSvpZ">updateTitle</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSo18NSAttributedStringCvpZ">updateTitle</a>
</code>
</div>
<div class="height-container">
@@ -202,7 +202,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateTitle</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateTitle</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -212,9 +212,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateNow" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSSvpZ">updateNow</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSo18NSAttributedStringCvpZ">updateNow</a>
</code>
</div>
<div class="height-container">
@@ -229,7 +229,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateNow</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateNow</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -241,7 +241,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+4 -4
View File
@@ -14,7 +14,7 @@
<a title="SirenError Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -95,7 +95,7 @@
</div>
</div>
<p>Undocumented</p>
<p>Data structure used to build Siren specific Errors.</p>
</section>
<section class="section task-group-section">
@@ -120,7 +120,7 @@
<li>appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</li>
<li>appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.</li>
<li>appStoreJSONParsingFailure: Error parsing App Store JSON data.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as the JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.</li>
<li>appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.</li>
<li>appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</li>
@@ -147,7 +147,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+35 -35
View File
@@ -14,7 +14,7 @@
<a title="Known Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -101,7 +101,7 @@
<li>appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</li>
<li>appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.</li>
<li>appStoreJSONParsingFailure: Error parsing App Store JSON data.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as the JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.</li>
<li>appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.</li>
<li>appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</li>
@@ -117,9 +117,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreAppIDFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureA2EmF">appStoreAppIDFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureyA2EmF">appStoreAppIDFailure</a>
</code>
</div>
<div class="height-container">
@@ -127,7 +127,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</p>
</div>
<div class="declaration">
@@ -144,9 +144,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureAEs0B0_pSg010underlyingB0_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureAEs0B0_pSg010underlyingB0_tcAEmF">appStoreDataRetrievalFailure</a>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureyAEs0B0_pSg_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalFailure(underlyingError:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureyAEs0B0_pSg_tcAEmF">appStoreDataRetrievalFailure(underlyingError:)</a>
</code>
</div>
<div class="height-container">
@@ -154,7 +154,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store data as an error was returned.</p>
</div>
<div class="declaration">
@@ -171,9 +171,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureAEs0B0_p010underlyingB0_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreJSONParsingFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureAEs0B0_p010underlyingB0_tcAEmF">appStoreJSONParsingFailure</a>
<a name="/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureyAEs0B0_p_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreJSONParsingFailure(underlyingError:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureyAEs0B0_p_tcAEmF">appStoreJSONParsingFailure(underlyingError:)</a>
</code>
</div>
<div class="height-container">
@@ -181,7 +181,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error parsing App Store JSON data.</p>
</div>
<div class="declaration">
@@ -198,9 +198,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalEmptyResults" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsA2EmF">appStoreDataRetrievalEmptyResults</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsyA2EmF">appStoreDataRetrievalEmptyResults</a>
</code>
</div>
<div class="height-container">
@@ -208,7 +208,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</p>
</div>
<div class="declaration">
@@ -225,9 +225,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreOSVersionNumberFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureA2EmF">appStoreOSVersionNumberFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureyA2EmF">appStoreOSVersionNumberFailure</a>
</code>
</div>
<div class="height-container">
@@ -235,7 +235,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving iOS version number as there was no data returned.</p>
</div>
<div class="declaration">
@@ -252,9 +252,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreOSVersionUnsupported" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedA2EmF">appStoreOSVersionUnsupported</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedyA2EmF">appStoreOSVersionUnsupported</a>
</code>
</div>
<div class="height-container">
@@ -262,7 +262,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>The version of iOS on the device is lower than that of the one required by the app verison update.</p>
</div>
<div class="declaration">
@@ -279,9 +279,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreVersionArrayFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureA2EmF">appStoreVersionArrayFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureyA2EmF">appStoreVersionArrayFailure</a>
</code>
</div>
<div class="height-container">
@@ -289,7 +289,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</p>
</div>
<div class="declaration">
@@ -306,9 +306,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO12malformedURLA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO12malformedURLyA2EmF"></a>
<a name="//apple_ref/swift/Element/malformedURL" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO12malformedURLA2EmF">malformedURL</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO12malformedURLyA2EmF">malformedURL</a>
</code>
</div>
<div class="height-container">
@@ -316,7 +316,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>The iTunes URL is malformed. Please leave an issue on <a href="https://github.com/ArtSabintsev/Siren">https://github.com/ArtSabintsev/Siren</a> with as many details as possible.</p>
</div>
<div class="declaration">
@@ -333,9 +333,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableyA2EmF"></a>
<a name="//apple_ref/swift/Element/noUpdateAvailable" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableA2EmF">noUpdateAvailable</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableyA2EmF">noUpdateAvailable</a>
</code>
</div>
<div class="height-container">
@@ -343,7 +343,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>No new update available.</p>
</div>
<div class="declaration">
@@ -360,9 +360,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyyA2EmF"></a>
<a name="//apple_ref/swift/Element/recentlyCheckedAlready" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyA2EmF">recentlyCheckedAlready</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyyA2EmF">recentlyCheckedAlready</a>
</code>
</div>
<div class="height-container">
@@ -370,7 +370,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Not checking the version, because it was already checked recently.</p>
</div>
<div class="declaration">
@@ -389,7 +389,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+3 -3
View File
@@ -14,7 +14,7 @@
<a title="SirenLookupModel Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -95,7 +95,7 @@
</div>
</div>
<p>Undocumented</p>
<p>MARK: Siren extension used to parse and map the iTunes JSON results into a model represented in Swift.</p>
</section>
<section class="section task-group-section">
@@ -161,7 +161,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+2 -2
View File
@@ -14,7 +14,7 @@
<a title="Results Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -241,7 +241,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+8 -8
View File
@@ -1,15 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="20">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="136" height="20">
<linearGradient id="b" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
<clipPath id="a">
<rect width="128" height="20" rx="3" fill="#fff"/>
<rect width="136" height="20" rx="3" fill="#fff"/>
</clipPath>
<g clip-path="url(#a)">
<path fill="#555" d="M0 0h93v20H0z"/>
<path fill="#dfb317" d="M93 0h35v20H93z"/>
<path fill="url(#b)" d="M0 0h128v20H0z"/>
<path fill="#4c1" d="M93 0h43v20H93z"/>
<path fill="url(#b)" d="M0 0h136v20H0z"/>
</g>
<g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110">
<text x="475" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="830">
@@ -18,11 +18,11 @@
<text x="475" y="140" transform="scale(.1)" textLength="830">
documentation
</text>
<text x="1095" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">
52%
<text x="1135" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="330">
100%
</text>
<text x="1095" y="140" transform="scale(.1)" textLength="250">
52%
<text x="1135" y="140" transform="scale(.1)" textLength="330">
100%
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -14,7 +14,7 @@
<a title="Classes Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -135,7 +135,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Siren Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -567,9 +567,9 @@ Defaults to 1 day to avoid an issue where Apple updates the JSON faster than the
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12checkVersionyAB0C9CheckTypeO0bE0_tF"></a>
<a name="/s:5SirenAAC12checkVersion0B4TypeyAB0c5CheckD0O_tF"></a>
<a name="//apple_ref/swift/Method/checkVersion(checkType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12checkVersionyAB0C9CheckTypeO0bE0_tF">checkVersion(checkType:)</a>
<a class="token" href="#/s:5SirenAAC12checkVersion0B4TypeyAB0c5CheckD0O_tF">checkVersion(checkType:)</a>
</code>
</div>
<div class="height-container">
@@ -648,10 +648,10 @@ you should set the <code><a href="../Classes/Siren.html#/s:5SirenAAC11countryCod
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Enumerated%20Types%20(Public)"></a>
<a name="//apple_ref/swift/Section/Enumerated Types (Public)" class="dashAnchor"></a>
<a href="#/Enumerated%20Types%20(Public)">
<h3 class="section-name">Enumerated Types (Public)</h3>
<a name="/Siren%20extension%20dealing%20with%20enumerated%20types%20and%20constants."></a>
<a name="//apple_ref/swift/Section/Siren extension dealing with enumerated types and constants." class="dashAnchor"></a>
<a href="#/Siren%20extension%20dealing%20with%20enumerated%20types%20and%20constants.">
<h3 class="section-name">Siren extension dealing with enumerated types and constants.</h3>
</a>
</div>
<ul>
@@ -747,7 +747,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="AlertType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO5forceA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO5forceyA2DmF"></a>
<a name="//apple_ref/swift/Element/force" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO5forceA2DmF">force</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO5forceyA2DmF">force</a>
</code>
</div>
<div class="height-container">
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO6optionA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO6optionyA2DmF"></a>
<a name="//apple_ref/swift/Element/option" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO6optionA2DmF">option</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO6optionyA2DmF">option</a>
</code>
</div>
<div class="height-container">
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO4skipA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO4skipyA2DmF"></a>
<a name="//apple_ref/swift/Element/skip" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4skipA2DmF">skip</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4skipyA2DmF">skip</a>
</code>
</div>
<div class="height-container">
@@ -185,9 +185,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC9AlertTypeO4noneA2DmF"></a>
<a name="/s:5SirenAAC9AlertTypeO4noneyA2DmF"></a>
<a name="//apple_ref/swift/Element/none" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4noneA2DmF">none</a>
<a class="token" href="#/s:5SirenAAC9AlertTypeO4noneyA2DmF">none</a>
</code>
</div>
<div class="height-container">
@@ -195,7 +195,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Doesn&rsquo;t show the alert, but instead returns a localized message
<p>Doesn&rsquo;t show the alert, but instead returns a localized message
for use in a custom UI within the sirenDidDetectNewVersionWithoutAlert() delegate method.</p>
</div>
@@ -215,7 +215,7 @@ for use in a custom UI within the sirenDidDetectNewVersionWithoutAlert() delegat
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="LanguageType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -107,9 +107,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6arabicA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6arabicyA2DmF"></a>
<a name="//apple_ref/swift/Element/arabic" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6arabicA2DmF">arabic</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6arabicyA2DmF">arabic</a>
</code>
</div>
<div class="height-container">
@@ -117,7 +117,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Arabic</p>
</div>
<div class="declaration">
@@ -134,9 +134,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8armenianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8armenianyA2DmF"></a>
<a name="//apple_ref/swift/Element/armenian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8armenianA2DmF">armenian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8armenianyA2DmF">armenian</a>
</code>
</div>
<div class="height-container">
@@ -144,7 +144,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Armenian</p>
</div>
<div class="declaration">
@@ -161,9 +161,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6basqueA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6basqueyA2DmF"></a>
<a name="//apple_ref/swift/Element/basque" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6basqueA2DmF">basque</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6basqueyA2DmF">basque</a>
</code>
</div>
<div class="height-container">
@@ -171,7 +171,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Basque</p>
</div>
<div class="declaration">
@@ -188,9 +188,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO17chineseSimplifiedA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO17chineseSimplifiedyA2DmF"></a>
<a name="//apple_ref/swift/Element/chineseSimplified" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO17chineseSimplifiedA2DmF">chineseSimplified</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO17chineseSimplifiedyA2DmF">chineseSimplified</a>
</code>
</div>
<div class="height-container">
@@ -198,7 +198,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Simplified Chinese</p>
</div>
<div class="declaration">
@@ -215,9 +215,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18chineseTraditionalA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18chineseTraditionalyA2DmF"></a>
<a name="//apple_ref/swift/Element/chineseTraditional" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18chineseTraditionalA2DmF">chineseTraditional</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18chineseTraditionalyA2DmF">chineseTraditional</a>
</code>
</div>
<div class="height-container">
@@ -225,7 +225,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Traditional Chinese</p>
</div>
<div class="declaration">
@@ -242,9 +242,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8croatianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8croatianyA2DmF"></a>
<a name="//apple_ref/swift/Element/croatian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8croatianA2DmF">croatian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8croatianyA2DmF">croatian</a>
</code>
</div>
<div class="height-container">
@@ -252,7 +252,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Croatian</p>
</div>
<div class="declaration">
@@ -269,9 +269,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5czechA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5czechyA2DmF"></a>
<a name="//apple_ref/swift/Element/czech" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5czechA2DmF">czech</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5czechyA2DmF">czech</a>
</code>
</div>
<div class="height-container">
@@ -279,7 +279,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Czech</p>
</div>
<div class="declaration">
@@ -296,9 +296,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6danishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6danishyA2DmF"></a>
<a name="//apple_ref/swift/Element/danish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6danishA2DmF">danish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6danishyA2DmF">danish</a>
</code>
</div>
<div class="height-container">
@@ -306,7 +306,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Danish</p>
</div>
<div class="declaration">
@@ -323,9 +323,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5dutchA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5dutchyA2DmF"></a>
<a name="//apple_ref/swift/Element/dutch" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5dutchA2DmF">dutch</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5dutchyA2DmF">dutch</a>
</code>
</div>
<div class="height-container">
@@ -333,7 +333,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Dutch</p>
</div>
<div class="declaration">
@@ -350,9 +350,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7englishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7englishyA2DmF"></a>
<a name="//apple_ref/swift/Element/english" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7englishA2DmF">english</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7englishyA2DmF">english</a>
</code>
</div>
<div class="height-container">
@@ -360,7 +360,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>English</p>
</div>
<div class="declaration">
@@ -377,9 +377,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8estonianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8estonianyA2DmF"></a>
<a name="//apple_ref/swift/Element/estonian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8estonianA2DmF">estonian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8estonianyA2DmF">estonian</a>
</code>
</div>
<div class="height-container">
@@ -387,7 +387,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Estonian</p>
</div>
<div class="declaration">
@@ -404,9 +404,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7finnishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7finnishyA2DmF"></a>
<a name="//apple_ref/swift/Element/finnish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7finnishA2DmF">finnish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7finnishyA2DmF">finnish</a>
</code>
</div>
<div class="height-container">
@@ -414,7 +414,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Finnish</p>
</div>
<div class="declaration">
@@ -431,9 +431,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6frenchA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6frenchyA2DmF"></a>
<a name="//apple_ref/swift/Element/french" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6frenchA2DmF">french</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6frenchyA2DmF">french</a>
</code>
</div>
<div class="height-container">
@@ -441,7 +441,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>French</p>
</div>
<div class="declaration">
@@ -458,9 +458,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6germanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6germanyA2DmF"></a>
<a name="//apple_ref/swift/Element/german" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6germanA2DmF">german</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6germanyA2DmF">german</a>
</code>
</div>
<div class="height-container">
@@ -468,7 +468,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>German</p>
</div>
<div class="declaration">
@@ -485,9 +485,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5greekA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5greekyA2DmF"></a>
<a name="//apple_ref/swift/Element/greek" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5greekA2DmF">greek</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5greekyA2DmF">greek</a>
</code>
</div>
<div class="height-container">
@@ -495,7 +495,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Greek</p>
</div>
<div class="declaration">
@@ -512,9 +512,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6hebrewA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6hebrewyA2DmF"></a>
<a name="//apple_ref/swift/Element/hebrew" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6hebrewA2DmF">hebrew</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6hebrewyA2DmF">hebrew</a>
</code>
</div>
<div class="height-container">
@@ -522,7 +522,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Hebrew</p>
</div>
<div class="declaration">
@@ -539,9 +539,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9hungarianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9hungarianyA2DmF"></a>
<a name="//apple_ref/swift/Element/hungarian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9hungarianA2DmF">hungarian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9hungarianyA2DmF">hungarian</a>
</code>
</div>
<div class="height-container">
@@ -549,7 +549,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Hungarian</p>
</div>
<div class="declaration">
@@ -566,9 +566,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10indonesianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10indonesianyA2DmF"></a>
<a name="//apple_ref/swift/Element/indonesian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10indonesianA2DmF">indonesian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10indonesianyA2DmF">indonesian</a>
</code>
</div>
<div class="height-container">
@@ -576,7 +576,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Indonesian</p>
</div>
<div class="declaration">
@@ -593,9 +593,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7italianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7italianyA2DmF"></a>
<a name="//apple_ref/swift/Element/italian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7italianA2DmF">italian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7italianyA2DmF">italian</a>
</code>
</div>
<div class="height-container">
@@ -603,7 +603,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Italian</p>
</div>
<div class="declaration">
@@ -620,9 +620,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO8japaneseA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO8japaneseyA2DmF"></a>
<a name="//apple_ref/swift/Element/japanese" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8japaneseA2DmF">japanese</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO8japaneseyA2DmF">japanese</a>
</code>
</div>
<div class="height-container">
@@ -630,7 +630,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Japanese</p>
</div>
<div class="declaration">
@@ -647,9 +647,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6koreanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6koreanyA2DmF"></a>
<a name="//apple_ref/swift/Element/korean" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6koreanA2DmF">korean</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6koreanyA2DmF">korean</a>
</code>
</div>
<div class="height-container">
@@ -657,7 +657,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Korean</p>
</div>
<div class="declaration">
@@ -674,9 +674,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7latvianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7latvianyA2DmF"></a>
<a name="//apple_ref/swift/Element/latvian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7latvianA2DmF">latvian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7latvianyA2DmF">latvian</a>
</code>
</div>
<div class="height-container">
@@ -684,7 +684,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Latvian</p>
</div>
<div class="declaration">
@@ -701,9 +701,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10lithuanianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10lithuanianyA2DmF"></a>
<a name="//apple_ref/swift/Element/lithuanian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10lithuanianA2DmF">lithuanian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10lithuanianyA2DmF">lithuanian</a>
</code>
</div>
<div class="height-container">
@@ -711,7 +711,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Lithuanian</p>
</div>
<div class="declaration">
@@ -728,9 +728,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO5malayA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO5malayyA2DmF"></a>
<a name="//apple_ref/swift/Element/malay" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5malayA2DmF">malay</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO5malayyA2DmF">malay</a>
</code>
</div>
<div class="height-container">
@@ -738,7 +738,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Malaysian</p>
</div>
<div class="declaration">
@@ -755,9 +755,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9norwegianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9norwegianyA2DmF"></a>
<a name="//apple_ref/swift/Element/norwegian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9norwegianA2DmF">norwegian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9norwegianyA2DmF">norwegian</a>
</code>
</div>
<div class="height-container">
@@ -765,7 +765,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Norwegian</p>
</div>
<div class="declaration">
@@ -782,9 +782,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7persianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7persianyA2DmF"></a>
<a name="//apple_ref/swift/Element/persian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7persianA2DmF">persian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7persianyA2DmF">persian</a>
</code>
</div>
<div class="height-container">
@@ -792,7 +792,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian</p>
</div>
<div class="declaration">
@@ -809,9 +809,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18persianAfghanistanA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18persianAfghanistanyA2DmF"></a>
<a name="//apple_ref/swift/Element/persianAfghanistan" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18persianAfghanistanA2DmF">persianAfghanistan</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18persianAfghanistanyA2DmF">persianAfghanistan</a>
</code>
</div>
<div class="height-container">
@@ -819,7 +819,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian (Afghanistan)</p>
</div>
<div class="declaration">
@@ -836,9 +836,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO11persianIranA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO11persianIranyA2DmF"></a>
<a name="//apple_ref/swift/Element/persianIran" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO11persianIranA2DmF">persianIran</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO11persianIranyA2DmF">persianIran</a>
</code>
</div>
<div class="height-container">
@@ -846,7 +846,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Persian (Iran)</p>
</div>
<div class="declaration">
@@ -863,9 +863,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO6polishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO6polishyA2DmF"></a>
<a name="//apple_ref/swift/Element/polish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6polishA2DmF">polish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO6polishyA2DmF">polish</a>
</code>
</div>
<div class="height-container">
@@ -873,7 +873,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Polish</p>
</div>
<div class="declaration">
@@ -890,9 +890,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO16portugueseBrazilA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO16portugueseBrazilyA2DmF"></a>
<a name="//apple_ref/swift/Element/portugueseBrazil" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO16portugueseBrazilA2DmF">portugueseBrazil</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO16portugueseBrazilyA2DmF">portugueseBrazil</a>
</code>
</div>
<div class="height-container">
@@ -900,7 +900,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Portuguese (Brazil)</p>
</div>
<div class="declaration">
@@ -917,9 +917,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO18portuguesePortugalA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO18portuguesePortugalyA2DmF"></a>
<a name="//apple_ref/swift/Element/portuguesePortugal" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18portuguesePortugalA2DmF">portuguesePortugal</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO18portuguesePortugalyA2DmF">portuguesePortugal</a>
</code>
</div>
<div class="height-container">
@@ -927,7 +927,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Portuguese (Portugal)</p>
</div>
<div class="declaration">
@@ -944,9 +944,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7russianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7russianyA2DmF"></a>
<a name="//apple_ref/swift/Element/russian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7russianA2DmF">russian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7russianyA2DmF">russian</a>
</code>
</div>
<div class="height-container">
@@ -954,7 +954,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Russian</p>
</div>
<div class="declaration">
@@ -971,9 +971,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO15serbianCyrillicA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO15serbianCyrillicyA2DmF"></a>
<a name="//apple_ref/swift/Element/serbianCyrillic" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO15serbianCyrillicA2DmF">serbianCyrillic</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO15serbianCyrillicyA2DmF">serbianCyrillic</a>
</code>
</div>
<div class="height-container">
@@ -981,7 +981,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Serbian (Cyrillic)</p>
</div>
<div class="declaration">
@@ -998,9 +998,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO12serbianLatinA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO12serbianLatinyA2DmF"></a>
<a name="//apple_ref/swift/Element/serbianLatin" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO12serbianLatinA2DmF">serbianLatin</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO12serbianLatinyA2DmF">serbianLatin</a>
</code>
</div>
<div class="height-container">
@@ -1008,7 +1008,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Serbian (Latin)</p>
</div>
<div class="declaration">
@@ -1025,9 +1025,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9slovenianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9slovenianyA2DmF"></a>
<a name="//apple_ref/swift/Element/slovenian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9slovenianA2DmF">slovenian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9slovenianyA2DmF">slovenian</a>
</code>
</div>
<div class="height-container">
@@ -1035,7 +1035,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Slovenian</p>
</div>
<div class="declaration">
@@ -1052,9 +1052,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7spanishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7spanishyA2DmF"></a>
<a name="//apple_ref/swift/Element/spanish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7spanishA2DmF">spanish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7spanishyA2DmF">spanish</a>
</code>
</div>
<div class="height-container">
@@ -1062,7 +1062,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Spanish</p>
</div>
<div class="declaration">
@@ -1079,9 +1079,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7swedishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7swedishyA2DmF"></a>
<a name="//apple_ref/swift/Element/swedish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7swedishA2DmF">swedish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7swedishyA2DmF">swedish</a>
</code>
</div>
<div class="height-container">
@@ -1089,7 +1089,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Swedish</p>
</div>
<div class="declaration">
@@ -1106,9 +1106,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO4thaiA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO4thaiyA2DmF"></a>
<a name="//apple_ref/swift/Element/thai" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4thaiA2DmF">thai</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4thaiyA2DmF">thai</a>
</code>
</div>
<div class="height-container">
@@ -1116,7 +1116,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Thai</p>
</div>
<div class="declaration">
@@ -1133,9 +1133,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO7turkishA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO7turkishyA2DmF"></a>
<a name="//apple_ref/swift/Element/turkish" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7turkishA2DmF">turkish</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO7turkishyA2DmF">turkish</a>
</code>
</div>
<div class="height-container">
@@ -1143,7 +1143,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Turkish</p>
</div>
<div class="declaration">
@@ -1160,9 +1160,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO4urduA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO4urduyA2DmF"></a>
<a name="//apple_ref/swift/Element/urdu" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4urduA2DmF">urdu</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO4urduyA2DmF">urdu</a>
</code>
</div>
<div class="height-container">
@@ -1170,7 +1170,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Urdu</p>
</div>
<div class="declaration">
@@ -1187,9 +1187,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO9ukrainianA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO9ukrainianyA2DmF"></a>
<a name="//apple_ref/swift/Element/ukrainian" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9ukrainianA2DmF">ukrainian</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO9ukrainianyA2DmF">ukrainian</a>
</code>
</div>
<div class="height-container">
@@ -1197,7 +1197,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Ukranian</p>
</div>
<div class="declaration">
@@ -1214,9 +1214,9 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC12LanguageTypeO10vietnameseA2DmF"></a>
<a name="/s:5SirenAAC12LanguageTypeO10vietnameseyA2DmF"></a>
<a name="//apple_ref/swift/Element/vietnamese" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10vietnameseA2DmF">vietnamese</a>
<a class="token" href="#/s:5SirenAAC12LanguageTypeO10vietnameseyA2DmF">vietnamese</a>
</code>
</div>
<div class="height-container">
@@ -1224,7 +1224,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Vietnamese</p>
</div>
<div class="declaration">
@@ -1243,7 +1243,7 @@ by setting the forceLanguageLocalization property before calling checkVersion()<
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="VersionCheckType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO11immediatelyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO11immediatelyyA2DmF"></a>
<a name="//apple_ref/swift/Element/immediately" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO11immediatelyA2DmF">immediately</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO11immediatelyyA2DmF">immediately</a>
</code>
</div>
<div class="height-container">
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO5dailyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO5dailyyA2DmF"></a>
<a name="//apple_ref/swift/Element/daily" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO5dailyA2DmF">daily</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO5dailyyA2DmF">daily</a>
</code>
</div>
<div class="height-container">
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5SirenAAC16VersionCheckTypeO6weeklyA2DmF"></a>
<a name="/s:5SirenAAC16VersionCheckTypeO6weeklyyA2DmF"></a>
<a name="//apple_ref/swift/Element/weekly" class="dashAnchor"></a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO6weeklyA2DmF">weekly</a>
<a class="token" href="#/s:5SirenAAC16VersionCheckTypeO6weeklyyA2DmF">weekly</a>
</code>
</div>
<div class="height-container">
@@ -187,7 +187,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Enumerations Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -139,7 +139,7 @@ custom alert to inform the user about an update.</p>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="UpdateType Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -115,9 +115,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5majorA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5majoryA2CmF"></a>
<a name="//apple_ref/swift/Element/major" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5majorA2CmF">major</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5majoryA2CmF">major</a>
</code>
</div>
<div class="height-container">
@@ -125,7 +125,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Major release available: A.b.c.d</p>
</div>
<div class="declaration">
@@ -142,9 +142,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5minorA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5minoryA2CmF"></a>
<a name="//apple_ref/swift/Element/minor" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5minorA2CmF">minor</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5minoryA2CmF">minor</a>
</code>
</div>
<div class="height-container">
@@ -152,7 +152,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Minor release available: a.B.c.d</p>
</div>
<div class="declaration">
@@ -169,9 +169,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO5patchA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO5patchyA2CmF"></a>
<a name="//apple_ref/swift/Element/patch" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO5patchA2CmF">patch</a>
<a class="token" href="#/s:5Siren10UpdateTypeO5patchyA2CmF">patch</a>
</code>
</div>
<div class="height-container">
@@ -179,7 +179,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Patch release available: a.b.C.d</p>
</div>
<div class="declaration">
@@ -196,9 +196,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO8revisionA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO8revisionyA2CmF"></a>
<a name="//apple_ref/swift/Element/revision" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO8revisionA2CmF">revision</a>
<a class="token" href="#/s:5Siren10UpdateTypeO8revisionyA2CmF">revision</a>
</code>
</div>
<div class="height-container">
@@ -206,7 +206,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Revision release available: a.b.c.D</p>
</div>
<div class="declaration">
@@ -223,9 +223,9 @@ custom alert to inform the user about an update.</p>
<li class="item">
<div>
<code>
<a name="/s:5Siren10UpdateTypeO7unknownA2CmF"></a>
<a name="/s:5Siren10UpdateTypeO7unknownyA2CmF"></a>
<a name="//apple_ref/swift/Element/unknown" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren10UpdateTypeO7unknownA2CmF">unknown</a>
<a class="token" href="#/s:5Siren10UpdateTypeO7unknownyA2CmF">unknown</a>
</code>
</div>
<div class="height-container">
@@ -233,7 +233,7 @@ custom alert to inform the user about an update.</p>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>No information available about the update.</p>
</div>
<div class="declaration">
@@ -252,7 +252,7 @@ custom alert to inform the user about an update.</p>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Protocols Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -135,7 +135,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="SirenDelegate Protocol Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlertySS5title_SS7messageAA10UpdateTypeO06updateM0tF"></a>
<a name="/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlert5title7message10updateTypeySS_SSAA06UpdateM0OtF"></a>
<a name="//apple_ref/swift/Method/sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlertySS5title_SS7messageAA10UpdateTypeO06updateM0tF">sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP36sirenDidDetectNewVersionWithoutAlert5title7message10updateTypeySS_SSAA06UpdateM0OtF">sirenDidDetectNewVersionWithoutAlert(title:message:updateType:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -138,9 +138,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP24sirenDidFailVersionCheckys5Error_p5error_tF"></a>
<a name="/s:5Siren0A8DelegateP24sirenDidFailVersionCheck5errorys5Error_p_tF"></a>
<a name="//apple_ref/swift/Method/sirenDidFailVersionCheck(error:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidFailVersionCheckys5Error_p5error_tF">sirenDidFailVersionCheck(error:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidFailVersionCheck5errorys5Error_p_tF">sirenDidFailVersionCheck(error:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -178,9 +178,9 @@ a system-level error may be returned.
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP24sirenDidShowUpdateDialogyA2AC9AlertTypeO05alertI0_tF"></a>
<a name="/s:5Siren0A8DelegateP24sirenDidShowUpdateDialog9alertTypeyA2AC05AlertI0O_tF"></a>
<a name="//apple_ref/swift/Method/sirenDidShowUpdateDialog(alertType:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidShowUpdateDialogyA2AC9AlertTypeO05alertI0_tF">sirenDidShowUpdateDialog(alertType:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP24sirenDidShowUpdateDialog9alertTypeyA2AC05AlertI0O_tF">sirenDidShowUpdateDialog(alertType:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -206,6 +206,25 @@ a system-level error may be returned.
</div>
</div>
<div>
<h4>Parameters</h4>
<table class="graybox">
<tbody>
<tr>
<td>
<code>
<em>alertType</em>
</code>
</td>
<td>
<div>
<p>The type of alert that was presented.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</li>
@@ -246,9 +265,9 @@ a system-level error may be returned.
<li class="item">
<div>
<code>
<a name="/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformationyAA0A11LookupModelV06lookupM0_tF"></a>
<a name="/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformation11lookupModelyAA0a6LookupM0V_tF"></a>
<a name="//apple_ref/swift/Method/sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformationyAA0A11LookupModelV06lookupM0_tF">sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)</a>
<a class="token" href="#/s:5Siren0A8DelegateP50sirenNetworkCallDidReturnWithNewVersionInformation11lookupModelyAA0a6LookupM0V_tF">sirenNetworkCallDidReturnWithNewVersionInformation(lookupModel:)</a>
</code>
<span class="declaration-note">
Default implementation
@@ -403,7 +422,7 @@ a system-level error may be returned.
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Structures Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -122,7 +122,7 @@
</div>
<p>As SirenAlertMessaging is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<p>As <code>SirenAlertMessaging</code> is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<a href="Structs/SirenAlertMessaging.html" class="slightly-smaller">See more</a>
</div>
@@ -139,45 +139,6 @@
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Siren%20Error%20Handling"></a>
<a name="//apple_ref/swift/Section/Siren Error Handling" class="dashAnchor"></a>
<a href="#/Siren%20Error%20Handling">
<h3 class="section-name">Siren Error Handling</h3>
</a>
</div>
<ul>
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV"></a>
<a name="//apple_ref/swift/Struct/SirenError" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV">SirenError</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<a href="Structs/SirenError.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SirenError</span> <span class="p">:</span> <span class="kt">LocalizedError</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Model%20representing%20a%20selection%20of%20results%20from%20the%20iTunes%20Lookup%20API"></a>
@@ -200,7 +161,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>MARK: Siren extension used to parse and map the iTunes JSON results into a model represented in Swift.</p>
<a href="Structs/SirenLookupModel.html" class="slightly-smaller">See more</a>
</div>
@@ -217,10 +178,49 @@
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Siren%20Error%20Handling"></a>
<a name="//apple_ref/swift/Section/Siren Error Handling" class="dashAnchor"></a>
<a href="#/Siren%20Error%20Handling">
<h3 class="section-name">Siren Error Handling</h3>
</a>
</div>
<ul>
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV"></a>
<a name="//apple_ref/swift/Struct/SirenError" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV">SirenError</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Data structure used to build Siren specific Errors.</p>
<a href="Structs/SirenError.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SirenError</span> <span class="p">:</span> <span class="kt">LocalizedError</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="SirenAlertMessaging Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -102,7 +102,7 @@
</div>
<p>As SirenAlertMessaging is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
<p>As <code>SirenAlertMessaging</code> is a Struct, one <em>or</em> more keys can be modified. Overriding only one string will result in the other keys retaining their default (and internationalizable) values.</p>
</section>
<section class="section task-group-section">
@@ -139,9 +139,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingVACSS11updateTitle_SS0D7MessageSS0d6ButtonF0SS08nextTimegF0SS011skipVersiongF0tcfc"></a>
<a name="/s:5Siren0A14AlertMessagingV11updateTitle0D7Message0d6ButtonF008nextTimegF0011skipVersiongF0ACSo18NSAttributedStringC_A4Jtcfc"></a>
<a name="//apple_ref/swift/Method/init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingVACSS11updateTitle_SS0D7MessageSS0d6ButtonF0SS08nextTimegF0SS011skipVersiongF0tcfc">init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV11updateTitle0D7Message0d6ButtonF008nextTimegF0011skipVersiongF0ACSo18NSAttributedStringC_A4Jtcfc">init(updateTitle:updateMessage:updateButtonMessage:nextTimeButtonMessage:skipVersionButtonMessage:)</a>
</code>
</div>
<div class="height-container">
@@ -156,11 +156,11 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="n">updateTitle</span> <span class="nv">title</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateTitle</span><span class="p">,</span>
<span class="n">updateMessage</span> <span class="nv">message</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateMessage</span><span class="p">,</span>
<span class="nv">updateButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateNow</span><span class="p">,</span>
<span class="nv">nextTimeButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">nextTime</span><span class="p">,</span>
<span class="nv">skipVersionButtonMessage</span><span class="p">:</span> <span class="kt">String</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">skipVersion</span><span class="p">)</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="n">updateTitle</span> <span class="nv">title</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateTitle</span><span class="p">,</span>
<span class="n">updateMessage</span> <span class="nv">message</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateMessage</span><span class="p">,</span>
<span class="nv">updateButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">updateNow</span><span class="p">,</span>
<span class="nv">nextTimeButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">nextTime</span><span class="p">,</span>
<span class="nv">skipVersionButtonMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span> <span class="o">=</span> <span class="kt"><a href="../Structs/SirenAlertMessaging/Constants.html">Constants</a></span><span class="o">.</span><span class="n">skipVersion</span><span class="p">)</span></code></pre>
</div>
</div>
@@ -239,7 +239,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Constants Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -104,9 +104,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/nextTime" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSSvpZ">nextTime</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV8nextTimeSo18NSAttributedStringCvpZ">nextTime</a>
</code>
</div>
<div class="height-container">
@@ -121,7 +121,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">nextTime</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">nextTime</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -131,9 +131,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/skipVersion" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSSvpZ">skipVersion</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11skipVersionSo18NSAttributedStringCvpZ">skipVersion</a>
</code>
</div>
<div class="height-container">
@@ -148,7 +148,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">skipVersion</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">skipVersion</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -158,9 +158,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateMessage" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSSvpZ">updateMessage</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV13updateMessageSo18NSAttributedStringCvpZ">updateMessage</a>
</code>
</div>
<div class="height-container">
@@ -175,7 +175,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateMessage</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateMessage</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -185,9 +185,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateTitle" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSSvpZ">updateTitle</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV11updateTitleSo18NSAttributedStringCvpZ">updateTitle</a>
</code>
</div>
<div class="height-container">
@@ -202,7 +202,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateTitle</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateTitle</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -212,9 +212,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSSvpZ"></a>
<a name="/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSo18NSAttributedStringCvpZ"></a>
<a name="//apple_ref/swift/Variable/updateNow" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSSvpZ">updateNow</a>
<a class="token" href="#/s:5Siren0A14AlertMessagingV9ConstantsV9updateNowSo18NSAttributedStringCvpZ">updateNow</a>
</code>
</div>
<div class="height-container">
@@ -229,7 +229,7 @@
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateNow</span><span class="p">:</span> <span class="kt">String</span></code></pre>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">updateNow</span><span class="p">:</span> <span class="kt">NSAttributedString</span></code></pre>
</div>
</div>
@@ -241,7 +241,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="SirenError Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -95,7 +95,7 @@
</div>
</div>
<p>Undocumented</p>
<p>Data structure used to build Siren specific Errors.</p>
</section>
<section class="section task-group-section">
@@ -120,7 +120,7 @@
<li>appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</li>
<li>appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.</li>
<li>appStoreJSONParsingFailure: Error parsing App Store JSON data.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as the JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.</li>
<li>appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.</li>
<li>appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</li>
@@ -147,7 +147,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Known Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -101,7 +101,7 @@
<li>appStoreAppIDFailure: Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</li>
<li>appStoreDataRetrievalFailure: Error retrieving App Store data as an error was returned.</li>
<li>appStoreJSONParsingFailure: Error parsing App Store JSON data.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as the JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreDataRetrievalEmptyResults: Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</li>
<li>appStoreOSVersionNumberFailure: Error retrieving iOS version number as there was no data returned.</li>
<li>appStoreOSVersionUnsupported: The version of iOS on the device is lower than that of the one required by the app verison update.</li>
<li>appStoreVersionArrayFailure: Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</li>
@@ -117,9 +117,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreAppIDFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureA2EmF">appStoreAppIDFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO20appStoreAppIDFailureyA2EmF">appStoreAppIDFailure</a>
</code>
</div>
<div class="height-container">
@@ -127,7 +127,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving trackId as the JSON does not contain a &lsquo;trackId&rsquo; key.</p>
</div>
<div class="declaration">
@@ -144,9 +144,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureAEs0B0_pSg010underlyingB0_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureAEs0B0_pSg010underlyingB0_tcAEmF">appStoreDataRetrievalFailure</a>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureyAEs0B0_pSg_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalFailure(underlyingError:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreDataRetrievalFailureyAEs0B0_pSg_tcAEmF">appStoreDataRetrievalFailure(underlyingError:)</a>
</code>
</div>
<div class="height-container">
@@ -154,7 +154,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store data as an error was returned.</p>
</div>
<div class="declaration">
@@ -171,9 +171,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureAEs0B0_p010underlyingB0_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreJSONParsingFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureAEs0B0_p010underlyingB0_tcAEmF">appStoreJSONParsingFailure</a>
<a name="/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureyAEs0B0_p_tcAEmF"></a>
<a name="//apple_ref/swift/Element/appStoreJSONParsingFailure(underlyingError:)" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO26appStoreJSONParsingFailureyAEs0B0_p_tcAEmF">appStoreJSONParsingFailure(underlyingError:)</a>
</code>
</div>
<div class="height-container">
@@ -181,7 +181,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error parsing App Store JSON data.</p>
</div>
<div class="declaration">
@@ -198,9 +198,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreDataRetrievalEmptyResults" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsA2EmF">appStoreDataRetrievalEmptyResults</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO33appStoreDataRetrievalEmptyResultsyA2EmF">appStoreDataRetrievalEmptyResults</a>
</code>
</div>
<div class="height-container">
@@ -208,7 +208,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store data as JSON results were empty. Is your app available in the US? If not, change the <code>countryCode</code> variable to fix this error.</p>
</div>
<div class="declaration">
@@ -225,9 +225,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreOSVersionNumberFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureA2EmF">appStoreOSVersionNumberFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO30appStoreOSVersionNumberFailureyA2EmF">appStoreOSVersionNumberFailure</a>
</code>
</div>
<div class="height-container">
@@ -235,7 +235,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving iOS version number as there was no data returned.</p>
</div>
<div class="declaration">
@@ -252,9 +252,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreOSVersionUnsupported" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedA2EmF">appStoreOSVersionUnsupported</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO28appStoreOSVersionUnsupportedyA2EmF">appStoreOSVersionUnsupported</a>
</code>
</div>
<div class="height-container">
@@ -262,7 +262,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>The version of iOS on the device is lower than that of the one required by the app verison update.</p>
</div>
<div class="declaration">
@@ -279,9 +279,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureyA2EmF"></a>
<a name="//apple_ref/swift/Element/appStoreVersionArrayFailure" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureA2EmF">appStoreVersionArrayFailure</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO27appStoreVersionArrayFailureyA2EmF">appStoreVersionArrayFailure</a>
</code>
</div>
<div class="height-container">
@@ -289,7 +289,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Error retrieving App Store verson number as the JSON does not contain a &lsquo;version&rsquo; key.</p>
</div>
<div class="declaration">
@@ -306,9 +306,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO12malformedURLA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO12malformedURLyA2EmF"></a>
<a name="//apple_ref/swift/Element/malformedURL" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO12malformedURLA2EmF">malformedURL</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO12malformedURLyA2EmF">malformedURL</a>
</code>
</div>
<div class="height-container">
@@ -316,7 +316,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>The iTunes URL is malformed. Please leave an issue on <a href="https://github.com/ArtSabintsev/Siren">https://github.com/ArtSabintsev/Siren</a> with as many details as possible.</p>
</div>
<div class="declaration">
@@ -333,9 +333,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableyA2EmF"></a>
<a name="//apple_ref/swift/Element/noUpdateAvailable" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableA2EmF">noUpdateAvailable</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO17noUpdateAvailableyA2EmF">noUpdateAvailable</a>
</code>
</div>
<div class="height-container">
@@ -343,7 +343,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>No new update available.</p>
</div>
<div class="declaration">
@@ -360,9 +360,9 @@
<li class="item">
<div>
<code>
<a name="/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyA2EmF"></a>
<a name="/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyyA2EmF"></a>
<a name="//apple_ref/swift/Element/recentlyCheckedAlready" class="dashAnchor"></a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyA2EmF">recentlyCheckedAlready</a>
<a class="token" href="#/s:5Siren0A5ErrorV5KnownO22recentlyCheckedAlreadyyA2EmF">recentlyCheckedAlready</a>
</code>
</div>
<div class="height-container">
@@ -370,7 +370,7 @@
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Undocumented</p>
<p>Not checking the version, because it was already checked recently.</p>
</div>
<div class="declaration">
@@ -389,7 +389,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="SirenLookupModel Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -95,7 +95,7 @@
</div>
</div>
<p>Undocumented</p>
<p>MARK: Siren extension used to parse and map the iTunes JSON results into a model represented in Swift.</p>
</section>
<section class="section task-group-section">
@@ -161,7 +161,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -14,7 +14,7 @@
<a title="Results Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">Siren Docs</a> (52% documented)</p>
<p><a href="../../index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -241,7 +241,7 @@
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
@@ -0,0 +1,28 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="20">
<linearGradient id="b" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
<clipPath id="a">
<rect width="128" height="20" rx="3" fill="#fff"/>
</clipPath>
<g clip-path="url(#a)">
<path fill="#555" d="M0 0h93v20H0z"/>
<path fill="#4c1" d="M93 0h35v20H93z"/>
<path fill="url(#b)" d="M0 0h128v20H0z"/>
</g>
<g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110">
<text x="475" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="830">
documentation
</text>
<text x="475" y="140" transform="scale(.1)" textLength="830">
documentation
</text>
<text x="1095" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">
95%
</text>
<text x="1095" y="140" transform="scale(.1)" textLength="250">
95%
</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -13,7 +13,7 @@
<a title="Siren Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -91,9 +91,9 @@
<h1 id='siren' class='heading'>Siren 🚨</h1>
<h3 id='notify-users-when-a-new-version-of-your-app-is-available-and-prompt-them-to-upgrade' class='heading'>Notify users when a new version of your app is available and prompt them to upgrade.</h3>
<p><img src="https://travis-ci.org/ArtSabintsev/Siren.svg?branch=master" alt="Travis CI Status"></p>
<p><a href="https://travis-ci.org/ArtSabintsev/Siren"><img src="https://travis-ci.org/ArtSabintsev/Siren.svg?branch=master" alt="Travis CI Status"></a></p>
<p><img src="https://img.shields.io/badge/Swift-2.3%2C%203.1%2C%203.2%2C%204.1-orange.svg" alt="Swift Support"> <img src="https://github.com/ArtSabintsev/Siren/blob/master/Documentation/badge.svg" alt="Documentation"></p>
<p><img src="https://img.shields.io/badge/Swift-4.2%2C%204.1%2C%203.2%2C%203.1%202.3-orange.svg" alt="Swift Support"> <img src="https://github.com/ArtSabintsev/Siren/blob/master/docs/badge.svg" alt="Documentation"></p>
<p><a href="https://cocoapods.org/pods/Siren"><img src="https://img.shields.io/cocoapods/v/Siren.svg" alt="CocoaPods"></a> <a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage Compatible"></a> <a href="https://swift.org/package-manager/"><img src="https://img.shields.io/badge/SwiftPM-Compatible-brightgreen.svg" alt="SwiftPM Compatible"></a></p>
@@ -170,11 +170,16 @@
</tr>
</thead><tbody>
<tr>
<td>4.1</td>
<td>4.2</td>
<td>master</td>
<td><strong>Yes</strong></td>
</tr>
<tr>
<td>4.1</td>
<td>swift4.1</td>
<td>No</td>
</tr>
<tr>
<td>3.2</td>
<td>swift3.2</td>
<td>No</td>
@@ -191,38 +196,18 @@
</tr>
</tbody></table>
<h3 id='cocoapods' class='heading'>CocoaPods</h3>
<p>For Swift 4.1 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span>
</code></pre>
<p>For Swift 3.2 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.2'</span>
</code></pre>
<p>For Swift 3.1 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.1'</span>
</code></pre>
<p>For Swift 2.3 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift2.3'</span>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span> <span class="c1"># Swift 4.2</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift4.1'</span> <span class="c1"># Swift 4.1</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.2'</span> <span class="c1"># Swift 3.2</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.1'</span> <span class="c1"># Swift 3.1</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift2.3'</span> <span class="c1"># Swift 2.3</span>
</code></pre>
<h3 id='carthage' class='heading'>Carthage</h3>
<p>For Swift 4.1 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span>
</code></pre>
<p>For Swift 3.2 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.2"</span>
</code></pre>
<p>For Swift 3.1 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.1"</span>
</code></pre>
<p>For Swift 2.3 support:</p>
<pre class="highlight ruby"><code><span class="n">github</span> <span class="s2">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s2">"swift2.3"</span>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span> <span class="c1">// Swift 4.2</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift4.1"</span> <span class="c1">// Swift 4.1</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.2"</span> <span class="c1">// Swift 3.2</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.1"</span> <span class="c1">// Swift 3.1</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift2.3"</span> <span class="c1">// Swift 2.3</span>
</code></pre>
<h3 id='swift-package-manager' class='heading'>Swift Package Manager</h3>
<pre class="highlight swift"><code><span class="o">.</span><span class="kt">Package</span><span class="p">(</span><span class="nv">url</span><span class="p">:</span> <span class="s">"https://github.com/ArtSabintsev/Siren.git"</span><span class="p">,</span> <span class="nv">majorVersion</span><span class="p">:</span> <span class="mi">3</span><span class="p">)</span>
@@ -235,26 +220,27 @@
<pre class="highlight plaintext"><code>func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -&gt; Bool {
/* Siren code should go below window?.makeKeyAndVisible() */
// Siren is a singleton
let siren = Siren.shared
// Siren is a singleton
let siren = Siren.shared
// Optional: Defaults to .option
siren.alertType = &lt;#Siren.AlertType_Enum_Value#&gt;
// Optional: Defaults to .option
siren.alertType = &lt;#Siren.AlertType_Enum_Value#&gt;
// Optional: Change the various UIAlertController and UIAlertAction messaging. One or more values can be changes. If only a subset of values are changed, the defaults with which Siren comes with will be used.
siren.alertMessaging = SirenAlertMessaging(updateTitle: "New Fancy Title",
updateMessage: "New message goes here!",
updateButtonMessage: "Update Now, Plz!?",
nextTimeButtonMessage: "OK, next time it is!",
skipVersionButtonMessage: "Please don't push skip, please don't!")
// Optional: Change the various UIAlertController and UIAlertAction messaging. One or more values can be changes. If only a subset of values are changed, the defaults with which Siren comes with will be used.
siren.alertMessaging = SirenAlertMessaging(updateTitle: NSAttributedString(string: "New Fancy Title"),
updateMessage: NSAttributedString(string: "New message goes here!"),
updateButtonMessage: NSAttributedString(string: "Update Now, Plz!?"),
nextTimeButtonMessage: NSAttributedString(string: "OK, next time it is!"),
skipVersionButtonMessage: NSAttributedString(string: "Please don't push skip, please don't!"))
// Optional: Set this variable if you would only like to show an alert if your app has been available on the store for a few days.
// This default value is set to 1 to avoid this issue: https://github.com/ArtSabintsev/Siren#words-of-caution
// To show the update immediately after Apple has updated their JSON, set this value to 0. Not recommended due to aforementioned reason in https://github.com/ArtSabintsev/Siren#words-of-caution.
siren.showAlertAfterCurrentVersionHasBeenReleasedForDays = 3
// Replace .immediately with .daily or .weekly to specify a maximum daily or weekly frequency for version checks.
// DO NOT CALL THIS METHOD IN didFinishLaunchingWithOptions IF YOU ALSO PLAN TO CALL IT IN applicationDidBecomeActive.
// Optional: Set this variable if you would only like to show an alert if your app has been available on the store for a few days.
// This default value is set to 1 to avoid this issue: https://github.com/ArtSabintsev/Siren#words-of-caution
// To show the update immediately after Apple has updated their JSON, set this value to 0. Not recommended due to aforementioned reason in https://github.com/ArtSabintsev/Siren#words-of-caution.
siren.showAlertAfterCurrentVersionHasBeenReleasedForDays = 3
// Replace .immediately with .daily or .weekly to specify a maximum daily or weekly frequency for version checks.
// DO NOT CALL THIS METHOD IN didFinishLaunchingWithOptions IF YOU ALSO PLAN TO CALL IT IN applicationDidBecomeActive.
siren.checkVersion(checkType: .immediately)
return true
@@ -264,7 +250,8 @@ func applicationDidBecomeActive(application: UIApplication) {
/*
Perform daily (.daily) or weekly (.weekly) checks for new version of your app.
Useful if user returns to your app from the background after extended period of time.
Place in applicationDidBecomeActive(_:). */
Place in applicationDidBecomeActive(_:).
*/
Siren.shared.checkVersion(checkType: .daily)
}
@@ -451,7 +438,7 @@ func applicationWillEnterForeground(application: UIApplication) {
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
File diff suppressed because one or more lines are too long
@@ -0,0 +1,47 @@
{
"warnings": [
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Models/SirenLookupModel.swift",
"line": 13,
"symbol": "SirenLookupModel",
"symbol_kind": "source.lang.swift.decl.struct",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Protocols/SirenDelegate.swift",
"line": 23,
"symbol": "UpdateType.major",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Protocols/SirenDelegate.swift",
"line": 24,
"symbol": "UpdateType.minor",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Protocols/SirenDelegate.swift",
"line": 25,
"symbol": "UpdateType.patch",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Protocols/SirenDelegate.swift",
"line": 26,
"symbol": "UpdateType.revision",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Protocols/SirenDelegate.swift",
"line": 27,
"symbol": "UpdateType.unknown",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
}
],
"source_directory": "/Users/Arthur/Documents/oss/siren"
}
Binary file not shown.
+39 -52
View File
@@ -13,7 +13,7 @@
<a title="Siren Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">Siren Docs</a> (52% documented)</p>
<p><a href="index.html">Siren Docs</a> (100% documented)</p>
</div>
</header>
<div class="content-wrapper">
@@ -91,9 +91,9 @@
<h1 id='siren' class='heading'>Siren 🚨</h1>
<h3 id='notify-users-when-a-new-version-of-your-app-is-available-and-prompt-them-to-upgrade' class='heading'>Notify users when a new version of your app is available and prompt them to upgrade.</h3>
<p><img src="https://travis-ci.org/ArtSabintsev/Siren.svg?branch=master" alt="Travis CI Status"></p>
<p><a href="https://travis-ci.org/ArtSabintsev/Siren"><img src="https://travis-ci.org/ArtSabintsev/Siren.svg?branch=master" alt="Travis CI Status"></a></p>
<p><img src="https://img.shields.io/badge/Swift-2.3%2C%203.1%2C%203.2%2C%204.1-orange.svg" alt="Swift Support"> <img src="https://github.com/ArtSabintsev/Siren/blob/master/Documentation/badge.svg" alt="Documentation"></p>
<p><img src="https://img.shields.io/badge/Swift-4.2%2C%204.1%2C%203.2%2C%203.1%202.3-orange.svg" alt="Swift Support"> <img src="https://github.com/ArtSabintsev/Siren/blob/master/docs/badge.svg" alt="Documentation"></p>
<p><a href="https://cocoapods.org/pods/Siren"><img src="https://img.shields.io/cocoapods/v/Siren.svg" alt="CocoaPods"></a> <a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage Compatible"></a> <a href="https://swift.org/package-manager/"><img src="https://img.shields.io/badge/SwiftPM-Compatible-brightgreen.svg" alt="SwiftPM Compatible"></a></p>
@@ -170,11 +170,16 @@
</tr>
</thead><tbody>
<tr>
<td>4.1</td>
<td>4.2</td>
<td>master</td>
<td><strong>Yes</strong></td>
</tr>
<tr>
<td>4.1</td>
<td>swift4.1</td>
<td>No</td>
</tr>
<tr>
<td>3.2</td>
<td>swift3.2</td>
<td>No</td>
@@ -191,38 +196,18 @@
</tr>
</tbody></table>
<h3 id='cocoapods' class='heading'>CocoaPods</h3>
<p>For Swift 4.1 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span>
</code></pre>
<p>For Swift 3.2 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.2'</span>
</code></pre>
<p>For Swift 3.1 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.1'</span>
</code></pre>
<p>For Swift 2.3 support:</p>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift2.3'</span>
<pre class="highlight ruby"><code><span class="n">pod</span> <span class="s1">'Siren'</span> <span class="c1"># Swift 4.2</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift4.1'</span> <span class="c1"># Swift 4.1</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.2'</span> <span class="c1"># Swift 3.2</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift3.1'</span> <span class="c1"># Swift 3.1</span>
<span class="n">pod</span> <span class="s1">'Siren'</span><span class="p">,</span> <span class="ss">:git</span> <span class="o">=&gt;</span> <span class="s1">'https://github.com/ArtSabintsev/Siren.git'</span><span class="p">,</span> <span class="ss">:branch</span> <span class="o">=&gt;</span> <span class="s1">'swift2.3'</span> <span class="c1"># Swift 2.3</span>
</code></pre>
<h3 id='carthage' class='heading'>Carthage</h3>
<p>For Swift 4.1 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span>
</code></pre>
<p>For Swift 3.2 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.2"</span>
</code></pre>
<p>For Swift 3.1 support:</p>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.1"</span>
</code></pre>
<p>For Swift 2.3 support:</p>
<pre class="highlight ruby"><code><span class="n">github</span> <span class="s2">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s2">"swift2.3"</span>
<pre class="highlight swift"><code><span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span> <span class="c1">// Swift 4.2</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift4.1"</span> <span class="c1">// Swift 4.1</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.2"</span> <span class="c1">// Swift 3.2</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift3.1"</span> <span class="c1">// Swift 3.1</span>
<span class="n">github</span> <span class="s">"ArtSabintsev/Siren"</span><span class="p">,</span> <span class="s">"swift2.3"</span> <span class="c1">// Swift 2.3</span>
</code></pre>
<h3 id='swift-package-manager' class='heading'>Swift Package Manager</h3>
<pre class="highlight swift"><code><span class="o">.</span><span class="kt">Package</span><span class="p">(</span><span class="nv">url</span><span class="p">:</span> <span class="s">"https://github.com/ArtSabintsev/Siren.git"</span><span class="p">,</span> <span class="nv">majorVersion</span><span class="p">:</span> <span class="mi">3</span><span class="p">)</span>
@@ -235,26 +220,27 @@
<pre class="highlight plaintext"><code>func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -&gt; Bool {
/* Siren code should go below window?.makeKeyAndVisible() */
// Siren is a singleton
let siren = Siren.shared
// Siren is a singleton
let siren = Siren.shared
// Optional: Defaults to .option
siren.alertType = &lt;#Siren.AlertType_Enum_Value#&gt;
// Optional: Defaults to .option
siren.alertType = &lt;#Siren.AlertType_Enum_Value#&gt;
// Optional: Change the various UIAlertController and UIAlertAction messaging. One or more values can be changes. If only a subset of values are changed, the defaults with which Siren comes with will be used.
siren.alertMessaging = SirenAlertMessaging(updateTitle: "New Fancy Title",
updateMessage: "New message goes here!",
updateButtonMessage: "Update Now, Plz!?",
nextTimeButtonMessage: "OK, next time it is!",
skipVersionButtonMessage: "Please don't push skip, please don't!")
// Optional: Change the various UIAlertController and UIAlertAction messaging. One or more values can be changes. If only a subset of values are changed, the defaults with which Siren comes with will be used.
siren.alertMessaging = SirenAlertMessaging(updateTitle: NSAttributedString(string: "New Fancy Title"),
updateMessage: NSAttributedString(string: "New message goes here!"),
updateButtonMessage: NSAttributedString(string: "Update Now, Plz!?"),
nextTimeButtonMessage: NSAttributedString(string: "OK, next time it is!"),
skipVersionButtonMessage: NSAttributedString(string: "Please don't push skip, please don't!"))
// Optional: Set this variable if you would only like to show an alert if your app has been available on the store for a few days.
// This default value is set to 1 to avoid this issue: https://github.com/ArtSabintsev/Siren#words-of-caution
// To show the update immediately after Apple has updated their JSON, set this value to 0. Not recommended due to aforementioned reason in https://github.com/ArtSabintsev/Siren#words-of-caution.
siren.showAlertAfterCurrentVersionHasBeenReleasedForDays = 3
// Replace .immediately with .daily or .weekly to specify a maximum daily or weekly frequency for version checks.
// DO NOT CALL THIS METHOD IN didFinishLaunchingWithOptions IF YOU ALSO PLAN TO CALL IT IN applicationDidBecomeActive.
// Optional: Set this variable if you would only like to show an alert if your app has been available on the store for a few days.
// This default value is set to 1 to avoid this issue: https://github.com/ArtSabintsev/Siren#words-of-caution
// To show the update immediately after Apple has updated their JSON, set this value to 0. Not recommended due to aforementioned reason in https://github.com/ArtSabintsev/Siren#words-of-caution.
siren.showAlertAfterCurrentVersionHasBeenReleasedForDays = 3
// Replace .immediately with .daily or .weekly to specify a maximum daily or weekly frequency for version checks.
// DO NOT CALL THIS METHOD IN didFinishLaunchingWithOptions IF YOU ALSO PLAN TO CALL IT IN applicationDidBecomeActive.
siren.checkVersion(checkType: .immediately)
return true
@@ -264,7 +250,8 @@ func applicationDidBecomeActive(application: UIApplication) {
/*
Perform daily (.daily) or weekly (.weekly) checks for new version of your app.
Useful if user returns to your app from the background after extended period of time.
Place in applicationDidBecomeActive(_:). */
Place in applicationDidBecomeActive(_:).
*/
Siren.shared.checkVersion(checkType: .daily)
}
@@ -451,7 +438,7 @@ func applicationWillEnterForeground(application: UIApplication) {
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-07-25)</p>
<p>&copy; 2018 <a class="link" href="https://github.com/ArtSabintsev/Siren" target="_blank" rel="external">Arthur Ariel Sabintsev and Aaron Brager</a>. All rights reserved. (Last updated: 2018-09-28)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -413
View File
@@ -1,418 +1,6 @@
{
"warnings": [
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 541,
"symbol": "Siren.LanguageType.arabic",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 542,
"symbol": "Siren.LanguageType.armenian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 543,
"symbol": "Siren.LanguageType.basque",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 544,
"symbol": "Siren.LanguageType.chineseSimplified",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 545,
"symbol": "Siren.LanguageType.chineseTraditional",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 546,
"symbol": "Siren.LanguageType.croatian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 547,
"symbol": "Siren.LanguageType.czech",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 548,
"symbol": "Siren.LanguageType.danish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 549,
"symbol": "Siren.LanguageType.dutch",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 550,
"symbol": "Siren.LanguageType.english",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 551,
"symbol": "Siren.LanguageType.estonian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 552,
"symbol": "Siren.LanguageType.finnish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 553,
"symbol": "Siren.LanguageType.french",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 554,
"symbol": "Siren.LanguageType.german",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 555,
"symbol": "Siren.LanguageType.greek",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 556,
"symbol": "Siren.LanguageType.hebrew",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 557,
"symbol": "Siren.LanguageType.hungarian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 558,
"symbol": "Siren.LanguageType.indonesian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 559,
"symbol": "Siren.LanguageType.italian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 560,
"symbol": "Siren.LanguageType.japanese",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 561,
"symbol": "Siren.LanguageType.korean",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 562,
"symbol": "Siren.LanguageType.latvian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 563,
"symbol": "Siren.LanguageType.lithuanian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 564,
"symbol": "Siren.LanguageType.malay",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 565,
"symbol": "Siren.LanguageType.norwegian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 566,
"symbol": "Siren.LanguageType.persian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 567,
"symbol": "Siren.LanguageType.persianAfghanistan",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 568,
"symbol": "Siren.LanguageType.persianIran",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 569,
"symbol": "Siren.LanguageType.polish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 570,
"symbol": "Siren.LanguageType.portugueseBrazil",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 571,
"symbol": "Siren.LanguageType.portuguesePortugal",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 572,
"symbol": "Siren.LanguageType.russian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 573,
"symbol": "Siren.LanguageType.serbianCyrillic",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 574,
"symbol": "Siren.LanguageType.serbianLatin",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 575,
"symbol": "Siren.LanguageType.slovenian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 576,
"symbol": "Siren.LanguageType.spanish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 577,
"symbol": "Siren.LanguageType.swedish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 578,
"symbol": "Siren.LanguageType.thai",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 579,
"symbol": "Siren.LanguageType.turkish",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 580,
"symbol": "Siren.LanguageType.urdu",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 581,
"symbol": "Siren.LanguageType.ukrainian",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/Siren.swift",
"line": 582,
"symbol": "Siren.LanguageType.vietnamese",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenDelegate.swift",
"line": 23,
"symbol": "UpdateType.major",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenDelegate.swift",
"line": 24,
"symbol": "UpdateType.minor",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenDelegate.swift",
"line": 25,
"symbol": "UpdateType.patch",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenDelegate.swift",
"line": 26,
"symbol": "UpdateType.revision",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenDelegate.swift",
"line": 27,
"symbol": "UpdateType.unknown",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 12,
"symbol": "SirenError",
"symbol_kind": "source.lang.swift.decl.struct",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 27,
"symbol": "SirenError.Known.appStoreAppIDFailure",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 28,
"symbol": "SirenError.Known.appStoreDataRetrievalFailure",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 29,
"symbol": "SirenError.Known.appStoreJSONParsingFailure",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 30,
"symbol": "SirenError.Known.appStoreDataRetrievalEmptyResults",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 31,
"symbol": "SirenError.Known.appStoreOSVersionNumberFailure",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 32,
"symbol": "SirenError.Known.appStoreOSVersionUnsupported",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 33,
"symbol": "SirenError.Known.appStoreVersionArrayFailure",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 34,
"symbol": "SirenError.Known.malformedURL",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 35,
"symbol": "SirenError.Known.noUpdateAvailable",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenError.swift",
"line": 36,
"symbol": "SirenError.Known.recentlyCheckedAlready",
"symbol_kind": "source.lang.swift.decl.enumelement",
"warning": "undocumented"
},
{
"file": "/Users/Arthur/Documents/oss/siren/Sources/SirenLookupModel.swift",
"line": 13,
"symbol": "SirenLookupModel",
"symbol_kind": "source.lang.swift.decl.struct",
"warning": "undocumented"
}
],
"source_directory": "/Users/Arthur/Documents/oss/siren"
}