[PR #7159] [CLOSED] chore: bump version 0.8.0 #7758

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7159
Author: @LucasXu0
Created: 1/6/2025
Status: Closed

Base: release/0.7.9Head: release/0.8.0


📝 Commits (6)

  • 1d1647d chore: bump version 0.8.0
  • 776f70a fix: icon picker issues on mobile (#7114)
  • cd06161 chore: upgrade andoird targetSdkVersion to 35
  • b53e20f chore: update editor version
  • 84d55b5 fix: disable deleting mutilple nodes in table
  • 627b8ab fix(flutter_mobile): linked grid cannot be displayed in document (#7162)

📊 Changes

28 files changed (+708 additions, -110 deletions)

View changed files

📝 CHANGELOG.md (+16 -0)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/android/app/build.gradle (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart (+2 -0)
frontend/appflowy_flutter/integration_test/desktop/cloud/sidebar/sidebar_icon_test.dart (+62 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_sub_page_test.dart (+43 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_icon_test.dart (+2 -19)
📝 frontend/appflowy_flutter/integration_test/mobile/document/page_style_test.dart (+46 -1)
📝 frontend/appflowy_flutter/integration_test/shared/base.dart (+27 -0)
📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+18 -0)
📝 frontend/appflowy_flutter/integration_test/shared/emoji.dart (+6 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart (+10 -8)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/mobile_grid_page.dart (+18 -8)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/emoji_icon_widget.dart (+4 -7)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/page_style/_page_style_icon.dart (+9 -6)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/backspace_command.dart (+321 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/command_shortcuts.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/sub_page/sub_page_block_component.dart (+5 -7)

...and 8 more files

📄 Description

Feature Preview

DO NOT MERGE. This PR is only for triggering the CI tests.


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • 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/7159 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 1/6/2025 **Status:** ❌ Closed **Base:** `release/0.7.9` ← **Head:** `release/0.8.0` --- ### 📝 Commits (6) - [`1d1647d`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d1647d58dcb7162d3ceedd4d680a1b72c5af1ee) chore: bump version 0.8.0 - [`776f70a`](https://github.com/AppFlowy-IO/AppFlowy/commit/776f70a0c7e325e5daae605288e060eb3f07d62c) fix: icon picker issues on mobile (#7114) - [`cd06161`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd06161deacc4e1559be4ee1dfc13eab0e3eed3f) chore: upgrade andoird targetSdkVersion to 35 - [`b53e20f`](https://github.com/AppFlowy-IO/AppFlowy/commit/b53e20f7461c080433607fd037709dcd959c0a1c) chore: update editor version - [`84d55b5`](https://github.com/AppFlowy-IO/AppFlowy/commit/84d55b5022375d187e0ed4f5429da0d06a4a3ebf) fix: disable deleting mutilple nodes in table - [`627b8ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/627b8ab43cda7e71bfa7ba81a02fc1fa81022198) fix(flutter_mobile): linked grid cannot be displayed in document (#7162) ### 📊 Changes **28 files changed** (+708 additions, -110 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+16 -0) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/android/app/build.gradle` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart` (+2 -0) ➕ `frontend/appflowy_flutter/integration_test/desktop/cloud/sidebar/sidebar_icon_test.dart` (+62 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_sub_page_test.dart` (+43 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/sidebar/sidebar_icon_test.dart` (+2 -19) 📝 `frontend/appflowy_flutter/integration_test/mobile/document/page_style_test.dart` (+46 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/base.dart` (+27 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+18 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/emoji.dart` (+6 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart` (+10 -8) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/mobile_grid_page.dart` (+18 -8) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/emoji_icon_widget.dart` (+4 -7) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/page_style/_page_style_icon.dart` (+9 -6) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/backspace_command.dart` (+321 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/command_shortcuts.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/sub_page/sub_page_block_component.dart` (+5 -7) _...and 8 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 DO NOT MERGE. This PR is only for triggering the CI tests. <!--- 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 [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] 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 23:21:04 +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#7758
No description provided.