Open the release notes list rather than attempting to open the latest release notes page (on tapping Release Notes in settings). Because I keep messing up the tag for the latest release and we end up with a 404.
This commit is contained in:
parent
c2db9dbec0
commit
e5977d86c4
@ -20,19 +20,9 @@ extension URL {
|
|||||||
scheme == "mailto" ? self.string.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)?.url : nil
|
scheme == "mailto" ? self.string.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)?.url : nil
|
||||||
}
|
}
|
||||||
|
|
||||||
/// URL pointing to current app version release notes.
|
/// Reverse chronological list of release notes.
|
||||||
static var releaseNotes: URL {
|
static var releaseNotes = URL(string: "https://github.com/Ranchero-Software/NetNewsWire/releases/")!
|
||||||
let appVersion = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? ""
|
|
||||||
var gitHub = "https://github.com/Ranchero-Software/NetNewsWire/releases/tag/"
|
|
||||||
#if os(macOS)
|
|
||||||
gitHub += "mac-\(String(describing: appVersion))"
|
|
||||||
return URL(string: gitHub)!
|
|
||||||
#else
|
|
||||||
gitHub += "ios-\(String(describing: appVersion))"
|
|
||||||
return URL(string: gitHub)!
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
func valueFor(_ parameter: String) -> String? {
|
func valueFor(_ parameter: String) -> String? {
|
||||||
guard let components = URLComponents(url: self, resolvingAgainstBaseURL: false),
|
guard let components = URLComponents(url: self, resolvingAgainstBaseURL: false),
|
||||||
let queryItems = components.queryItems,
|
let queryItems = components.queryItems,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user