mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-08-28 20:38:20 +00:00
ui: whats new in v6.0, rename "Deleted chats" to "Archived contacts" (#4599)
* ios: whats new in v6.0 * android, rename Deleted chats to Archive contacts
This commit is contained in:
@@ -1041,7 +1041,7 @@ private func deleteContactMaybeErrorAlert(
|
||||
private func deleteConversationNotice(_ contact: Contact) -> Alert {
|
||||
return Alert(
|
||||
title: Text("Conversation deleted!"),
|
||||
message: Text("You can still send messages to \(contact.displayName) from the Deleted chats."),
|
||||
message: Text("You can send messages to \(contact.displayName) from Archived contacts."),
|
||||
primaryButton: .default(Text("Don't show again")) {
|
||||
showDeleteConversationNoticeDefault.set(false)
|
||||
},
|
||||
|
||||
@@ -121,7 +121,7 @@ struct NewChatSheet: View {
|
||||
NavigationLink {
|
||||
DeletedChats()
|
||||
} label: {
|
||||
newChatActionButton("archivebox", color: theme.colors.secondary) { Text("Deleted chats") }
|
||||
newChatActionButton("archivebox", color: theme.colors.secondary) { Text("Archived contacts") }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -428,6 +428,42 @@ private let versionDescriptions: [VersionDescription] = [
|
||||
)
|
||||
]
|
||||
),
|
||||
VersionDescription(
|
||||
version: "v6.0",
|
||||
post: URL(string: "https://simplex.chat/blog/20240814-simplex-chat-vision-funding-v6-private-routing-new-user-experience.html"),
|
||||
features: [
|
||||
FeatureDescription(
|
||||
icon: "arrow.forward",
|
||||
title: "Private message routing 🚀",
|
||||
description: "It protects your IP address and connections."
|
||||
),
|
||||
FeatureDescription(
|
||||
icon: "person.text.rectangle",
|
||||
title: "Your contacts your way",
|
||||
description: "- Search contacts when starting chat.\n- Archive contacts to chat later."
|
||||
),
|
||||
FeatureDescription(
|
||||
icon: "platter.filled.bottom.iphone",
|
||||
title: "Reachable chat toolbar 👋",
|
||||
description: "Use the app with one hand."
|
||||
),
|
||||
FeatureDescription(
|
||||
icon: "link",
|
||||
title: "Connect to your friends faster",
|
||||
description: "Even when they are offline."
|
||||
),
|
||||
FeatureDescription(
|
||||
icon: "trash",
|
||||
title: "Moderate like a pro ✋",
|
||||
description: "Delete up to 20 messages at once."
|
||||
),
|
||||
FeatureDescription(
|
||||
icon: "network",
|
||||
title: "Control your network",
|
||||
description: "Connection and servers status."
|
||||
)
|
||||
]
|
||||
),
|
||||
]
|
||||
|
||||
private let lastVersion = versionDescriptions.last!.version
|
||||
|
||||
Reference in New Issue
Block a user