[PR #1902] [MERGED] Feat/appflowy tauri 2 #5005

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1902
Author: @appflowy
Created: 2/28/2023
Status: Merged
Merged: 2/28/2023
Merged by: @appflowy

Base: mainHead: feat/appflowy_tauri_2


📝 Commits (10+)

  • bbef8b4 chore: rename classes to models
  • adfbccc refactor: add effects and reducers folder
  • c0683c9 chore: update user data storage path
  • 4389c1d chore:Merge branch 'main' into feat/appflowy_tauri_2
  • 53cc058 chore: subscribe callback
  • 209d53a chore: nav items persist, board layout (#1879)
  • 3ac07f5 chore: Merge branch 'main' into feat/appflowy_tauri_2
  • c6bc497 chore: fix compile errors
  • 4889cb9 chore: remove unused codes
  • e55adf0 chore: open workspace after user register

📊 Changes

106 files changed (+2847 additions, -515 deletions)

View changed files

📝 frontend/.vscode/tasks.json (+4 -7)
📝 frontend/appflowy_tauri/package.json (+5 -2)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+1 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -0)
📝 frontend/appflowy_tauri/src-tauri/src/init.rs (+15 -4)
📝 frontend/appflowy_tauri/src-tauri/tauri.conf.json (+3 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+7 -7)
frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/DatabaseTestHelper.ts (+106 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestAPI.tsx (+16 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx (+2 -6)
frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestGrid.tsx (+93 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Database.hooks.ts (+45 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/LanguageSelectPopup.tsx (+44 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx (+18 -10)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/getColor.ts (+26 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/CloseSvg.tsx (+16 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/DropDownShowSvg.tsx (+10 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EarthSvg.tsx (+21 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EyeClosedSvg.tsx (+4 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EyeOpenSvg.tsx (+2 -2)

...and 80 more files

📄 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/1902 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/28/2023 **Status:** ✅ Merged **Merged:** 2/28/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/appflowy_tauri_2` --- ### 📝 Commits (10+) - [`bbef8b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/bbef8b46e58bf192d4e82aa71974456c617eb4ba) chore: rename classes to models - [`adfbccc`](https://github.com/AppFlowy-IO/AppFlowy/commit/adfbccc21153c6b4d9061ba4956977b666335c86) refactor: add effects and reducers folder - [`c0683c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/c0683c9fd5b56c861f24180425d636b85c577f8d) chore: update user data storage path - [`4389c1d`](https://github.com/AppFlowy-IO/AppFlowy/commit/4389c1d0cc778dfea6e326c4700df646e43ebdb2) chore:Merge branch 'main' into feat/appflowy_tauri_2 - [`53cc058`](https://github.com/AppFlowy-IO/AppFlowy/commit/53cc058ce54e5c4fe2541bdef02eb6a85ae4a98e) chore: subscribe callback - [`209d53a`](https://github.com/AppFlowy-IO/AppFlowy/commit/209d53a1136c43b0285fa0cf69710b61293407ce) chore: nav items persist, board layout (#1879) - [`3ac07f5`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ac07f54b74525f92d38b9ceb55aaae9cf3559ab) chore: Merge branch 'main' into feat/appflowy_tauri_2 - [`c6bc497`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6bc4972c7117026461be275a5ac8215de2c7f17) chore: fix compile errors - [`4889cb9`](https://github.com/AppFlowy-IO/AppFlowy/commit/4889cb9bdd917fd5b1b9fa8ff8569395dd70def8) chore: remove unused codes - [`e55adf0`](https://github.com/AppFlowy-IO/AppFlowy/commit/e55adf0df9028af3aeff053f3850bb58a4e3729a) chore: open workspace after user register ### 📊 Changes **106 files changed** (+2847 additions, -515 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/tasks.json` (+4 -7) 📝 `frontend/appflowy_tauri/package.json` (+5 -2) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+1 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -0) 📝 `frontend/appflowy_tauri/src-tauri/src/init.rs` (+15 -4) 📝 `frontend/appflowy_tauri/src-tauri/tauri.conf.json` (+3 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+7 -7) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/DatabaseTestHelper.ts` (+106 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestAPI.tsx` (+16 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx` (+2 -6) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestGrid.tsx` (+93 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Database.hooks.ts` (+45 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/LanguageSelectPopup.tsx` (+44 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx` (+18 -10) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/getColor.ts` (+26 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/CloseSvg.tsx` (+16 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/DropDownShowSvg.tsx` (+10 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EarthSvg.tsx` (+21 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EyeClosedSvg.tsx` (+4 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/EyeOpenSvg.tsx` (+2 -2) _...and 80 more files_ </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 22:16:48 +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#5005
No description provided.