[PR #3999] [MERGED] PM-12760 Add way to re-show the onboarding carousel via debug menu #4598

Closed
opened 2025-11-26 23:47:06 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/3999
Author: @dseverns-livefront
Created: 9/30/2024
Status: Merged
Merged: 10/3/2024
Merged by: @dseverns-livefront

Base: mainHead: PM-12760-reset-intro-carousel


📝 Commits (3)

  • 99dea80 PM-12760 add button that will reset app state so the onboarding carousel will show again when enabled.
  • e6f482e hmmm
  • 88bc832 fb

📊 Changes

9 files changed (+170 additions, -13 deletions)

View changed files

📝 app/src/main/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepository.kt (+7 -0)
📝 app/src/main/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepositoryImpl.kt (+9 -0)
📝 app/src/main/java/com/x8bit/bitwarden/data/platform/repository/di/PlatformRepositoryModule.kt (+2 -0)
📝 app/src/main/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuScreen.kt (+45 -5)
📝 app/src/main/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuViewModel.kt (+18 -2)
📝 app/src/main/res/values/strings_non_localized.xml (+2 -0)
📝 app/src/test/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepositoryTest.kt (+21 -0)
📝 app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuScreenTest.kt (+41 -4)
📝 app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuViewModelTest.kt (+25 -2)

📄 Description

🎟️ Tracking

https://bitwarden.atlassian.net/browse/PM-12760

📔 Objective

  • Allow users of debug menu the ability to revisit the Onboarding carousel flow after already logging in.

📸 Screenshots

https://github.com/user-attachments/assets/e7aebd95-3fe8-4067-81e6-25c0863fc1ac

Reminders before review

  • Contributor guidelines followed
  • All formatters and local linters executed and passed
  • Written new unit and / or integration tests where applicable
  • Used internationalization (i18n) for all UI strings
  • CI builds passed
  • Communicated to DevOps any deployment requirements
  • Updated any necessary documentation or informed the documentation team

🦮 Reviewer guidelines

  • 👍 (:+1:) or similar for great changes
  • 📝 (:memo:) or ℹ️ (:information_source:) for notes or general info
  • (:question:) for questions
  • 🤔 (:thinking:) or 💭 (:thought_balloon:) for more open inquiry that's not quite a confirmed
    issue and could potentially benefit from discussion
  • 🎨 (:art:) for suggestions / improvements
  • (:x:) or ⚠️ (:warning:) for more significant problems or concerns needing attention
  • 🌱 (:seedling:) or ♻️ (:recycle:) for future improvements or indications of technical debt
  • ⛏ (:pick:) for minor or nitpick changes

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/3999 **Author:** [@dseverns-livefront](https://github.com/dseverns-livefront) **Created:** 9/30/2024 **Status:** ✅ Merged **Merged:** 10/3/2024 **Merged by:** [@dseverns-livefront](https://github.com/dseverns-livefront) **Base:** `main` ← **Head:** `PM-12760-reset-intro-carousel` --- ### 📝 Commits (3) - [`99dea80`](https://github.com/bitwarden/android/commit/99dea8052c0f80ab8a452dfb60aeb4f3cb8235c4) PM-12760 add button that will reset app state so the onboarding carousel will show again when enabled. - [`e6f482e`](https://github.com/bitwarden/android/commit/e6f482e9e5a8624b615c2dc738cdff6a54ff2923) hmmm - [`88bc832`](https://github.com/bitwarden/android/commit/88bc832368f3e3cdc602f0bf3309eaf3ea3ba30b) fb ### 📊 Changes **9 files changed** (+170 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `app/src/main/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepository.kt` (+7 -0) 📝 `app/src/main/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepositoryImpl.kt` (+9 -0) 📝 `app/src/main/java/com/x8bit/bitwarden/data/platform/repository/di/PlatformRepositoryModule.kt` (+2 -0) 📝 `app/src/main/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuScreen.kt` (+45 -5) 📝 `app/src/main/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuViewModel.kt` (+18 -2) 📝 `app/src/main/res/values/strings_non_localized.xml` (+2 -0) 📝 `app/src/test/java/com/x8bit/bitwarden/data/platform/repository/DebugMenuRepositoryTest.kt` (+21 -0) 📝 `app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuScreenTest.kt` (+41 -4) 📝 `app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/debugmenu/DebugMenuViewModelTest.kt` (+25 -2) </details> ### 📄 Description ## 🎟️ Tracking https://bitwarden.atlassian.net/browse/PM-12760 <!-- Paste the link to the Jira or GitHub issue or otherwise describe / point to where this change is coming from. --> ## 📔 Objective - Allow users of debug menu the ability to revisit the Onboarding carousel flow after already logging in. <!-- Describe what the purpose of this PR is, for example what bug you're fixing or new feature you're adding. --> ## 📸 Screenshots https://github.com/user-attachments/assets/e7aebd95-3fe8-4067-81e6-25c0863fc1ac <!-- Required for any UI changes; delete if not applicable. Use fixed width images for better display. --> ## ⏰ Reminders before review - Contributor guidelines followed - All formatters and local linters executed and passed - Written new unit and / or integration tests where applicable - Used internationalization (i18n) for all UI strings - CI builds passed - Communicated to DevOps any deployment requirements - Updated any necessary documentation or informed the documentation team ## 🦮 Reviewer guidelines <!-- Suggested interactions but feel free to use (or not) as you desire! --> - 👍 (`:+1:`) or similar for great changes - 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info - ❓ (`:question:`) for questions - 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion - 🎨 (`:art:`) for suggestions / improvements - ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention - 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt - ⛏ (`:pick:`) for minor or nitpick changes --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-26 23:47:06 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#4598