[PR #5901] [CLOSED] chore: update auto generator menu item icon and ai writer toolbar item #7072

Closed
opened 2026-03-23 23:17:59 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5901
Author: @LucasXu0
Created: 8/8/2024
Status: Closed

Base: mainHead: desktop_ai


📝 Commits (9)

  • 81dc785 chore: change "AI Assistants" to "Ask AI"
  • 8a564e5 chore: update appflowy_editor dependency reference
  • e91b38c chore: update image selection menu and auto generator menu item icons
  • 63b22a9 chore: update AI icon in auto completion node widget
  • d72c889 chore: update math_eq and code_block icon
  • 4df8488 fix: integration test
  • 01981b7 Merge branch 'main' into desktop_ai
  • 92b5c4f fix: integration test
  • 1e5981e fix: integration test

📊 Changes

18 files changed (+137 additions, -30 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart (+5 -2)
📝 frontend/appflowy_flutter/integration_test/shared/editor_test_operations.dart (+12 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+9 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/selectable_svg_widget.dart (+12 -3)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_menu_item.dart (+18 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/clipboard_service.dart (+11 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/image_selection_menu.dart (+6 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/math_equation/math_equation_block_component.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/openai/widgets/auto_completion_node_widget.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/openai/widgets/smart_edit_toolbar_item.dart (+14 -7)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart (+1 -0)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
frontend/resources/flowy_icons/16x/icon_code_block.svg (+13 -0)
frontend/resources/flowy_icons/16x/icon_math_eq.svg (+8 -0)
frontend/resources/flowy_icons/16x/menu_item_ai_writer.svg (+1 -0)
frontend/resources/flowy_icons/16x/toolbar_item_ai.svg (+9 -0)
📝 frontend/resources/translations/en.json (+1 -1)

📄 Description

Feature Preview

Screenshot 2024-08-08 at 10 23 56 Screenshot 2024-08-08 at 10 54 00

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/5901 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/8/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `desktop_ai` --- ### 📝 Commits (9) - [`81dc785`](https://github.com/AppFlowy-IO/AppFlowy/commit/81dc785179c57ca1af9d34c6795f178b21f0cec7) chore: change "AI Assistants" to "Ask AI" - [`8a564e5`](https://github.com/AppFlowy-IO/AppFlowy/commit/8a564e5816d24d252583556e33c95b042676a477) chore: update appflowy_editor dependency reference - [`e91b38c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e91b38ccf0d41e7b6eff2ab2817ca93e88dac9db) chore: update image selection menu and auto generator menu item icons - [`63b22a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/63b22a9e2db2c59e49d8f25af9b791feed9c01e7) chore: update AI icon in auto completion node widget - [`d72c889`](https://github.com/AppFlowy-IO/AppFlowy/commit/d72c889eac0c9053e99264aae7b0768e84c673e0) chore: update math_eq and code_block icon - [`4df8488`](https://github.com/AppFlowy-IO/AppFlowy/commit/4df8488025b5d9be835c2c3cc4e96c5b2f95f97a) fix: integration test - [`01981b7`](https://github.com/AppFlowy-IO/AppFlowy/commit/01981b7a21930910dfce3cbda880a863057919a3) Merge branch 'main' into desktop_ai - [`92b5c4f`](https://github.com/AppFlowy-IO/AppFlowy/commit/92b5c4f4d7e7b8eb59208c4738f35bf3cb2bbe2f) fix: integration test - [`1e5981e`](https://github.com/AppFlowy-IO/AppFlowy/commit/1e5981e4a04d6018a8e3df204a6d9b5f834f14c6) fix: integration test ### 📊 Changes **18 files changed** (+137 additions, -30 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart` (+5 -2) 📝 `frontend/appflowy_flutter/integration_test/shared/editor_test_operations.dart` (+12 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+9 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/selectable_svg_widget.dart` (+12 -3) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_menu_item.dart` (+18 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/clipboard_service.dart` (+11 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/image_selection_menu.dart` (+6 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/math_equation/math_equation_block_component.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/openai/widgets/auto_completion_node_widget.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/openai/widgets/smart_edit_toolbar_item.dart` (+14 -7) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart` (+1 -0) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) ➕ `frontend/resources/flowy_icons/16x/icon_code_block.svg` (+13 -0) ➕ `frontend/resources/flowy_icons/16x/icon_math_eq.svg` (+8 -0) ➕ `frontend/resources/flowy_icons/16x/menu_item_ai_writer.svg` (+1 -0) ➕ `frontend/resources/flowy_icons/16x/toolbar_item_ai.svg` (+9 -0) 📝 `frontend/resources/translations/en.json` (+1 -1) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <img width="686" alt="Screenshot 2024-08-08 at 10 23 56" src="https://github.com/user-attachments/assets/11d2ccd2-74a1-4ab4-af72-46a9060b2b4e"> <img width="366" alt="Screenshot 2024-08-08 at 10 54 00" src="https://github.com/user-attachments/assets/7401528a-8a54-43f0-98e2-56100809d6b1"> <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### 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. - [ ] 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:17:59 +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#7072
No description provided.