[PR #2552] [MERGED] Feat/config #5295

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2552
Author: @appflowy
Created: 5/17/2023
Status: Merged
Merged: 5/17/2023
Merged by: @appflowy

Base: developHead: feat/config


📝 Commits (2)

  • 83fa069 feat: save project config
  • b17ae37 feat: implement dart key value store

📊 Changes

37 files changed (+250 additions, -19 deletions)

View changed files

frontend/appflowy_flutter/lib/core/config/config.dart (+17 -0)
frontend/appflowy_flutter/lib/core/config/kv.dart (+33 -0)
📝 frontend/appflowy_flutter/lib/core/notification/document_notification.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/core/notification/folder_notification.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/core/notification/grid_notification.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/core/notification/notification_helper.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/core/notification/user_notification.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/field/field_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/filter/filter_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/group/group_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/layout/calendar_setting_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_setting_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/setting/setting_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/sort/sort_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/view/view_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/group_controller.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/trash/application/trash_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/user/application/user_listener.dart (+2 -2)

...and 17 more files

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2552 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/17/2023 **Status:** ✅ Merged **Merged:** 5/17/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `feat/config` --- ### 📝 Commits (2) - [`83fa069`](https://github.com/AppFlowy-IO/AppFlowy/commit/83fa069a7658506705b6cd542219a9fe894f2353) feat: save project config - [`b17ae37`](https://github.com/AppFlowy-IO/AppFlowy/commit/b17ae376378ccdaa3112691860587f47078484e2) feat: implement dart key value store ### 📊 Changes **37 files changed** (+250 additions, -19 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/core/config/config.dart` (+17 -0) ➕ `frontend/appflowy_flutter/lib/core/config/kv.dart` (+33 -0) 📝 `frontend/appflowy_flutter/lib/core/notification/document_notification.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/core/notification/folder_notification.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/core/notification/grid_notification.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/core/notification/notification_helper.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/core/notification/user_notification.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/field/field_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/filter/filter_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/group/group_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/calendar_setting_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_setting_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/setting/setting_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/sort/sort_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/view/view_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/group_controller.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/trash/application/trash_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/user/application/user_listener.dart` (+2 -2) _...and 17 more files_ </details> ### 📄 Description #### PR Checklist - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] 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 22:18:06 +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#5295
No description provided.