[PR #6636] [CLOSED] Custom namespace v3 zack #7500

Closed
opened 2026-03-23 23:19:55 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6636
Author: @speed2exe
Created: 10/28/2024
Status: Closed

Base: mainHead: custom_namespace_v3_zack


📝 Commits (10+)

  • 1821ec2 fix: add libbz2.tbd on macos
  • 8e94de3 feat: add sites tab in settings page
  • 04bb279 Merge branch 'main' into custom_namespace_v3
  • a56e610 feat: custom domain (#6518)
  • badb58c feat: list all the published views in settings page
  • d0bc4c7 feat: render view icon and view name in Sites tab
  • 10e69dd feat: click published page name to open the page in app
  • 4554264 feat: add three dots button in published view item
  • 62d6c5a feat: add published views list and more actions
  • c96370a feat: support visit site

📊 Changes

49 files changed (+2519 additions, -107 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/shared/share/constants.dart (+13 -5)
frontend/appflowy_flutter/lib/shared/colors.dart (+16 -0)
📝 frontend/appflowy_flutter/lib/util/string_extension.dart (+4 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/settings_dialog_bloc.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart (+15 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_view.dart (+3 -8)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/constants.dart (+59 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_header.dart (+28 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_item.dart (+166 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_more_action.dart (+167 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_settings_dialog.dart (+256 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/home_page_menu.dart (+74 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/publish_info_view_item.dart (+53 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_item.dart (+82 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_item_header.dart (+37 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_more_action.dart (+160 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_settings_dialog.dart (+179 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page_item.dart (+118 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/settings_sites_bloc.dart (+300 -0)

...and 29 more files

📄 Description

to be merge with https://github.com/LucasXu0/AppFlowy/tree/custom_namespace_v3


🔄 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/6636 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 10/28/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `custom_namespace_v3_zack` --- ### 📝 Commits (10+) - [`1821ec2`](https://github.com/AppFlowy-IO/AppFlowy/commit/1821ec2942c1afb37a9ad5c90a3ac32ed431b094) fix: add libbz2.tbd on macos - [`8e94de3`](https://github.com/AppFlowy-IO/AppFlowy/commit/8e94de33e5c39a5e9d5c08e090123b14c91a503f) feat: add sites tab in settings page - [`04bb279`](https://github.com/AppFlowy-IO/AppFlowy/commit/04bb279b61eb74bef3db9778dfcf6ab981dea954) Merge branch 'main' into custom_namespace_v3 - [`a56e610`](https://github.com/AppFlowy-IO/AppFlowy/commit/a56e610a14b7ed39393b3c3e36e7a4e1be3bb990) feat: custom domain (#6518) - [`badb58c`](https://github.com/AppFlowy-IO/AppFlowy/commit/badb58cfcf681b2c6ff5364b41707fb931b52b92) feat: list all the published views in settings page - [`d0bc4c7`](https://github.com/AppFlowy-IO/AppFlowy/commit/d0bc4c7e94d15c93416a632dbff808ce989e3c58) feat: render view icon and view name in Sites tab - [`10e69dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/10e69dd1f77e495b0fd7d5c92ef8cec257da35da) feat: click published page name to open the page in app - [`4554264`](https://github.com/AppFlowy-IO/AppFlowy/commit/455426452a156f14ce2dd8d26ec6fd31abf477d3) feat: add three dots button in published view item - [`62d6c5a`](https://github.com/AppFlowy-IO/AppFlowy/commit/62d6c5a359db8da89200c8622855887422c6a1e3) feat: add published views list and more actions - [`c96370a`](https://github.com/AppFlowy-IO/AppFlowy/commit/c96370aaf64b650db6b82529b94f149fe11b1436) feat: support visit site ### 📊 Changes **49 files changed** (+2519 additions, -107 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/constants.dart` (+13 -5) ➕ `frontend/appflowy_flutter/lib/shared/colors.dart` (+16 -0) 📝 `frontend/appflowy_flutter/lib/util/string_extension.dart` (+4 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/settings_dialog_bloc.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart` (+15 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_view.dart` (+3 -8) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/constants.dart` (+59 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_header.dart` (+28 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_item.dart` (+166 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_more_action.dart` (+167 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/domain_settings_dialog.dart` (+256 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/domain/home_page_menu.dart` (+74 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/publish_info_view_item.dart` (+53 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_item.dart` (+82 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_item_header.dart` (+37 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_more_action.dart` (+160 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page/published_view_settings_dialog.dart` (+179 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/published_page_item.dart` (+118 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/sites/settings_sites_bloc.dart` (+300 -0) _...and 29 more files_ </details> ### 📄 Description to be merge with https://github.com/LucasXu0/AppFlowy/tree/custom_namespace_v3 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:19:55 +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#7500
No description provided.