[PR #457] [MERGED] Fix 0.0.4 beta 2 bugs #4139

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/457
Author: @appflowy
Created: 4/17/2022
Status: Merged
Merged: 4/17/2022
Merged by: @appflowy

Base: mainHead: fix_0.0.4_beta_2_bugs


📝 Commits (10+)

  • 943b450 chore: config field separate line
  • a707410 chore: format number cell
  • b0e07c9 chore: fixed grid toolbar
  • 2fa6ade chore: move field
  • 06af45a chore: udpate field notification
  • fd9e13b chore: refactor grid field listener
  • b606c5b chore: fix some bugs
  • ac766c0 chore: fix row rebuild refresh issue
  • b282a14 chore: add sync feature
  • a81db92 chore: fix warnings

📊 Changes

91 files changed (+3341 additions, -1277 deletions)

View changed files

📝 .github/workflows/rust_test.yml (+1 -1)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+12 -19)
📝 frontend/app_flowy/lib/startup/tasks/app_widget.dart (+5 -5)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_listener.dart (+5 -4)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart (+75 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart (+9 -10)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+25 -19)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart (+39 -28)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart (+0 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart (+16 -17)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart (+15 -16)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart (+4 -4)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart (+0 -35)
frontend/app_flowy/lib/workspace/application/grid/data.dart (+0 -8)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart (+14 -4)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart (+7 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart (+28 -12)
📝 frontend/app_flowy/lib/workspace/application/grid/field/grid_listenr.dart (+7 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+26 -113)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_header_bloc.dart (+19 -24)

...and 71 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/457 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/17/2022 **Status:** ✅ Merged **Merged:** 4/17/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_0.0.4_beta_2_bugs` --- ### 📝 Commits (10+) - [`943b450`](https://github.com/AppFlowy-IO/AppFlowy/commit/943b4507ac3c092baa60b1c7216616e366472930) chore: config field separate line - [`a707410`](https://github.com/AppFlowy-IO/AppFlowy/commit/a7074105480c7da3c1d13197714ced0af97860ec) chore: format number cell - [`b0e07c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/b0e07c952ee49ca08d3add5f14c4c8a3895ee33e) chore: fixed grid toolbar - [`2fa6ade`](https://github.com/AppFlowy-IO/AppFlowy/commit/2fa6adeee633942a6f3c0b29db114835feff4d97) chore: move field - [`06af45a`](https://github.com/AppFlowy-IO/AppFlowy/commit/06af45a8ed8f92633de0a0d81a82a157b60526f2) chore: udpate field notification - [`fd9e13b`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd9e13bf4b19c41e99768ff1b63975cbb3c7eb70) chore: refactor grid field listener - [`b606c5b`](https://github.com/AppFlowy-IO/AppFlowy/commit/b606c5ba7b19e19f2310dd9b1fa219c1bb8df1f4) chore: fix some bugs - [`ac766c0`](https://github.com/AppFlowy-IO/AppFlowy/commit/ac766c0359387d65a70fbb919db23e8d7292c45b) chore: fix row rebuild refresh issue - [`b282a14`](https://github.com/AppFlowy-IO/AppFlowy/commit/b282a14b58aa7a0e19aad5b9ff5386f6c7754c41) chore: add sync feature - [`a81db92`](https://github.com/AppFlowy-IO/AppFlowy/commit/a81db92ee1738274e919d9c7836f5cb105f41a34) chore: fix warnings ### 📊 Changes **91 files changed** (+3341 additions, -1277 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_test.yml` (+1 -1) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+12 -19) 📝 `frontend/app_flowy/lib/startup/tasks/app_widget.dart` (+5 -5) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_listener.dart` (+5 -4) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart` (+75 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart` (+9 -10) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+25 -19) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart` (+39 -28) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart` (+0 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart` (+16 -17) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart` (+15 -16) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart` (+4 -4) ➖ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart` (+0 -35) ➖ `frontend/app_flowy/lib/workspace/application/grid/data.dart` (+0 -8) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart` (+14 -4) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart` (+7 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart` (+28 -12) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/grid_listenr.dart` (+7 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+26 -113) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_header_bloc.dart` (+19 -24) _...and 71 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:36:28 +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#4139
No description provided.