[PR #5367] [MERGED] fix: launch review 0.5.8 #6781

Closed
opened 2026-03-23 23:16:39 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5367
Author: @Xazin
Created: 5/19/2024
Status: Merged
Merged: 5/21/2024
Merged by: @Xazin

Base: mainHead: feat/launch-review-0.5.8


📝 Commits (4)

  • 024ea29 fix: launch review 0.5.8
  • 057e9c8 test: add regression test for more actions
  • 9d4c05b chore: missing localization
  • 05813de chore: code review

📊 Changes

19 files changed (+365 additions, -145 deletions)

View changed files

frontend/appflowy_flutter/integration_test/desktop/document/document_more_actions_test.dart (+32 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_test_runner.dart (+4 -2)
📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+45 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/font/font_picker_screen.dart (+1 -5)
📝 frontend/appflowy_flutter/lib/plugins/base/emoji/emoji_picker.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/user/application/user_listener.dart (+5 -9)
frontend/appflowy_flutter/lib/util/theme_extension.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/date_time/time_format_ext.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/workspace/workspace_settings_bloc.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/_sidebar_workspace_icon.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_account_view.dart (+41 -40)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_manage_data_view.dart (+9 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_workspace_view.dart (+168 -72)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/af_dropdown_menu_entry.dart (+13 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_dropdown.dart (+12 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart (+0 -3)
frontend/resources/flowy_icons/24x/settings_selected_theme.svg (+10 -0)
📝 frontend/resources/translations/en.json (+5 -3)
📝 frontend/rust-lib/flowy-folder/src/notification.rs (+1 -1)

📄 Description

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/AppFlowy-IO/AppFlowy/pull/5367 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 5/19/2024 **Status:** ✅ Merged **Merged:** 5/21/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `feat/launch-review-0.5.8` --- ### 📝 Commits (4) - [`024ea29`](https://github.com/AppFlowy-IO/AppFlowy/commit/024ea29a2369776e6d001baf07ebe345dd989482) fix: launch review 0.5.8 - [`057e9c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/057e9c88de5ff2ab836859f38b931297698dc33c) test: add regression test for more actions - [`9d4c05b`](https://github.com/AppFlowy-IO/AppFlowy/commit/9d4c05b85bb29573a89da86c37c0788e311590dd) chore: missing localization - [`05813de`](https://github.com/AppFlowy-IO/AppFlowy/commit/05813de674c2e9216b90a642ca4e410be5f2d481) chore: code review ### 📊 Changes **19 files changed** (+365 additions, -145 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/integration_test/desktop/document/document_more_actions_test.dart` (+32 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_test_runner.dart` (+4 -2) 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+45 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/font/font_picker_screen.dart` (+1 -5) 📝 `frontend/appflowy_flutter/lib/plugins/base/emoji/emoji_picker.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/user/application/user_listener.dart` (+5 -9) ➕ `frontend/appflowy_flutter/lib/util/theme_extension.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/date_time/time_format_ext.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/workspace/workspace_settings_bloc.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/_sidebar_workspace_icon.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_account_view.dart` (+41 -40) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_manage_data_view.dart` (+9 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_workspace_view.dart` (+168 -72) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/af_dropdown_menu_entry.dart` (+13 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_dropdown.dart` (+12 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart` (+0 -3) ➕ `frontend/resources/flowy_icons/24x/settings_selected_theme.svg` (+10 -0) 📝 `frontend/resources/translations/en.json` (+5 -3) 📝 `frontend/rust-lib/flowy-folder/src/notification.rs` (+1 -1) </details> ### 📄 Description #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:16:39 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6781
No description provided.