[PR #2693] [CLOSED] Fix read me content #5369

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2693
Author: @LucasXu0
Created: 6/3/2023
Status: Closed

Base: developHead: fix_read_me_content


📝 Commits (7)

  • 4ee2eb4 feat: support create multiple level views
  • 5ad03a4 refactor: rm document data wrapper
  • 6a85bbe chore: add docs
  • 98fc63b fix: default read me content
  • ceb9feb chore: replace DocumentData::from with into
  • c28eb34 chore: make the data parameter of create_document as option
  • c2564bd feat: public the json to document data pb api

📊 Changes

13 files changed (+540 additions, -172 deletions)

View changed files

📝 frontend/rust-lib/flowy-core/assets/read_me.json (+5 -0)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder2_deps.rs (+39 -9)
frontend/rust-lib/flowy-document2/src/document_block_keys.rs (+2 -0)
📝 frontend/rust-lib/flowy-document2/src/document_data.rs (+55 -58)
📝 frontend/rust-lib/flowy-document2/src/entities.rs (+34 -0)
📝 frontend/rust-lib/flowy-document2/src/event_handler.rs (+24 -11)
📝 frontend/rust-lib/flowy-document2/src/event_map.rs (+9 -2)
📝 frontend/rust-lib/flowy-document2/src/lib.rs (+1 -0)
📝 frontend/rust-lib/flowy-document2/src/manager.rs (+9 -3)
📝 frontend/rust-lib/flowy-document2/tests/document/document_insert_test.rs (+7 -7)
📝 frontend/rust-lib/flowy-document2/tests/document/document_test.rs (+22 -20)
📝 frontend/rust-lib/flowy-folder2/src/user_default.rs (+57 -61)
📝 frontend/rust-lib/flowy-folder2/src/view_operation.rs (+276 -1)

📄 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/2693 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 6/3/2023 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `fix_read_me_content` --- ### 📝 Commits (7) - [`4ee2eb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/4ee2eb44bed6c1bc08ed70f5514153d3ae668e7f) feat: support create multiple level views - [`5ad03a4`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ad03a41cdd0a2c1336ddce932c2ffa5ee977aae) refactor: rm document data wrapper - [`6a85bbe`](https://github.com/AppFlowy-IO/AppFlowy/commit/6a85bbed7d4f043cdb43a82845b662e990c9f45a) chore: add docs - [`98fc63b`](https://github.com/AppFlowy-IO/AppFlowy/commit/98fc63be6895c431400ac569c08269d9b11c7b81) fix: default read me content - [`ceb9feb`](https://github.com/AppFlowy-IO/AppFlowy/commit/ceb9feb11df752648347ee1002dae847045227d5) chore: replace DocumentData::from with into - [`c28eb34`](https://github.com/AppFlowy-IO/AppFlowy/commit/c28eb344f82aa756e6e928b24bccf584d0776aa4) chore: make the data parameter of create_document as option - [`c2564bd`](https://github.com/AppFlowy-IO/AppFlowy/commit/c2564bd845f8bc0c0875944dd823efb7d968b0d8) feat: public the json to document data pb api ### 📊 Changes **13 files changed** (+540 additions, -172 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/flowy-core/assets/read_me.json` (+5 -0) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder2_deps.rs` (+39 -9) ➕ `frontend/rust-lib/flowy-document2/src/document_block_keys.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-document2/src/document_data.rs` (+55 -58) 📝 `frontend/rust-lib/flowy-document2/src/entities.rs` (+34 -0) 📝 `frontend/rust-lib/flowy-document2/src/event_handler.rs` (+24 -11) 📝 `frontend/rust-lib/flowy-document2/src/event_map.rs` (+9 -2) 📝 `frontend/rust-lib/flowy-document2/src/lib.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-document2/src/manager.rs` (+9 -3) 📝 `frontend/rust-lib/flowy-document2/tests/document/document_insert_test.rs` (+7 -7) 📝 `frontend/rust-lib/flowy-document2/tests/document/document_test.rs` (+22 -20) 📝 `frontend/rust-lib/flowy-folder2/src/user_default.rs` (+57 -61) 📝 `frontend/rust-lib/flowy-folder2/src/view_operation.rs` (+276 -1) </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:18:26 +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#5369
No description provided.