[PR #2004] [MERGED] release 0.1.1 #5062

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

📋 Pull Request Information

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

Base: release/0.1.1Head: chore/0.1.1


📝 Commits (7)

  • 1b86587 chore: update language files
  • 1a3701f feat: #2003 Entering an OpenAI key should auto-save
  • f38688b chore: update release version to 0.1.1
  • 0c88c7c fix: windows package build error
  • 653f880 feat: improve the smart edit user-experience
  • 1f44d4d fix(test): test replaceTexts, textNodes.length > texts.length
  • bf048ff fix: paser workspce pb (#2005)

📊 Changes

16 files changed (+276 additions, -120 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/en.json (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/service/openai_client.dart (+17 -8)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/auto_completion_plugins.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_action.dart (+20 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_node_widget.dart (+102 -61)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_toolbar_item.dart (+6 -4)
📝 frontend/appflowy_flutter/lib/user/application/user_listener.dart (+7 -4)
frontend/appflowy_flutter/lib/util/debounce.dart (+24 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart (+23 -5)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/commands/command_extension.dart (+2 -2)
📝 frontend/appflowy_flutter/packages/appflowy_editor/lib/src/core/transform/transaction.dart (+9 -11)
📝 frontend/appflowy_flutter/packages/appflowy_editor/test/command/command_extension_test.dart (+2 -2)
📝 frontend/appflowy_flutter/packages/appflowy_editor/test/core/transform/transaction_test.dart (+37 -0)
📝 frontend/rust-lib/flowy-folder/src/services/workspace/controller.rs (+17 -15)
📝 frontend/scripts/windows_installer/inno_setup_config.iss (+1 -1)

📄 Description

closes #2003


🔄 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/2004 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 3/16/2023 **Status:** ✅ Merged **Merged:** 3/17/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `release/0.1.1` ← **Head:** `chore/0.1.1` --- ### 📝 Commits (7) - [`1b86587`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b8658787572c6f6f620c730aae52fa53f536dba) chore: update language files - [`1a3701f`](https://github.com/AppFlowy-IO/AppFlowy/commit/1a3701feaf4ab6c014f40095ff1828b436b66be8) feat: #2003 Entering an OpenAI key should auto-save - [`f38688b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f38688b17e27a354d5914909f57d35c9c5a1bdcd) chore: update release version to 0.1.1 - [`0c88c7c`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c88c7ce2f70704a8ada5889267e3032015f4c81) fix: windows package build error - [`653f880`](https://github.com/AppFlowy-IO/AppFlowy/commit/653f88033efca4a4e47129640ba1286a8e59af92) feat: improve the smart edit user-experience - [`1f44d4d`](https://github.com/AppFlowy-IO/AppFlowy/commit/1f44d4de338ad54eab366bb5a8c4711244885b23) fix(test): test replaceTexts, textNodes.length > texts.length - [`bf048ff`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf048ffc0dbeca3024f8b877082d34cb247b5b55) fix: paser workspce pb (#2005) ### 📊 Changes **16 files changed** (+276 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/service/openai_client.dart` (+17 -8) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/auto_completion_plugins.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_action.dart` (+20 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_node_widget.dart` (+102 -61) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_toolbar_item.dart` (+6 -4) 📝 `frontend/appflowy_flutter/lib/user/application/user_listener.dart` (+7 -4) ➕ `frontend/appflowy_flutter/lib/util/debounce.dart` (+24 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart` (+23 -5) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/commands/command_extension.dart` (+2 -2) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/lib/src/core/transform/transaction.dart` (+9 -11) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/test/command/command_extension_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/packages/appflowy_editor/test/core/transform/transaction_test.dart` (+37 -0) 📝 `frontend/rust-lib/flowy-folder/src/services/workspace/controller.rs` (+17 -15) 📝 `frontend/scripts/windows_installer/inno_setup_config.iss` (+1 -1) </details> ### 📄 Description closes #2003 --- <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:02 +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#5062
No description provided.