[PR #7073] [MERGED] fix: launch review issues 0.7.9 #7717

Closed
opened 2026-03-23 23:20:53 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7073
Author: @richardshiue
Created: 12/28/2024
Status: Merged
Merged: 12/29/2024
Merged by: @appflowy

Base: mainHead: fix/launch-review-0.7.9


📝 Commits (10+)

  • 2f5a239 fix: disable select sources when on local AI
  • 11c100f chore: tooltips for right sidebar actions
  • 77e7b90 chore: update selection after inserting into existing page
  • 2e4a2fb fix: mobile select sources button background color
  • 818d80e fix: ai response metadata
  • 3a4ccd8 chore: don't update selected sources section until reopen
  • ac75b1e chore: show views from all spaces in select sources menu
  • 8eb6154 chore: revert podfile changes
  • f364601 chore: decrease spacing between metadata and hover actions
  • 25718ed chore: improve placeholder for ai message metadata

📊 Changes

13 files changed (+182 additions, -74 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/ai_prompt_input_bloc.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_edit_document_service.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_select_sources_cubit.dart (+40 -24)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/desktop_ai_prompt_input.dart (+6 -0)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/mobile_ai_prompt_input.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/select_sources_bottom_sheet.dart (+4 -8)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/select_sources_menu.dart (+14 -11)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_message_action_bar.dart (+25 -3)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_metadata.dart (+78 -23)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_text_message.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/application/document_bloc.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+2 -0)
📝 frontend/resources/translations/en.json (+1 -0)

📄 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/7073 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 12/28/2024 **Status:** ✅ Merged **Merged:** 12/29/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix/launch-review-0.7.9` --- ### 📝 Commits (10+) - [`2f5a239`](https://github.com/AppFlowy-IO/AppFlowy/commit/2f5a23948641eddef851a370f7c41465253aca2c) fix: disable select sources when on local AI - [`11c100f`](https://github.com/AppFlowy-IO/AppFlowy/commit/11c100f90cc7d0d330b898f32bc7d36e63a82522) chore: tooltips for right sidebar actions - [`77e7b90`](https://github.com/AppFlowy-IO/AppFlowy/commit/77e7b9040a8ba245c7dd7d0d42dc6b7bf1a5959e) chore: update selection after inserting into existing page - [`2e4a2fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e4a2fbc7ad256c33ceebbc1d06d38ee0b6008a5) fix: mobile select sources button background color - [`818d80e`](https://github.com/AppFlowy-IO/AppFlowy/commit/818d80e3a75e6df5844d4a346be5a1ddf1e4fa96) fix: ai response metadata - [`3a4ccd8`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a4ccd8e2ad75f7967f44f4af5ae165cd5b30db9) chore: don't update selected sources section until reopen - [`ac75b1e`](https://github.com/AppFlowy-IO/AppFlowy/commit/ac75b1ef8a8ed581e084c1638db02889aa927ff9) chore: show views from all spaces in select sources menu - [`8eb6154`](https://github.com/AppFlowy-IO/AppFlowy/commit/8eb6154627518665195d830dd81b0e4543603e76) chore: revert podfile changes - [`f364601`](https://github.com/AppFlowy-IO/AppFlowy/commit/f3646019c0c7712c9a63d0e4fe5ac589e1b329b9) chore: decrease spacing between metadata and hover actions - [`25718ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/25718ed13db58347575532aba1f85dd348bdbd87) chore: improve placeholder for ai message metadata ### 📊 Changes **13 files changed** (+182 additions, -74 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/ai_prompt_input_bloc.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_edit_document_service.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_select_sources_cubit.dart` (+40 -24) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/desktop_ai_prompt_input.dart` (+6 -0) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/mobile_ai_prompt_input.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/select_sources_bottom_sheet.dart` (+4 -8) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/select_sources_menu.dart` (+14 -11) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_message_action_bar.dart` (+25 -3) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_metadata.dart` (+78 -23) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/message/ai_text_message.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/document_bloc.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+2 -0) 📝 `frontend/resources/translations/en.json` (+1 -0) </details> ### 📄 Description - [x] [fix: disable select sources when on local AI](https://github.com/AppFlowy-IO/AppFlowy/commit/341dcca28c2428933801aff0f12d1e18d73b7226) - [x] [chore: tooltips for right sidebar actions](https://github.com/AppFlowy-IO/AppFlowy/commit/345fbf0225a2fead864ad92e3db3f447ec345048) - [x] [chore: update selection after inserting into existing page](https://github.com/AppFlowy-IO/AppFlowy/commit/15b6ae5b887a76eddd3911c4f5afdb365c5692d4) - [x] [fix: mobile select sources button background color](https://github.com/AppFlowy-IO/AppFlowy/commit/15ad866f638d3bde5d776788b182b5259f29b483) - [x] [fix: ai response metadata button name and appearance](https://github.com/AppFlowy-IO/AppFlowy/commit/79becffeafbe66fe70c68ed0909762c8eacb4149) - [x] [chore: don't update selected sources section until reopen](https://github.com/AppFlowy-IO/AppFlowy/commit/549e18594faa2cbc1ba5630ac1a51d60df47d029) - [x] [chore: show views from all spaces in select sources menu](https://github.com/AppFlowy-IO/AppFlowy/commit/43b3c4df46eb7e7e7699a9833ac9edb9e97eb164) - [x] [chore: decrease spacing between metadata and hover actions](https://github.com/AppFlowy-IO/AppFlowy/pull/7073/commits/e84e913656ed73ccad17ae38955dafec4893d797) ### 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 - [x] 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. - [x] 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:20:53 +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#7717
No description provided.