From 0ec028a6684ecc976f3aaeb35b0f295734b0417a Mon Sep 17 00:00:00 2001 From: Evgeny Date: Thu, 20 Aug 2026 11:59:52 +0100 Subject: [PATCH] ui: update post link in whats new (#7400) Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com> --- apps/ios/Shared/Views/Onboarding/WhatsNewView.swift | 2 +- .../kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift index 4495fd8cc2..ba87729012 100644 --- a/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift +++ b/apps/ios/Shared/Views/Onboarding/WhatsNewView.swift @@ -672,7 +672,7 @@ private let versionDescriptions: [VersionDescription] = [ ), VersionDescription( version: isInUS ? "v7.0.1" : "v7.0", - post: nil, + post: URL(string: "https://simplex.chat/blog/20260819-simplex-chat-crowdfunding.html"), features: (isInUS ? [ .view(FeatureView( icon: nil, diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt index 8e54fb4a7e..ea7d935efe 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt @@ -944,7 +944,7 @@ private val versionDescriptions: List = listOf( VersionDescription( // the trailing space differs from the previously released "v7.0", so that What's new is shown again version = if (isInUs()) "v7.0.1" else "v7.0", - post = null, + post = "https://simplex.chat/blog/20260819-simplex-chat-crowdfunding.html", features = listOf( VersionFeature.FeatureView( icon = null,