From 6a80c23a50a55a1dbca13f1088dbec894cb2d9ed Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:33:32 +0900 Subject: [PATCH 1/2] chore(frontend): enable enableFolderPageView by default --- packages/frontend/src/preferences/def.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/preferences/def.ts b/packages/frontend/src/preferences/def.ts index 8fd71aa51a..df9c366118 100644 --- a/packages/frontend/src/preferences/def.ts +++ b/packages/frontend/src/preferences/def.ts @@ -508,7 +508,7 @@ export const PREF_DEF = definePreferences({ default: false, }, 'experimental.enableFolderPageView': { - default: false, + default: true, }, 'experimental.enableHapticFeedback': { default: false, From bcb207371575ffe81ecadab00e36e0a7d8a71eef Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Tue, 16 Sep 2025 11:26:35 +0900 Subject: [PATCH 2/2] =?UTF-8?q?enhance(backend):=20=E5=88=9D=E6=9C=9F?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=82=92=E3=82=B9=E3=82=AD=E3=83=83=E3=83=97?= =?UTF-8?q?=E3=81=97=E3=81=9F=E5=A0=B4=E5=90=88=E3=81=AE=E5=88=9D=E6=9C=9F?= =?UTF-8?q?=E7=8A=B6=E6=85=8B=E3=83=9D=E3=83=AA=E3=82=B7=E3=83=BC=E3=81=A7?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=83=9D=E3=83=BC=E3=83=88=E7=B3=BB=E3=82=92?= =?UTF-8?q?=E3=82=AA=E3=83=97=E3=83=88=E3=82=A4=E3=83=B3=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve #16540 --- packages/backend/src/core/RoleService.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/backend/src/core/RoleService.ts b/packages/backend/src/core/RoleService.ts index 7dc07ef4dd..c405f1d9c9 100644 --- a/packages/backend/src/core/RoleService.ts +++ b/packages/backend/src/core/RoleService.ts @@ -101,11 +101,11 @@ export const DEFAULT_POLICIES: RolePolicies = { userEachUserListsLimit: 50, rateLimitFactor: 1, avatarDecorationLimit: 1, - canImportAntennas: true, - canImportBlocking: true, - canImportFollowing: true, - canImportMuting: true, - canImportUserLists: true, + canImportAntennas: false, + canImportBlocking: false, + canImportFollowing: false, + canImportMuting: false, + canImportUserLists: false, chatAvailability: 'available', uploadableFileTypes: [ 'text/plain',