[PR #1073] [MERGED] Feat/merge release 0052 #4517

Closed
opened 2026-03-23 21:38:09 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1073
Author: @appflowy
Created: 9/16/2022
Status: Merged
Merged: 9/16/2022
Merged by: @appflowy

Base: mainHead: feat/merge_release_0052


📝 Commits (6)

  • f792283 chore: fix open application error when upgrade to 0.0.5.1
  • 4c07ae2 chore: fix trailing characters parser error
  • 4961236 chore: update version to 0.0.5.2
  • a204af9 chore: enable create card from no status column
  • 2b451fa chore: fix delete card issue
  • 589acd9 fix: can not delete row from no status group

📊 Changes

21 files changed (+182 additions, -86 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+24 -28)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_action_sheet.dart (+3 -9)
📝 frontend/rust-lib/flowy-folder/src/services/persistence/migration.rs (+3 -4)
📝 frontend/rust-lib/flowy-folder/src/services/persistence/mod.rs (+1 -2)
📝 frontend/rust-lib/flowy-grid/src/services/block_manager.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/services/field/type_options/text_type_option/text_type_option.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/services/grid_editor.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs (+2 -0)
📝 frontend/rust-lib/flowy-grid/src/services/group/configuration.rs (+20 -20)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller.rs (+10 -5)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs (+3 -3)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller_impls/select_option_controller/multi_select_controller.rs (+3 -3)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller_impls/select_option_controller/single_select_controller.rs (+3 -3)
📝 shared-lib/flowy-folder-data-model/src/revision/app_rev.rs (+3 -0)
📝 shared-lib/flowy-folder-data-model/src/revision/folder_rev.rs (+69 -2)
📝 shared-lib/flowy-folder-data-model/src/revision/trash_rev.rs (+2 -0)
📝 shared-lib/flowy-folder-data-model/src/revision/view_rev.rs (+2 -1)
📝 shared-lib/flowy-folder-data-model/src/revision/workspace_rev.rs (+2 -0)
📝 shared-lib/flowy-sync/src/client_folder/folder_pad.rs (+19 -1)

...and 1 more files

📄 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/1073 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/16/2022 **Status:** ✅ Merged **Merged:** 9/16/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/merge_release_0052` --- ### 📝 Commits (6) - [`f792283`](https://github.com/AppFlowy-IO/AppFlowy/commit/f792283e70a2a68b0b5a5b4eb1a09225241f1abc) chore: fix open application error when upgrade to 0.0.5.1 - [`4c07ae2`](https://github.com/AppFlowy-IO/AppFlowy/commit/4c07ae26fc51c62dbe4b5be3453af9c1b52c8389) chore: fix trailing characters parser error - [`4961236`](https://github.com/AppFlowy-IO/AppFlowy/commit/496123601295f2ee63952c7c6a91f9a981b2e928) chore: update version to 0.0.5.2 - [`a204af9`](https://github.com/AppFlowy-IO/AppFlowy/commit/a204af97839733948c468587434c904cbe2aef34) chore: enable create card from no status column - [`2b451fa`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b451fa06dd63d08ddbbbddc9cb6a640a9648582) chore: fix delete card issue - [`589acd9`](https://github.com/AppFlowy-IO/AppFlowy/commit/589acd9e2bc24e1ccc908dc735d1554980f349be) fix: can not delete row from no status group ### 📊 Changes **21 files changed** (+182 additions, -86 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+24 -28) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_action_sheet.dart` (+3 -9) 📝 `frontend/rust-lib/flowy-folder/src/services/persistence/migration.rs` (+3 -4) 📝 `frontend/rust-lib/flowy-folder/src/services/persistence/mod.rs` (+1 -2) 📝 `frontend/rust-lib/flowy-grid/src/services/block_manager.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/field/type_options/text_type_option/text_type_option.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_editor.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/group/configuration.rs` (+20 -20) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller.rs` (+10 -5) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller_impls/select_option_controller/multi_select_controller.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller_impls/select_option_controller/single_select_controller.rs` (+3 -3) 📝 `shared-lib/flowy-folder-data-model/src/revision/app_rev.rs` (+3 -0) 📝 `shared-lib/flowy-folder-data-model/src/revision/folder_rev.rs` (+69 -2) 📝 `shared-lib/flowy-folder-data-model/src/revision/trash_rev.rs` (+2 -0) 📝 `shared-lib/flowy-folder-data-model/src/revision/view_rev.rs` (+2 -1) 📝 `shared-lib/flowy-folder-data-model/src/revision/workspace_rev.rs` (+2 -0) 📝 `shared-lib/flowy-sync/src/client_folder/folder_pad.rs` (+19 -1) _...and 1 more files_ </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 21:38:09 +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#4517
No description provided.