[PR #5473] [MERGED] fix: search improvements #6838

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5473
Author: @Xazin
Created: 6/5/2024
Status: Merged
Merged: 6/5/2024
Merged by: @Xazin

Base: mainHead: fix/search-improvements


📝 Commits (10+)

  • d1cd32c fix: search workspace sync indexing
  • d9377c8 chore: update collab rev temporarily
  • 627feaf feat: revert comparison and implement index check
  • 132cf9d chore: merge branch 'upstream/main' into fix/search-sync-index
  • dbb344c chore: fixes after merg
  • fb24dd0 feat: clean code + support delete workspace
  • 8a87920 chore: merge branch 'upstream/main' into fix/search-sync-index
  • 09e0561 fix: improve code
  • 25d0cd4 chore: merge branch 'upstream/main'
  • 4cd5e80 fix: improvements after merge

📊 Changes

16 files changed (+240 additions, -124 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_field.dart (+29 -3)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -1)
📝 frontend/appflowy_web/wasm-libs/Cargo.toml (+1 -1)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+1 -0)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+3 -10)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/user_deps.rs (+8 -0)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+8 -3)
📝 frontend/rust-lib/flowy-folder/src/entities/workspace.rs (+0 -5)
📝 frontend/rust-lib/flowy-folder/src/manager.rs (+8 -0)
📝 frontend/rust-lib/flowy-folder/src/manager_init.rs (+36 -24)
📝 frontend/rust-lib/flowy-search-pub/src/entities.rs (+8 -1)
📝 frontend/rust-lib/flowy-search/src/folder/indexer.rs (+117 -68)
📝 frontend/rust-lib/flowy-sqlite/src/schema.rs (+6 -6)
📝 frontend/rust-lib/flowy-user-pub/src/workspace_service.rs (+3 -0)
📝 frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs (+10 -1)

📄 Description

No description provided


🔄 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/5473 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 6/5/2024 **Status:** ✅ Merged **Merged:** 6/5/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `fix/search-improvements` --- ### 📝 Commits (10+) - [`d1cd32c`](https://github.com/AppFlowy-IO/AppFlowy/commit/d1cd32cd89313bfe92567190f47d8c6bdd02ddca) fix: search workspace sync indexing - [`d9377c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/d9377c89bddf57e5786ab49cc4c836d261d18c6f) chore: update collab rev temporarily - [`627feaf`](https://github.com/AppFlowy-IO/AppFlowy/commit/627feafa5fec47eb59e9e73a388f20c989be0644) feat: revert comparison and implement index check - [`132cf9d`](https://github.com/AppFlowy-IO/AppFlowy/commit/132cf9d1ec7ddd6e5454476cc0dfa1edc8299297) chore: merge branch 'upstream/main' into fix/search-sync-index - [`dbb344c`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbb344c6a124cbe0ff890e896432c3c8e441dfa0) chore: fixes after merg - [`fb24dd0`](https://github.com/AppFlowy-IO/AppFlowy/commit/fb24dd04e513bd655a5c8db4150dcc200e376708) feat: clean code + support delete workspace - [`8a87920`](https://github.com/AppFlowy-IO/AppFlowy/commit/8a879201051f5a9f672f204f8bc8cec71e6de073) chore: merge branch 'upstream/main' into fix/search-sync-index - [`09e0561`](https://github.com/AppFlowy-IO/AppFlowy/commit/09e0561ec7e66ee067b61b4db966a7e0d50439b1) fix: improve code - [`25d0cd4`](https://github.com/AppFlowy-IO/AppFlowy/commit/25d0cd4dd3d41fa77b8b3f923638839b113fd6cd) chore: merge branch 'upstream/main' - [`4cd5e80`](https://github.com/AppFlowy-IO/AppFlowy/commit/4cd5e800d29bccf6b07df1d4c8dd54dc8e5067d9) fix: improvements after merge ### 📊 Changes **16 files changed** (+240 additions, -124 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_field.dart` (+29 -3) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web/wasm-libs/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+1 -0) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+3 -10) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/user_deps.rs` (+8 -0) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+8 -3) 📝 `frontend/rust-lib/flowy-folder/src/entities/workspace.rs` (+0 -5) 📝 `frontend/rust-lib/flowy-folder/src/manager.rs` (+8 -0) 📝 `frontend/rust-lib/flowy-folder/src/manager_init.rs` (+36 -24) 📝 `frontend/rust-lib/flowy-search-pub/src/entities.rs` (+8 -1) 📝 `frontend/rust-lib/flowy-search/src/folder/indexer.rs` (+117 -68) 📝 `frontend/rust-lib/flowy-sqlite/src/schema.rs` (+6 -6) 📝 `frontend/rust-lib/flowy-user-pub/src/workspace_service.rs` (+3 -0) 📝 `frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs` (+10 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:16: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#6838
No description provided.