[PR #5835] [MERGED] feat: Chat app download #7037

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5835
Author: @appflowy
Created: 7/30/2024
Status: Merged
Merged: 7/30/2024
Merged by: @appflowy

Base: mainHead: chat_app_download


📝 Commits (6)

  • f4122ce chore: downlaod chat app
  • ef49730 chore: download app
  • 8136898 Merge branch 'main' into chat_app_download
  • 69b4a4b chore: disable local ai in billing
  • f6ef014 chore: remove watcher
  • 712abcd chore: flutter analyzer

📊 Changes

31 files changed (+884 additions, -420 deletions)

View changed files

frontend/appflowy_flutter/lib/workspace/application/settings/ai/download_offline_ai_app_bloc.dart (+41 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/ai/local_ai_chat_bloc.dart (+65 -39)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/ai/plugin_state_bloc.dart (+38 -14)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+6 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/init_local_ai.dart (+17 -14)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/local_ai_chat_setting.dart (+89 -134)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/plugin_state.dart (+124 -4)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/settings_ai_view.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_billing_view.dart (+17 -19)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_view.dart (+37 -39)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+15 -15)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+3 -3)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+15 -15)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+3 -3)
📝 frontend/resources/translations/en.json (+9 -1)
📝 frontend/rust-lib/Cargo.lock (+105 -14)
📝 frontend/rust-lib/Cargo.toml (+4 -4)
📝 frontend/rust-lib/flowy-chat-pub/src/cloud.rs (+1 -1)
📝 frontend/rust-lib/flowy-chat/Cargo.toml (+3 -0)

...and 11 more files

📄 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/5835 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/30/2024 **Status:** ✅ Merged **Merged:** 7/30/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `chat_app_download` --- ### 📝 Commits (6) - [`f4122ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/f4122ceadd048424f3de5633f79ab64480c8b09e) chore: downlaod chat app - [`ef49730`](https://github.com/AppFlowy-IO/AppFlowy/commit/ef497305ac80844210f2244615e5b7a848aad86b) chore: download app - [`8136898`](https://github.com/AppFlowy-IO/AppFlowy/commit/81368980b27b5056261957518963d06db7b13ed2) Merge branch 'main' into chat_app_download - [`69b4a4b`](https://github.com/AppFlowy-IO/AppFlowy/commit/69b4a4bceba1ecf42d47ca729a5e673cbc127e3e) chore: disable local ai in billing - [`f6ef014`](https://github.com/AppFlowy-IO/AppFlowy/commit/f6ef014e67d77cc5a0bc04437294d8ab67205fc6) chore: remove watcher - [`712abcd`](https://github.com/AppFlowy-IO/AppFlowy/commit/712abcde9a6aa68154364d04cafc704fd7e023b8) chore: flutter analyzer ### 📊 Changes **31 files changed** (+884 additions, -420 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/workspace/application/settings/ai/download_offline_ai_app_bloc.dart` (+41 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/ai/local_ai_chat_bloc.dart` (+65 -39) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/ai/plugin_state_bloc.dart` (+38 -14) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+6 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/init_local_ai.dart` (+17 -14) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/local_ai_chat_setting.dart` (+89 -134) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/plugin_state.dart` (+124 -4) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/setting_ai_view/settings_ai_view.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_billing_view.dart` (+17 -19) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_view.dart` (+37 -39) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+15 -15) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+3 -3) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+15 -15) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+3 -3) 📝 `frontend/resources/translations/en.json` (+9 -1) 📝 `frontend/rust-lib/Cargo.lock` (+105 -14) 📝 `frontend/rust-lib/Cargo.toml` (+4 -4) 📝 `frontend/rust-lib/flowy-chat-pub/src/cloud.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-chat/Cargo.toml` (+3 -0) _...and 11 more files_ </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 23:17: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#7037
No description provided.