Ferrite-backup/Ferrite/Extensions/OperatingSystemVersion.swift
kingbri ff13884b2b Application: Use the plist minVersion to restrict updates
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>
2023-03-23 11:52:52 -04:00

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)"
}
}