Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

引用とCWを併用した時の挙動修正 #237

Merged
merged 4 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions CHANGELOG_yojo.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
### Release Date

### General
- 連合過激派によってローカルのみ投稿機能は削除されました
- Remove: 連合過激派によってローカルのみ投稿機能は削除されました

### Client
- feat: サイコロウィジェット
- Fix: 引用とCWを併用した場合にタイムラインと詳細で表示が異なる不具合を修正
- Feat: サイコロウィジェット
(Cherry-picked from https://github.com/1673beta/cherrypick/pull/73)

### Server
Expand All @@ -40,15 +41,15 @@ Cherrypick 4.9.0-beta.2
2024-07-21

### General
- enhance: 現在のインデックスを破棄して全ノートを強制的にインデックスさせるAPIの追加(コントロールパネル/その他)
- enhance: 全ノートを強制的にインデックスさせるAPIの追加(コントロールパネル/その他)
- Enhance: 現在のインデックスを破棄して全ノートを強制的にインデックスさせるAPIの追加(コントロールパネル/その他)
- Enhance: 全ノートを強制的にインデックスさせるAPIの追加(コントロールパネル/その他)
(Based on https://github.com/TeamNijimiss/misskey/commit/e106092f5d4c79ec8d6ad53431ecb46839afe26c)

### Client
-

### Server
- Fix:グループ招待に返答すると通知が見れなくなる問題を修正
- Fix: グループ招待に返答すると通知が見れなくなる問題を修正
- Fix: notifications/deleteで通知を削除できない問題を修正
- Fix: 高度な検索(opensearch)でsudachiが使われていない問題を修正
- 検索文に一致していてもノートが出てこないことがあるのを修正しました
Expand Down Expand Up @@ -122,7 +123,7 @@ Cherrypick 4.9.0-beta.2
- 添付ファイルのセンシティブ条件(なし/含む/除外)
- 引用ノート除外
- 検索方法の詳細はdoc/Advanced-Search.mdに
- Change:APIのパラメータを変更
- Change: APIのパラメータを変更
- notes/advanced-search の"excludeNsfw"を"excludeCW"に変更
- notes/advanced-search の"channelId"を削除

Expand Down
3 changes: 1 addition & 2 deletions packages/frontend/src/components/MkNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<button v-else-if="(isLong || (isMFM && defaultStore.state.collapseDefault) || (appearNote.files && appearNote.files.length > 0 && defaultStore.state.allMediaNoteCollapse)) && !collapsed" v-vibrate="defaultStore.state.vibrateSystem ? 5 : []" :class="$style.showLess" class="_button" @click.stop="collapsed = true">
<span :class="$style.showLessLabel">{{ i18n.ts.showLess }}</span>
</button>
<div v-if="appearNote.renote" :class="$style.quote"><MkNoteSimple :note="appearNote.renote" :class="$style.quoteNote"/></div>
</div>
<MkA v-if="appearNote.channel && !inChannel" :class="$style.channel" :to="`/channels/${appearNote.channel.id}`"><i class="ti ti-device-tv"></i> {{ appearNote.channel.name }}</MkA>
</div>
<div v-if="appearNote.renote" :class="$style.quote"><MkNoteSimple :note="appearNote.renote" :class="$style.quoteNote"/></div>
<div>
<MkReactionsViewer v-if="appearNote.reactionAcceptance !== 'likeOnly'" :note="appearNote" :maxNumber="16" @click.stop @contextmenu.prevent.stop @mockUpdateMyReaction="emitUpdReaction">
<template #more>
Expand Down
Loading