[PR #5215] [MERGED] fix: migrate OKRs issues #6709

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5215
Author: @LucasXu0
Created: 4/26/2024
Status: Merged
Merged: 4/29/2024
Merged by: @LucasXu0

Base: mainHead: fix_okr_issues


📝 Commits (10+)

  • b6a1487 fix: disable color paraser when pasting texts
  • edd5e7f fix: compile error
  • ca1a862 fix: register hotkeys in init function
  • 085d79b fix: improve settings hotkey
  • a72a2e2 chore: update editor
  • fd595a9 fix: view title overflow
  • a4c7fc7 fix: integration test
  • 8bc9381 chore: improve auto expanding animation
  • 6d31f6e chore: bump version 0.5.6
  • ee2fd2b chore: enable collab workspace

📊 Changes

14 files changed (+176 additions, -226 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart (+3 -48)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart (+13 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+42 -30)
📝 frontend/appflowy_flutter/lib/shared/feature_flags.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart (+41 -13)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_section_folder.dart (+11 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_setting.dart (+8 -14)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart (+20 -16)
📝 frontend/appflowy_flutter/packages/flowy_infra/pubspec.yaml (+1 -1)
📝 frontend/appflowy_flutter/pubspec.lock (+22 -86)
📝 frontend/appflowy_flutter/pubspec.yaml (+5 -5)
📝 frontend/appflowy_flutter/test/bloc_test/home_test/view_bloc_test.dart (+1 -1)

📄 Description

Feature Preview

  • table block background color
  • dependencies outdated
  • upgrade editor version

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/5215 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/26/2024 **Status:** ✅ Merged **Merged:** 4/29/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_okr_issues` --- ### 📝 Commits (10+) - [`b6a1487`](https://github.com/AppFlowy-IO/AppFlowy/commit/b6a148728829c618686416597e92e3fab558031f) fix: disable color paraser when pasting texts - [`edd5e7f`](https://github.com/AppFlowy-IO/AppFlowy/commit/edd5e7ff7d210580f4aada34231c0579bb25ac46) fix: compile error - [`ca1a862`](https://github.com/AppFlowy-IO/AppFlowy/commit/ca1a862b0665e11763743e4feb5358ebeec1179c) fix: register hotkeys in init function - [`085d79b`](https://github.com/AppFlowy-IO/AppFlowy/commit/085d79bfc9e0737d624a9d9d5f0514f0ca92049d) fix: improve settings hotkey - [`a72a2e2`](https://github.com/AppFlowy-IO/AppFlowy/commit/a72a2e26d64f4498c9ce4b3f67eae3f6c61c97d5) chore: update editor - [`fd595a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd595a94070386f4c0f9ce0541c657fa5e2c5bca) fix: view title overflow - [`a4c7fc7`](https://github.com/AppFlowy-IO/AppFlowy/commit/a4c7fc74aa231f93636aaf3698f694bc0698f5bf) fix: integration test - [`8bc9381`](https://github.com/AppFlowy-IO/AppFlowy/commit/8bc9381e0806f9fa2e6485958870b6bd4fceaf65) chore: improve auto expanding animation - [`6d31f6e`](https://github.com/AppFlowy-IO/AppFlowy/commit/6d31f6ef250d67cbdf4e0865565898d34d526052) chore: bump version 0.5.6 - [`ee2fd2b`](https://github.com/AppFlowy-IO/AppFlowy/commit/ee2fd2b9c0c4891ae55e4c023e6f91381bc23a5e) chore: enable collab workspace ### 📊 Changes **14 files changed** (+176 additions, -226 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart` (+3 -48) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart` (+13 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+42 -30) 📝 `frontend/appflowy_flutter/lib/shared/feature_flags.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart` (+41 -13) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_section_folder.dart` (+11 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_setting.dart` (+8 -14) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart` (+20 -16) 📝 `frontend/appflowy_flutter/packages/flowy_infra/pubspec.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/pubspec.lock` (+22 -86) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+5 -5) 📝 `frontend/appflowy_flutter/test/bloc_test/home_test/view_bloc_test.dart` (+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 - [x] table block background color - [x] dependencies outdated - [x] upgrade editor version <!--- 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 - [ ] 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:16:18 +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#6709
No description provided.