[PR #3373] [CLOSED] new pull #5699

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3373
Author: @mangollc
Created: 9/10/2023
Status: Closed

Base: mainHead: main


📝 Commits (10+)

📊 Changes

61 files changed (+1167 additions, -618 deletions)

View changed files

📝 .github/workflows/release.yml (+1 -1)
📝 CHANGELOG.md (+27 -0)
📝 README.md (+5 -3)
📝 frontend/Makefile.toml (+1 -1)
frontend/appflowy_flutter/assets/images/editor/link.svg (+4 -0)
📝 frontend/appflowy_flutter/assets/translations/en.json (+12 -5)
📝 frontend/appflowy_flutter/integration_test/board_test.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/empty_document_test.dart (+9 -1)
📝 frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/util/data.dart (+15 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart (+1 -6)
📝 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/widgets/card/container/card_container.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/date_cell/date_cal_bloc.dart (+29 -6)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/url_cell/url_cell.dart (+86 -47)

...and 41 more files

📄 Description

Feature Preview


PR Checklist

  • 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/3373 **Author:** [@mangollc](https://github.com/mangollc) **Created:** 9/10/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`db8d030`](https://github.com/AppFlowy-IO/AppFlowy/commit/db8d030a85df2fa25e5df39d59ed718786bdae84) feat: show unscheduled events in calendar toolbar (#2411) - [`5d0a349`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d0a3492364b5f3dbefa3bf7b59a4a960ae6b01d) fix: default include time (#2444) - [`a2e9d63`](https://github.com/AppFlowy-IO/AppFlowy/commit/a2e9d63f63d0aebdb354a366983d16c01c7cfd74) chore: bump version 0.1.4 (#2455) - [`06f056a`](https://github.com/AppFlowy-IO/AppFlowy/commit/06f056aa4b19dba0fc9169667b32cb1785afaaa4) chore: Update README.md - [`6731037`](https://github.com/AppFlowy-IO/AppFlowy/commit/6731037a8c77502172c0ad23eda2c51e47befa34) fix: wrong day of week (#2468) - [`4a1714b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a1714b537983b2cec7a4a1c9f4b6c57a7f19bf1) feat: select which properties to show in calendar (#2482) - [`2b72821`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b7282195b0496fa23d21231ca78a575944d59a2) feat: improve sidebar item dragged appearance (#2471) - [`151ee89`](https://github.com/AppFlowy-IO/AppFlowy/commit/151ee8985598a3467168a1dd458bf3a5a7e163f7) fix: show delete icon for document icon properly (#2475) - [`f0a4b4b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f0a4b4b77d9e88637dd04a4a2377396b825f2b94) feat: add hover effect on an event card (#2487) - [`bd5250a`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd5250ae2f02d18f4ea7d7e0fce867e40ad9ee26) chore: update editor v0.1.12 and format the readme (#2489) ### 📊 Changes **61 files changed** (+1167 additions, -618 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+1 -1) 📝 `CHANGELOG.md` (+27 -0) 📝 `README.md` (+5 -3) 📝 `frontend/Makefile.toml` (+1 -1) ➕ `frontend/appflowy_flutter/assets/images/editor/link.svg` (+4 -0) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+12 -5) 📝 `frontend/appflowy_flutter/integration_test/board_test.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/empty_document_test.dart` (+9 -1) 📝 `frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/util/data.dart` (+15 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_data_persistence.dart` (+1 -6) 📝 `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/widgets/card/container/card_container.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/date_cell/date_cal_bloc.dart` (+29 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/url_cell/url_cell.dart` (+86 -47) _...and 41 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 <!--- 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 the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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 22:19:54 +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#5699
No description provided.