[PR #6718] [MERGED] fix: launch review 0.7.3 #7544

Closed
opened 2026-03-23 23:20:06 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6718
Author: @Xazin
Created: 11/4/2024
Status: Merged
Merged: 11/4/2024
Merged by: @Xazin

Base: mainHead: fix/launch-review-0.7.3


📝 Commits (8)

  • 7bd9aa8 fix: include inline mentions in view name
  • b767757 fix: use default icon for layout in inline mention
  • 76bd5bb fix: delta from subpageblock on turn into
  • b8bab64 fix: support turn into page always
  • 2abeace fix: toggle show unread reminders
  • 22c10a9 fix: button border radius
  • 40b4ae8 test: unit tests
  • c8f5d51 chore: merge branch 'upstream/main' into fix/launch-review-0.7.3

📊 Changes

12 files changed (+172 additions, -121 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/widgets/media_file_type_ext.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart (+1 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_option_cubit.dart (+89 -31)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option/turn_into_option_action.dart (+49 -36)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_page_block.dart (+1 -5)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/command_palette/search_result_ext.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart (+7 -7)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/notification_dialog.dart (+6 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_item.dart (+2 -0)
📝 frontend/appflowy_flutter/test/unit_test/document/turn_into/turn_into_test.dart (+8 -29)

📄 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/6718 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 11/4/2024 **Status:** ✅ Merged **Merged:** 11/4/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `fix/launch-review-0.7.3` --- ### 📝 Commits (8) - [`7bd9aa8`](https://github.com/AppFlowy-IO/AppFlowy/commit/7bd9aa8e80dd1c99ba1dea2b2ce4a487d21238b8) fix: include inline mentions in view name - [`b767757`](https://github.com/AppFlowy-IO/AppFlowy/commit/b767757e1d6e3b9c57803663174dff73e384a1cd) fix: use default icon for layout in inline mention - [`76bd5bb`](https://github.com/AppFlowy-IO/AppFlowy/commit/76bd5bb70c74a617829616d13bde68ae608b31d6) fix: delta from subpageblock on turn into - [`b8bab64`](https://github.com/AppFlowy-IO/AppFlowy/commit/b8bab6457a723ddbc57e34399b825fff746a3bb7) fix: support turn into page always - [`2abeace`](https://github.com/AppFlowy-IO/AppFlowy/commit/2abeacecffd4238914185dc6655939414a3c477d) fix: toggle show unread reminders - [`22c10a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/22c10a97198c938b9061493c6282bb8d44b23356) fix: button border radius - [`40b4ae8`](https://github.com/AppFlowy-IO/AppFlowy/commit/40b4ae8b5b1afd9cebd50326db6dda5f44b452a1) test: unit tests - [`c8f5d51`](https://github.com/AppFlowy-IO/AppFlowy/commit/c8f5d51dd023a8748cdeca489f8a9f24419beeec) chore: merge branch 'upstream/main' into fix/launch-review-0.7.3 ### 📊 Changes **12 files changed** (+172 additions, -121 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/media_file_type_ext.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart` (+1 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_option_cubit.dart` (+89 -31) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option/turn_into_option_action.dart` (+49 -36) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_page_block.dart` (+1 -5) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/command_palette/search_result_ext.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart` (+7 -7) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/notification_dialog.dart` (+6 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_item.dart` (+2 -0) 📝 `frontend/appflowy_flutter/test/unit_test/document/turn_into/turn_into_test.dart` (+8 -29) </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. - [ ] 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:20:06 +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#7544
No description provided.