Changed update feature

This commit is contained in:
Lumaa 2024-04-22 12:26:35 +02:00
parent 0394608038
commit 1af892bbd1
2 changed files with 4 additions and 3 deletions

View File

@ -93,9 +93,10 @@ struct DiscoveryView: View {
}
.environment(\.openURL, OpenURLAction { url in
// Open internal URL.
return .systemAction
// guard preferences.browserType == .inApp else { return .systemAction }
let handled = navigator.handle(url: url)
return handled
// let handled = navigator.handle(url: url)
// return handled
})
.environmentObject(navigator)
.task {

View File

@ -41,7 +41,7 @@ struct UpdateView: View {
newFeature(systemImage: "info.circle", title: "\"About Threaded\" redesign", text: "This informational view has been majorly changed!")
newFeature(systemImage: "checklist", title: "Polls fixes", text: "A few issues with polls have been fixed")
newFeature(systemImage: "number", title: "Read hashtags", text: "You can now view posts using a specific hashtag in the Discovery page.")
}
.frame(height: 500)
}