[PR #2577] [CLOSED] Tell ai what to do #2013 #5313

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2577
Author: @rizwan3395
Created: 5/21/2023
Status: Closed

Base: mainHead: tell_ai_what_to_do_#2013


📝 Commits (10+)

  • c85c6dc feat: added emoji and network image support
  • d48c3e0 fix: translations added
  • 90dc7cf fix: code cleanup and improvements
  • 650b84a chore: merge with main
  • 9922bf6 chore: merge with main
  • bd166cb Merge branch 'AppFlowy-IO:main' into main
  • 91ce845 Merge branch 'AppFlowy-IO:main' into main
  • 7cc71b1 Merge branch 'AppFlowy-IO:main' into main
  • d3ddfc4 Merge branch 'AppFlowy-IO:main' into main
  • db8d030 feat: show unscheduled events in calendar toolbar (#2411)

📊 Changes

59 files changed (+1240 additions, -760 deletions)

View changed files

📝 .github/workflows/release.yml (+1 -1)
📝 CHANGELOG.md (+22 -0)
📝 README.md (+5 -3)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/en.json (+12 -3)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart (+1 -6)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart (+12 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart (+13 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/row/row_cache.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_setting_bloc.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart (+26 -39)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart (+34 -22)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart (+8 -5)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_setting.dart (+25 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_toolbar.dart (+103 -7)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/application/grid_bloc.dart (+12 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/grid_page.dart (+102 -77)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/row/row.dart (+57 -32)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/card/container/card_container.dart (+1 -0)

...and 39 more files

📄 Description

Feature Preview

https://github.com/AppFlowy-IO/AppFlowy/assets/47111784/167bbd12-4eea-4c1e-924d-51ec537917ab


PR Checklist

Add the option to rewrite AI generated content, make text longer, continue writing, or edit the prompt.

fixes #2013

  • My code adheres to the AppFlowy Style Guide
  • 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/2577 **Author:** [@rizwan3395](https://github.com/rizwan3395) **Created:** 5/21/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `tell_ai_what_to_do_#2013` --- ### 📝 Commits (10+) - [`c85c6dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/c85c6dcfe8bf0cd2242c5ee755bcc9b4e4205905) feat: added emoji and network image support - [`d48c3e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/d48c3e0734d83f229141f7e34ed0e596a4666dca) fix: translations added - [`90dc7cf`](https://github.com/AppFlowy-IO/AppFlowy/commit/90dc7cf303027fb829a515170d9047195b426e68) fix: code cleanup and improvements - [`650b84a`](https://github.com/AppFlowy-IO/AppFlowy/commit/650b84a801431a9701823e3d9728b8b2864343ca) chore: merge with main - [`9922bf6`](https://github.com/AppFlowy-IO/AppFlowy/commit/9922bf688f84b24338bde1c036c4964c3c3722e3) chore: merge with main - [`bd166cb`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd166cb15fadc45bd83963484c5a745fcc817818) Merge branch 'AppFlowy-IO:main' into main - [`91ce845`](https://github.com/AppFlowy-IO/AppFlowy/commit/91ce8452e77f9fd4aeeb00bb716c0a2a33034e80) Merge branch 'AppFlowy-IO:main' into main - [`7cc71b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/7cc71b145a4a08486a12a001efd46078081c01c6) Merge branch 'AppFlowy-IO:main' into main - [`d3ddfc4`](https://github.com/AppFlowy-IO/AppFlowy/commit/d3ddfc4826c893f15299c7551c4ba1386ce12734) Merge branch 'AppFlowy-IO:main' into main - [`db8d030`](https://github.com/AppFlowy-IO/AppFlowy/commit/db8d030a85df2fa25e5df39d59ed718786bdae84) feat: show unscheduled events in calendar toolbar (#2411) ### 📊 Changes **59 files changed** (+1240 additions, -760 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+1 -1) 📝 `CHANGELOG.md` (+22 -0) 📝 `README.md` (+5 -3) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+12 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart` (+1 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart` (+12 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart` (+13 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/row/row_cache.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_setting_bloc.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart` (+26 -39) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart` (+34 -22) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart` (+8 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_setting.dart` (+25 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_toolbar.dart` (+103 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/application/grid_bloc.dart` (+12 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/grid_page.dart` (+102 -77) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/row/row.dart` (+57 -32) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/card/container/card_container.dart` (+1 -0) _...and 39 more files_ </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 https://github.com/AppFlowy-IO/AppFlowy/assets/47111784/167bbd12-4eea-4c1e-924d-51ec537917ab <!--- 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 Add the option to rewrite AI generated content, make text longer, continue writing, or edit the prompt. fixes #2013 - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] 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 22:18:11 +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#5313
No description provided.