Merge branch 'develop' into copy-role-on-move
This commit is contained in:
commit
80ed2aabef
|
@ -71,6 +71,7 @@
|
||||||
- Fix: ActivityPubリクエストURLチェック実装は仕様に従っていないのを修正
|
- Fix: ActivityPubリクエストURLチェック実装は仕様に従っていないのを修正
|
||||||
- Fix: 連合無しモードでも外部から照会可能だった問題を修正
|
- Fix: 連合無しモードでも外部から照会可能だった問題を修正
|
||||||
- Fix: テスト用WebHookのペイロードの`emojis`パラメータが実際のものと異なる問題を修正
|
- Fix: テスト用WebHookのペイロードの`emojis`パラメータが実際のものと異なる問題を修正
|
||||||
|
- Fix: 非ログインでタイムラインのストリームに接続した際、表示にログイン必須のノートが流れる場合がある問題を修正
|
||||||
|
|
||||||
## 2025.3.1
|
## 2025.3.1
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ class GlobalTimelineChannel extends Channel {
|
||||||
|
|
||||||
if (note.visibility !== 'public') return;
|
if (note.visibility !== 'public') return;
|
||||||
if (note.channelId != null) return;
|
if (note.channelId != null) return;
|
||||||
|
if (note.user.requireSigninToViewContents && this.user == null) return;
|
||||||
|
|
||||||
if (isRenotePacked(note) && !isQuotePacked(note) && !this.withRenotes) return;
|
if (isRenotePacked(note) && !isQuotePacked(note) && !this.withRenotes) return;
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,7 @@ class LocalTimelineChannel extends Channel {
|
||||||
if (note.user.host !== null) return;
|
if (note.user.host !== null) return;
|
||||||
if (note.visibility !== 'public') return;
|
if (note.visibility !== 'public') return;
|
||||||
if (note.channelId != null) return;
|
if (note.channelId != null) return;
|
||||||
|
if (note.user.requireSigninToViewContents && this.user == null) return;
|
||||||
|
|
||||||
// 関係ない返信は除外
|
// 関係ない返信は除外
|
||||||
if (note.reply && this.user && !this.following[note.userId]?.withReplies && !this.withReplies) {
|
if (note.reply && this.user && !this.following[note.userId]?.withReplies && !this.withReplies) {
|
||||||
|
|
|
@ -13,18 +13,18 @@
|
||||||
fgHighlighted: '#6bc9a0',
|
fgHighlighted: '#6bc9a0',
|
||||||
fgOnWhite: '@accent',
|
fgOnWhite: '@accent',
|
||||||
divider: '#cfcfcf',
|
divider: '#cfcfcf',
|
||||||
panel: '@X14',
|
panel: '#ebe7e5',
|
||||||
panelHeaderBg: '@panel',
|
panelHeaderBg: '@panel',
|
||||||
panelHeaderDivider: '@divider',
|
panelHeaderDivider: '@divider',
|
||||||
header: ':alpha<0.7<@panel',
|
header: ':alpha<0.7<@panel',
|
||||||
navBg: '@X14',
|
navBg: '#ebe7e5',
|
||||||
renote: '#229e92',
|
renote: '#229e92',
|
||||||
mention: '#da6d35',
|
mention: '#da6d35',
|
||||||
mentionMe: '#d44c4c',
|
mentionMe: '#d44c4c',
|
||||||
hashtag: '#4cb8d4',
|
hashtag: '#4cb8d4',
|
||||||
link: '@accent',
|
link: '@accent',
|
||||||
buttonGradateB: ':hue<-70<@accent',
|
buttonGradateB: ':hue<-70<@accent',
|
||||||
success: '#86b300',
|
success: '@accent',
|
||||||
X14: '#ebe7e5'
|
error: '#da5635',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,5 +18,8 @@
|
||||||
mention: '@accent',
|
mention: '@accent',
|
||||||
mentionMe: 'rgb(170, 149, 98)',
|
mentionMe: 'rgb(170, 149, 98)',
|
||||||
hashtag: '@accent',
|
hashtag: '@accent',
|
||||||
|
error: '#db9184',
|
||||||
|
warn: '#dbc184',
|
||||||
|
success: '#a3c975',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,7 +83,7 @@ queueMicrotask(() => {
|
||||||
widgets(app);
|
widgets(app);
|
||||||
misskeyOS = os;
|
misskeyOS = os;
|
||||||
if (isChromatic()) {
|
if (isChromatic()) {
|
||||||
prefer.set('animation', false);
|
prefer.commit('animation', false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue