1
0
Fork 1
mirror of https://example.com synced 2024-11-22 11:26:38 +09:00

feat: move local timeline tab

This commit is contained in:
naskya 2023-07-19 21:20:27 +00:00
parent 889ed7388e
commit c2a0facf2e
Signed by: naskya
GPG key ID: 164DFF24E2D40139
2 changed files with 15 additions and 13 deletions

View file

@ -6,6 +6,8 @@
## 主要な変更点
- ローカルタイムラインの位置をグローバルタイムラインの直前に移動
- ローカルタイムラインよりもソーシャルタイムラインのほうが使いやすいと考えたため
- 「Firefish について」のページに Misskey の主要な貢献者を表示
- このソフトウェアは Misskey のフォークであるため

View file

@ -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
? [
{