ssfdafasfasdfaf

This commit is contained in:
neon443
2025-05-15 17:06:58 +01:00
parent 033a01463f
commit c7fddda601
4 changed files with 9 additions and 5 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.4
VERSION = 4.3.5
NAME = Near Future
BUILD_NUMBER = 1

View File

@@ -44,7 +44,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"

View File

@@ -26,9 +26,9 @@ struct ArchiveView: View {
.transition(.moveAndFadeReversed)
.id(event.complete)
}
.padding(.horizontal)
}
.animation(.default, value: filteredEvents)
.padding(.horizontal)
}
}
.scrollContentBackground(.hidden)

View File

@@ -47,10 +47,14 @@ struct SettingsView: View {
}
print(UIApplication.shared.supportsAlternateIcons)
guard !(to == "orange") else {
UIApplication.shared.setAlternateIconName(nil)
UIApplication.shared.setAlternateIconName(nil) { error in
print(error as Any)
}
return
}
UIApplication.shared.setAlternateIconName(to)
UIApplication.shared.setAlternateIconName(to) { error in
print(error as Any)
}
}
var body: some View {