[PR #1001] [MERGED] Merge/release 005 #4486

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

📋 Pull Request Information

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

Base: mainHead: merge/release_005


📝 Commits (9)

  • 3ae2818 fix: rebuild card when create new field from row detail page
  • 86e2091 fix: reduce rebuild while editing text field
  • 951206d chore: handle edit state
  • 29e7e01 chore: hide edit button when start editing
  • 0c45e3c fix: remove default group for checkbox
  • 8894e9c chore: update create board template
  • 9bc2bc8 chore: make select option cell selectable
  • 4f97133 Merge branch 'release/0.0.5' into merge/release_005
  • e826d68 chore: remove unuse code

📊 Changes

20 files changed (+280 additions, -246 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+0 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+31 -18)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+10 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart (+38 -11)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_date_cell.dart (+11 -4)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_number_cell.dart (+10 -3)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+12 -32)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart (+49 -38)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart (+15 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+28 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+0 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart (+8 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart (+2 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart (+9 -9)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/services/group/action.rs (+3 -1)
📝 frontend/rust-lib/flowy-grid/src/services/group/configuration.rs (+2 -5)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller.rs (+8 -2)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs (+4 -0)
📝 frontend/rust-lib/flowy-grid/src/util.rs (+39 -100)

📄 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/1001 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/7/2022 **Status:** ✅ Merged **Merged:** 9/7/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `merge/release_005` --- ### 📝 Commits (9) - [`3ae2818`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ae28186e8ebc34cf3d4e49676da72be25dfb542) fix: rebuild card when create new field from row detail page - [`86e2091`](https://github.com/AppFlowy-IO/AppFlowy/commit/86e2091ccfd839802c63508904890aa55f4c62b4) fix: reduce rebuild while editing text field - [`951206d`](https://github.com/AppFlowy-IO/AppFlowy/commit/951206db7107c264e2e7f89b95b381ef85f461b0) chore: handle edit state - [`29e7e01`](https://github.com/AppFlowy-IO/AppFlowy/commit/29e7e01146bef4075ab401ebf117943c9640349e) chore: hide edit button when start editing - [`0c45e3c`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c45e3ce955e317c5facbefa42fa0f0b375a1223) fix: remove default group for checkbox - [`8894e9c`](https://github.com/AppFlowy-IO/AppFlowy/commit/8894e9c784b95ab0751b1f499c37bc22588cd0b6) chore: update create board template - [`9bc2bc8`](https://github.com/AppFlowy-IO/AppFlowy/commit/9bc2bc82bef2403c07974cdfdccb71072d72193b) chore: make select option cell selectable - [`4f97133`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f971331835de837b263aecfe9edf5c9437551db) Merge branch 'release/0.0.5' into merge/release_005 - [`e826d68`](https://github.com/AppFlowy-IO/AppFlowy/commit/e826d68b161e073dca443bd2f6c5c3b8825fcb54) chore: remove unuse code ### 📊 Changes **20 files changed** (+280 additions, -246 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+0 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+31 -18) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+10 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart` (+38 -11) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_date_cell.dart` (+11 -4) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_number_cell.dart` (+10 -3) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+12 -32) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart` (+49 -38) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart` (+15 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+28 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+0 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart` (+8 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart` (+2 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart` (+9 -9) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/services/group/action.rs` (+3 -1) 📝 `frontend/rust-lib/flowy-grid/src/services/group/configuration.rs` (+2 -5) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller.rs` (+8 -2) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-grid/src/util.rs` (+39 -100) </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: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#4486
No description provided.