[PR #4732] [MERGED] Fix doc open sync #6412

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4732
Author: @appflowy
Created: 2/24/2024
Status: Merged
Merged: 2/24/2024
Merged by: @appflowy

Base: mainHead: fix_doc_open_sync


📝 Commits (6)

  • cd6dae3 chore: bump client api
  • 028aac1 fix: open document and folder
  • 2a97dd9 Merge branch 'main' into fix_doc_open_sync
  • 6ea12ae chore: bump collab rev
  • 9c515a7 chore: fix wasm build
  • 99cf7e8 chore: fix warnings

📊 Changes

20 files changed (+299 additions, -225 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+21 -18)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+8 -8)
📝 frontend/appflowy_tauri/src-tauri/src/main.rs (+2 -2)
📝 frontend/appflowy_web/wasm-libs/Cargo.lock (+19 -17)
📝 frontend/appflowy_web/wasm-libs/Cargo.toml (+8 -8)
📝 frontend/appflowy_web/wasm-libs/af-wasm/src/integrate/server.rs (+1 -1)
📝 frontend/rust-lib/Cargo.lock (+21 -18)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/collab-integrate/src/wasm/plugin_provider.rs (+2 -2)
📝 frontend/rust-lib/flowy-document/src/manager.rs (+33 -30)
📝 frontend/rust-lib/flowy-error/Cargo.toml (+2 -0)
📝 frontend/rust-lib/flowy-error/src/errors.rs (+4 -0)
📝 frontend/rust-lib/flowy-error/src/impl_from/collab.rs (+17 -1)
📝 frontend/rust-lib/flowy-folder/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-folder/src/manager.rs (+48 -4)
📝 frontend/rust-lib/flowy-folder/src/manager_init.rs (+28 -28)
📝 frontend/rust-lib/flowy-user/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-user/src/migrations/document_empty_content.rs (+23 -24)
📝 frontend/rust-lib/flowy-user/src/migrations/workspace_and_favorite_v1.rs (+27 -28)
📝 frontend/rust-lib/flowy-user/src/migrations/workspace_trash_v1.rs (+25 -26)

📄 Description

Feature Preview


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/4732 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/24/2024 **Status:** ✅ Merged **Merged:** 2/24/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_doc_open_sync` --- ### 📝 Commits (6) - [`cd6dae3`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd6dae39ad13aab81577f912f41f44c6dcf638a8) chore: bump client api - [`028aac1`](https://github.com/AppFlowy-IO/AppFlowy/commit/028aac1ad699a3004580a844fc4a6344e8acf03c) fix: open document and folder - [`2a97dd9`](https://github.com/AppFlowy-IO/AppFlowy/commit/2a97dd993a6a9812ed05ea7761638e7d3321a773) Merge branch 'main' into fix_doc_open_sync - [`6ea12ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ea12ae0dd416bb39fea1b942df778c87fa529ac) chore: bump collab rev - [`9c515a7`](https://github.com/AppFlowy-IO/AppFlowy/commit/9c515a7bd48be10c5f3619d9b871b906f09ee108) chore: fix wasm build - [`99cf7e8`](https://github.com/AppFlowy-IO/AppFlowy/commit/99cf7e88235c2a5de6ad06ad467657977b1736e5) chore: fix warnings ### 📊 Changes **20 files changed** (+299 additions, -225 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+21 -18) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+8 -8) 📝 `frontend/appflowy_tauri/src-tauri/src/main.rs` (+2 -2) 📝 `frontend/appflowy_web/wasm-libs/Cargo.lock` (+19 -17) 📝 `frontend/appflowy_web/wasm-libs/Cargo.toml` (+8 -8) 📝 `frontend/appflowy_web/wasm-libs/af-wasm/src/integrate/server.rs` (+1 -1) 📝 `frontend/rust-lib/Cargo.lock` (+21 -18) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/collab-integrate/src/wasm/plugin_provider.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-document/src/manager.rs` (+33 -30) 📝 `frontend/rust-lib/flowy-error/Cargo.toml` (+2 -0) 📝 `frontend/rust-lib/flowy-error/src/errors.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-error/src/impl_from/collab.rs` (+17 -1) 📝 `frontend/rust-lib/flowy-folder/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-folder/src/manager.rs` (+48 -4) 📝 `frontend/rust-lib/flowy-folder/src/manager_init.rs` (+28 -28) 📝 `frontend/rust-lib/flowy-user/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-user/src/migrations/document_empty_content.rs` (+23 -24) 📝 `frontend/rust-lib/flowy-user/src/migrations/workspace_and_favorite_v1.rs` (+27 -28) 📝 `frontend/rust-lib/flowy-user/src/migrations/workspace_trash_v1.rs` (+25 -26) </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 [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 22:23:06 +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#6412
No description provided.