diff --git a/README.md b/README.md index 7c11bbed9..d64a73a39 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ ## 主要な変更点 +- ローカルタイムラインの位置をグローバルタイムラインの直前に移動 + - ローカルタイムラインよりもソーシャルタイムラインのほうが使いやすいと考えたため - 「Firefish について」のページに Misskey の主要な貢献者を表示 - このソフトウェアは Misskey のフォークであるため diff --git a/packages/client/src/pages/timeline.vue b/packages/client/src/pages/timeline.vue index 930a9635a..0c8a10711 100644 --- a/packages/client/src/pages/timeline.vue +++ b/packages/client/src/pages/timeline.vue @@ -97,15 +97,15 @@ const keymap = { let timelines = ["home"]; -if (isLocalTimelineAvailable) { - timelines.push("local"); -} if (isLocalTimelineAvailable) { timelines.push("social"); } if (isRecommendedTimelineAvailable) { timelines.push("recommended"); } +if (isLocalTimelineAvailable) { + timelines.push("local"); +} if (isGlobalTimelineAvailable) { timelines.push("global"); } @@ -229,16 +229,6 @@ const headerTabs = $computed(() => [ icon: "ph-house ph-bold ph-lg", iconOnly: true, }, - ...(isLocalTimelineAvailable - ? [ - { - key: "local", - title: i18n.ts._timelines.local, - icon: "ph-users ph-bold ph-lg", - iconOnly: true, - }, - ] - : []), ...(isLocalTimelineAvailable ? [ { @@ -259,6 +249,16 @@ const headerTabs = $computed(() => [ }, ] : []), + ...(isLocalTimelineAvailable + ? [ + { + key: "local", + title: i18n.ts._timelines.local, + icon: "ph-users ph-bold ph-lg", + iconOnly: true, + }, + ] + : []), ...(isGlobalTimelineAvailable ? [ {