v1.5.0 Release

This commit is contained in:
2024-02-22 23:56:53 +02:00
parent 1b96a031d2
commit bec08b56be
27 changed files with 968 additions and 825 deletions

View File

@ -14,7 +14,7 @@ class UserDefaultsManager {
var UDPEnabled: Bool {
get {
return boolForKey(Keys.UDPEnabled, defaultValue: false)
return boolForKey(Keys.UDPEnabled, defaultValue: true)
}
set {
setBool(newValue, forKey: Keys.UDPEnabled)
@ -23,7 +23,7 @@ class UserDefaultsManager {
var EchobotAdded: Bool {
get {
return boolForKey(Keys.EchobotAdded, defaultValue: false)
return boolForKey(Keys.EchobotAdded, defaultValue: true)
}
set {
setBool(newValue, forKey: Keys.EchobotAdded)