[PR #1835] [MERGED] Feat/appflowy tauri #4965

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

📋 Pull Request Information

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

Base: mainHead: feat/appflowy_tauri


📝 Commits (10+)

  • 602b695 chore: create folders
  • 58f2fd4 chore: Merge branch 'main' into feat/appflowy_tauri
  • af3837b chore: setup taliwindcss (#1742)
  • 7ebc69b feat: greater to blockquote
  • ffddc61 fix: local variable 'text' isn't used
  • 2aad0ac feat: #1061 Support markdown to create a blockquote
  • a18075d fix: #1732 the actions of an image look different than the ones of a code block
  • 4096b65 fix: command of double tilde to strikethrough
  • eddd241 feat: callout (#1732)
  • 3f00bf1 Feat/http server adapt (#1754)

📊 Changes

129 files changed (+4288 additions, -170 deletions)

View changed files

frontend/app_flowy/lib/plugins/grid/application/row/row_listener.dart (+46 -0)
📝 frontend/app_flowy/lib/workspace/application/app/app_service.dart (+48 -0)
frontend/appflowy_tauri/.eslintignore (+2 -0)
frontend/appflowy_tauri/.eslintrc.cjs (+54 -0)
frontend/appflowy_tauri/.prettierignore (+19 -0)
frontend/appflowy_tauri/.prettierrc.cjs (+20 -0)
📝 frontend/appflowy_tauri/package.json (+15 -1)
frontend/appflowy_tauri/postcss.config.cjs (+6 -0)
frontend/appflowy_tauri/src/appflowy_app/App.css (+0 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+35 -35)
📝 frontend/appflowy_tauri/src/appflowy_app/assets/react.svg (+0 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx (+137 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestColors/TestColors.tsx (+44 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestFonts/TestFonts.tsx (+30 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx (+40 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx (+41 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/SearchInput.tsx (+21 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/AddSvg.tsx (+8 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/AppflowyLogo.tsx (+42 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/BoardSvg.tsx (+20 -0)

...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/1835 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/10/2023 **Status:** ✅ Merged **Merged:** 2/10/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/appflowy_tauri` --- ### 📝 Commits (10+) - [`602b695`](https://github.com/AppFlowy-IO/AppFlowy/commit/602b695f6b96b7139056b1c5100acf92ba5ee4a8) chore: create folders - [`58f2fd4`](https://github.com/AppFlowy-IO/AppFlowy/commit/58f2fd411ea346eb1c19a2fcb1579b0ce9456f66) chore: Merge branch 'main' into feat/appflowy_tauri - [`af3837b`](https://github.com/AppFlowy-IO/AppFlowy/commit/af3837b7f6153401899c0fb823ac6370d9403e57) chore: setup taliwindcss (#1742) - [`7ebc69b`](https://github.com/AppFlowy-IO/AppFlowy/commit/7ebc69b583436331ed06ce526799377431fb1c20) feat: greater to blockquote - [`ffddc61`](https://github.com/AppFlowy-IO/AppFlowy/commit/ffddc61db84713e79022953dcc126ffe183cdb83) fix: local variable 'text' isn't used - [`2aad0ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/2aad0acbab2c2975d163aefdff5652881cf43bf7) feat: #1061 Support markdown to create a blockquote - [`a18075d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a18075d74a44a0e956d7dadbbf90a0d244f0b446) fix: #1732 the actions of an image look different than the ones of a code block - [`4096b65`](https://github.com/AppFlowy-IO/AppFlowy/commit/4096b65072ec00a31bfd80e98a558f8747696dec) fix: command of double tilde to strikethrough - [`eddd241`](https://github.com/AppFlowy-IO/AppFlowy/commit/eddd24154416431090b43eaedc482570ee4c5a6c) feat: callout (#1732) - [`3f00bf1`](https://github.com/AppFlowy-IO/AppFlowy/commit/3f00bf16093a5501a682dba60c75ab73c18850a4) Feat/http server adapt (#1754) ### 📊 Changes **129 files changed** (+4288 additions, -170 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/lib/plugins/grid/application/row/row_listener.dart` (+46 -0) 📝 `frontend/app_flowy/lib/workspace/application/app/app_service.dart` (+48 -0) ➕ `frontend/appflowy_tauri/.eslintignore` (+2 -0) ➕ `frontend/appflowy_tauri/.eslintrc.cjs` (+54 -0) ➕ `frontend/appflowy_tauri/.prettierignore` (+19 -0) ➕ `frontend/appflowy_tauri/.prettierrc.cjs` (+20 -0) 📝 `frontend/appflowy_tauri/package.json` (+15 -1) ➕ `frontend/appflowy_tauri/postcss.config.cjs` (+6 -0) ➖ `frontend/appflowy_tauri/src/appflowy_app/App.css` (+0 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+35 -35) 📝 `frontend/appflowy_tauri/src/appflowy_app/assets/react.svg` (+0 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx` (+137 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestColors/TestColors.tsx` (+44 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestFonts/TestFonts.tsx` (+30 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx` (+40 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx` (+41 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/SearchInput.tsx` (+21 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/AddSvg.tsx` (+8 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/AppflowyLogo.tsx` (+42 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/BoardSvg.tsx` (+20 -0) _...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:37 +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#4965
No description provided.