zyoshoka
zyoshoka
## What 画面表示後最初の音声再生が爆音になることがある問題を修正します。 ## Why Closes #12532 ## Additional info (optional) ## Checklist - [x] Read the [contribution guide](https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md) - [x] Test working in a local environment - [ ]...
The Beatport API is called every 100 tracks, so for a release with more than 100 tracks like [this](https://www.beatport.com/release/a-state-of-trance-1000-celebration-mix-mixed-by-armin-van-buuren-extended-versions/3277362), the import will not work properly. Currently, the Beatport importer is...
## What 既存のフィード `/@:user.(atom|rss|json)` からリプライを除外し、リプライ付きフィード `/@:user.with_replies.(atom|rss|json)` とファイル付きフィード `/@:user.with_files.(atom|rss|json)` を新たに追加しました。 ## Why Resolve: #11835 ## Additional info (optional) ## Checklist - [x] Read the [contribution guide](https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md) - [x] Test working in...
## What バックエンドのテストの型チェックを workflow によって行うようにしました。 ## Why そのほうが良さそうですので ## Additional info (optional) `notes/user-list-timeline` の `withReplies` は #11946 で廃止されています。 ## Checklist - [x] Read the [contribution guide](https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md) - [x] Test working...
## What 以下のことを行いました。 - 不適切な Page、ギャラリー、Play を管理者権限で削除できるように - 不適切な Page、ギャラリー、Play を通報できるように - Page、ギャラリー、Play ページの UI 修正 ## Why Closes #10280 Closes #10565 Closes #13469 ## Additional info (optional) ## Checklist...
### 💡 Summary 現在バックエンドの生成する OpenAPI 定義 `/api.json` は validate-api-json ワークフローによって validate され見かけ上通ってはいますが、ログを見ると 156 個の警告が出力されています(https://github.com/misskey-dev/misskey/actions/runs/7927440397/job/21643840936 の Validation を参照)。 これらの警告は、下記のコマンドで `--extends=minimal` オプションを取っ払うと153個のエラーと4個の警告に変わるため、対処すべきであると考えられます。 https://github.com/misskey-dev/misskey/blob/2744cbd310e7e1b7792fe455602f6e2cf376120d/.github/workflows/validate-api-json.yml#L47 警告の殆どを占めているのは次の2つです: - [operation-operationId-unique](https://redocly.com/docs/cli/rules/operation-operationId-unique) (related: https://github.com/misskey-dev/misskey/issues/12640#issuecomment-1879515412 https://github.com/misskey-dev/misskey/pull/12969#discussion_r1451171724) - [security-defined](https://redocly.com/docs/cli/rules/security-defined) (タイトルだけ見れば...
null になるのはリモートユーザーのはずです https://github.com/misskey-dev/misskey/blob/b83cbc6d4d7f6ef8234855d4e2c4a80a712ac708/packages/backend/src/models/UserProfile.ts#L140
### Summary ソースコードに SPDX-License-Identifier が含まれているかチェックする CI を追加したいです。 https://github.com/misskey-dev/misskey/issues/11155#issuecomment-1655042807 https://github.com/misskey-dev/misskey/pull/13447#issuecomment-1972566316 ### Purpose 忘れてしまいがちなので ### Do you want to implement this feature yourself? - [ ] Yes, I will implement this by...
### 💡 Summary 通知の受信設定の notificationRecieveConfig は恐らく notificationReceiveConfig の typo です。 (API の変更とマイグレーションが必要になるので直すべきかは微妙なところですが) ### 🥰 Expected Behavior notificationReceiveConfig ### 🤬 Actual Behavior notificationRecieveConfig ### 📝 Steps to Reproduce _No response_ ###...
### 💡 Summary 以下の図式のように、3人のユーザー A, B, C がいて図のようなフォロー関係が成立しているものとします。ここでユーザー C が図のように `visibleUserIds` が指定された `visibility: specified` なノート(C-note)を投稿し、そのノートに対してユーザー B が図のように `visibleUserIds` が指定された `visibility: specified` なリプライ(B-note)を投稿するものとします。 ```mermaid graph TD; a((A)) -- follow --> b((B));...