Merge branch 'develop' into fix-msg-room

This commit is contained in:
tamaina 2022-02-02 14:07:17 +09:00
commit 9061d33405
5 changed files with 24 additions and 20 deletions

View file

@ -7,23 +7,28 @@
--> -->
## 12.x.x (unreleased) ## 12.103.1 (2022/02/02)
### Improvements
- 連合インスタンスページからインスタンス情報再取得を行えるように
### Bugfixes ### Bugfixes
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正 - クライアント: ツールチップの表示位置が正しくない問題を修正
- 「クリップ」ページが開かない問題を修正
- トレンドウィジェットが動作しないのを修正 ## 12.103.0 (2022/02/02)
- フェデレーションウィジェットが動作しないのを修正
- リアクション設定で絵文字ピッカーが開かないのを修正 ### Improvements
- DMページでメンションが含まれる問題を修正 - クライアント: 連合インスタンスページからインスタンス情報再取得を行えるように
- 投稿フォームのハッシュタグ保持フィールドが動作しない問題を修正
### Bugfixes
- クライアント: 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
- クライアント: 「クリップ」ページが開かない問題を修正
- クライアント: トレンドウィジェットが動作しないのを修正
- クライアント: フェデレーションウィジェットが動作しないのを修正
- クライアント: リアクション設定で絵文字ピッカーが開かないのを修正
- クライアント: DMページでメンションが含まれる問題を修正
- クライアント: 投稿フォームのハッシュタグ保持フィールドが動作しない問題を修正
- クライアント: サイドビューが動かないのを修正
- クライアント: ensure that specified users does not get duplicates
- Add `img-src` and `media-src` directives to `Content-Security-Policy` for - Add `img-src` and `media-src` directives to `Content-Security-Policy` for
files and media proxy files and media proxy
- サイドビューが動かないのを修正
- ensure that specified users does not get duplicates
## 12.102.1 (2022/01/27) ## 12.102.1 (2022/01/27)
### Bugfixes ### Bugfixes

View file

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.102.1", "version": "12.103.1",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -101,7 +101,7 @@ export default defineComponent({
emojis: props.note.emojis, emojis: props.note.emojis,
users, users,
count: props.count, count: props.count,
source: buttonRef.value targetElement: buttonRef.value,
}, {}, 'closed'); }, {}, 'closed');
}); });

View file

@ -52,7 +52,7 @@ export default defineComponent({
showing, showing,
users, users,
count: props.count, count: props.count,
source: buttonRef.value targetElement: buttonRef.value
}, {}, 'closed'); }, {}, 'closed');
}); });

View file

@ -115,7 +115,7 @@ const pagination = {
offsetMode: true, offsetMode: true,
params: computed(() => ({ params: computed(() => ({
sort: sort, sort: sort,
host: host != '' ? host : null, host: host !== '' ? host : null,
...( ...(
state === 'federating' ? { federating: true } : state === 'federating' ? { federating: true } :
state === 'subscribing' ? { subscribing: true } : state === 'subscribing' ? { subscribing: true } :
@ -157,11 +157,10 @@ defineExpose({
> .instance { > .instance {
padding: 16px; padding: 16px;
border: solid 1px var(--divider); background: var(--panel);
border-radius: 6px; border-radius: 8px;
&:hover { &:hover {
border: solid 1px var(--accent);
text-decoration: none; text-decoration: none;
} }