It's more reliable to use the plist which contains the min version to determine if an update notification should be shown. Signed-off-by: kingbri <bdashore3@proton.me>
14 lines
270 B
Swift
14 lines
270 B
Swift
//
|
|
// OperatingSystemVersion.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 3/23/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension OperatingSystemVersion {
|
|
func toString() -> String {
|
|
return "\(self.majorVersion).\(self.minorVersion).\(self.patchVersion)"
|
|
}
|
|
}
|