X-Git-Url: https://git.r.bdr.sh/rbdr/captura/blobdiff_plain/ba17de891507da74fb07423803fd636a4457354c..5802c153cae64142d84e3cd5f762939501ee7e53:/Captura/Data/CapturaSettings.swift?ds=inline diff --git a/Captura/Data/CapturaSettings.swift b/Captura/Data/CapturaSettings.swift index 85368ea..c8af096 100644 --- a/Captura/Data/CapturaSettings.swift +++ b/Captura/Data/CapturaSettings.swift @@ -1,9 +1,29 @@ +/* + Copyright (C) 2024 Rubén Beltrán del Río + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see https://captura.tranquil.systems. + */ import Foundation struct CapturaSettings { static var frameRate: Int { get { - UserDefaults.standard.integer(forKey: "frameRate") + if UserDefaults.standard.object(forKey: "frameRate") == nil { + return 10 + } else { + return min(10, max(4, UserDefaults.standard.integer(forKey: "frameRate"))) + } } set { UserDefaults.standard.setValue(newValue, forKey: "frameRate") @@ -62,7 +82,11 @@ struct CapturaSettings { static var shouldKeepLocalFiles: Bool { get { - UserDefaults.standard.bool(forKey: "keepFiles") + if UserDefaults.standard.object(forKey: "keepFiles") == nil { + return true + } else { + return UserDefaults.standard.bool(forKey: "keepFiles") + } } set { UserDefaults.standard.set(newValue, forKey: "keepFiles") @@ -70,7 +94,12 @@ struct CapturaSettings { } static var shouldAllowURLAutomation: Bool { - UserDefaults.standard.bool(forKey: "allowURLAutomation") + get { + UserDefaults.standard.bool(forKey: "allowURLAutomation") + } + set { + UserDefaults.standard.setValue(newValue, forKey: "allowURLAutomation") + } } static func apply(_ config: ConfigureAction) {