[PR #1991] [MERGED] Fix release/0.1.1 known issues. #5057

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1991
Author: @LucasXu0
Created: 3/14/2023
Status: Merged
Merged: 3/14/2023
Merged by: @LucasXu0

Base: release/0.1.1Head: fix_0_1_1


📝 Commits (10+)

  • dcf48ce fix: #1976 Adding a cover image via upload doesn't work
  • 0141538 fix: #1973 Using the mouse to highlight text very easy to miss the first letter
  • b7ec7ce fix: #1962 Disable but still show the AI assistants icon in the toolbar menu when an OpenAI key is not provided
  • 874d1e8 fix: #1964 Text on the UI
  • 4821d7e fix: #1966 the loading icon too close to the edge
  • dd9c3dd fix: #1967 the summarize feature generates duplicate answers
  • 75231e6 fix: flutter analyze
  • 609bf2a fix: #1968 UI inconsistency
  • 0570615 fix: #1975 Set a height limit for the AI prompt window where it displays the results
  • d6d591f fix: select all shouldn't include the cover plugin

📊 Changes

16 files changed (+320 additions, -110 deletions)

View changed files

📝 frontend/appflowy_flutter/assets/translations/en.json (+4 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+1 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/change_cover_popover.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/auto_completion_node_widget.dart (+8 -35)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_action.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_node_widget.dart (+19 -42)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_toolbar_item.dart (+42 -3)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+4 -3)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/commands/command_extension.dart (+4 -1)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/core/transform/transaction.dart (+93 -14)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/select_all_handler.dart (+3 -1)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/keyboard_service.dart (+1 -0)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/selection_service.dart (+2 -1)
frontend/appflowy_flutter/packages/appflowy_editor/test/core/transform/transaction_test.dart (+132 -0)
📝 frontend/appflowy_flutter/pubspec.lock (+1 -1)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -0)

📄 Description

No description provided


🔄 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/1991 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 3/14/2023 **Status:** ✅ Merged **Merged:** 3/14/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `release/0.1.1` ← **Head:** `fix_0_1_1` --- ### 📝 Commits (10+) - [`dcf48ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/dcf48ceb50c395b6d0f5a6ff5d99631e6df97e7d) fix: #1976 Adding a cover image via upload doesn't work - [`0141538`](https://github.com/AppFlowy-IO/AppFlowy/commit/0141538be859b4512751347d47df25abd37e8c65) fix: #1973 Using the mouse to highlight text very easy to miss the first letter - [`b7ec7ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/b7ec7ce32e7439cd82377db910e810ed5a92934b) fix: #1962 Disable but still show the AI assistants icon in the toolbar menu when an OpenAI key is not provided - [`874d1e8`](https://github.com/AppFlowy-IO/AppFlowy/commit/874d1e86c2ed5cc54b786ff2de633154c2297aab) fix: #1964 Text on the UI - [`4821d7e`](https://github.com/AppFlowy-IO/AppFlowy/commit/4821d7ea6550f170aa67ad227ac5ec072d16f3af) fix: #1966 the loading icon too close to the edge - [`dd9c3dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd9c3dd2a31ee08674946184d3dfcbffad8d3650) fix: #1967 the summarize feature generates duplicate answers - [`75231e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/75231e606cb11a8f40c57efd2fc631949bc719c9) fix: flutter analyze - [`609bf2a`](https://github.com/AppFlowy-IO/AppFlowy/commit/609bf2a4ce5e3b984d627676bf3c8f5120f63403) fix: #1968 UI inconsistency - [`0570615`](https://github.com/AppFlowy-IO/AppFlowy/commit/0570615414355b15730eebdc7512d14999a586db) fix: #1975 Set a height limit for the AI prompt window where it displays the results - [`d6d591f`](https://github.com/AppFlowy-IO/AppFlowy/commit/d6d591f359d39891e94ba5d0e5cfb2c4911d5cd6) fix: select all shouldn't include the cover plugin ### 📊 Changes **16 files changed** (+320 additions, -110 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+4 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+1 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/change_cover_popover.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/auto_completion_node_widget.dart` (+8 -35) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_action.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_node_widget.dart` (+19 -42) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_toolbar_item.dart` (+42 -3) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+4 -3) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/commands/command_extension.dart` (+4 -1) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/core/transform/transaction.dart` (+93 -14) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/select_all_handler.dart` (+3 -1) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/keyboard_service.dart` (+1 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/service/selection_service.dart` (+2 -1) ➕ `frontend/appflowy_flutter/packages/appflowy_editor/test/core/transform/transaction_test.dart` (+132 -0) 📝 `frontend/appflowy_flutter/pubspec.lock` (+1 -1) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:17:01 +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#5057
No description provided.