From 1915fd4d142844dfdc933f6c8ad8a5c3f66db8fd Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Mon, 21 Oct 2024 11:08:29 -0400 Subject: [PATCH 1/2] enable new onboarding feature flag --- Nos/Service/FeatureFlags.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nos/Service/FeatureFlags.swift b/Nos/Service/FeatureFlags.swift index d3038673b..65ce692f8 100644 --- a/Nos/Service/FeatureFlags.swift +++ b/Nos/Service/FeatureFlags.swift @@ -31,7 +31,7 @@ protocol FeatureFlags { /// Feature flags and their values. private var featureFlags: [FeatureFlag: Bool] = [ - .newOnboardingFlow: false + .newOnboardingFlow: true ] /// Returns true if the feature is enabled. From 4a1f1d0d3eb18cc7c2a380e415fac11dacdb0da4 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Mon, 21 Oct 2024 11:18:06 -0400 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e36562e2c..16eb1bbca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a tip to Discover to prompt first-time users to go to their Feed. [#1601](https://github.com/planetary-social/nos/issues/1601) - Added a tip to the Feed to welcome first-time users and explain how the Feed works. [#1602](https://github.com/planetary-social/nos/issues/1602) - Added a tag to published contact lists to help us detect the source of lost contact lists. [cleanstr#51](https://github.com/planetary-social/cleanstr/issues/51) +- Updated the onboarding screens with a new design. - Removed integration with Universal Name Space [#1636](https://github.com/planetary-social/nos/issues/1636) - Remove most usage of xcstringstool-generated strings to improve performance. [#1458](https://github.com/planetary-social/nos/issues/1458)