modified: Config.xcconfig

This commit is contained in:
neon443
2025-05-15 17:22:25 +01:00
parent c7fddda601
commit bb598250a6
2 changed files with 16 additions and 15 deletions

View File

@@ -12,6 +12,6 @@ TEAM_ID = 8JGND254B7
BUNDLE_ID = com.neon443.NearFuture
BUNDLE_ID_WIDGETS = com.neon443.NearFuture.widgets
GROUP_ID = group.NearFuture
VERSION = 4.3.5
VERSION = 4.3.6
NAME = Near Future
BUILD_NUMBER = 1

View File

@@ -41,20 +41,21 @@ struct SettingsView: View {
}
func changeIcon(to: String) {
guard UIApplication.shared.supportsAlternateIcons else {
print("doesnt tsupport alternate icons")
return
}
print(UIApplication.shared.supportsAlternateIcons)
guard !(to == "orange") else {
UIApplication.shared.setAlternateIconName(nil) { error in
print(error as Any)
}
return
}
UIApplication.shared.setAlternateIconName(to) { error in
print(error as Any)
}
UIApplication.shared.setAlternateIconName(to)
// guard UIApplication.shared.supportsAlternateIcons else {
// print("doesnt tsupport alternate icons")
// return
// }
// print(UIApplication.shared.supportsAlternateIcons)
// guard !(to == "orange") else {
// UIApplication.shared.setAlternateIconName(nil) { error in
// print(error as Any)
// }
// return
// }
// UIApplication.shared.setAlternateIconName(to) { error in
// print(error as Any)
// }
}
var body: some View {