forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 0
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
nirila review PR #5
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add action file
add token
Change trigger timing
* feat: hide image easily * docs(changelog): add 画像を動画と同様に簡単に隠せるように Cherry-picks: dc87632
* feat: フォローやお気に入り登録をしていないチャンネルを開く時は概要ページを開くように * Update CHANGELOG.md --------- Co-authored-by: tamaina <[email protected]> Cherry-picks: 239ea39
Fix misskey-dev#11186 Cherry-picks: 6a01534
Resolve misskey-dev#11185 Cherry-picks: ac6d6fd
…me-important-changes
* feat: add edit antenna button onto deck column * feat: add edit list button onto deck column * docs(changelog): add deck UIのカラムのメニューからアンテナとリストの編集画面を開けるようになりました Cherry-picks: 1ab9f09
* chore(frontend): 自分のnoteのrenoteも省略するように Co-authored-by: madorama <[email protected]> * docs(changelog): add 見たことのあるRenoteを省略して表示をオンのときに自分のnoteのrenoteを省略するように --------- Co-authored-by: madorama <[email protected]> Cherry-picks: 2606167
…1211) * fix: change tapAction of photoswipe to 'close' * doc: update CHANGELOG.md --------- Co-authored-by: tamaina <[email protected]> Cherry-pics: 63e21a4
pick some important changes from 13.14
fix: sensitive channel auto cw not applied to renote of sensitive channel
docs: refine changelog of 2023.9.3-kinel.4
5 tasks
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -1,7 +1,7 @@
{
"openapi": "3.0.0",
"info": {
- "version": "2023.11.1",
+ "version": "2023.11.1-kinel.1",
"title": "Misskey API",
"x-logo": {
"url": "/static-assets/api-doc.png"
@@ -37342,16 +37342,24 @@
"on": {
"type": "array",
"items": {
- "type": "string",
- "enum": [
- "mention",
- "unfollow",
- "follow",
- "followed",
- "note",
- "reply",
- "renote",
- "reaction"
+ "oneOf": [
+ {
+ "type": "string",
+ "enum": [
+ "mention",
+ "unfollow",
+ "follow",
+ "followed",
+ "note",
+ "reply",
+ "renote",
+ "reaction"
+ ]
+ },
+ {
+ "type": "string",
+ "pattern": "^note@[a-zA-Z0-9]{1,20}$"
+ }
]
}
}
@@ -37386,6 +37394,15 @@
}
}
},
+ "ADMIN_WEBHOOK_DENIED": {
+ "value": {
+ "error": {
+ "message": "You cannot create webhook for other users.",
+ "code": "ADMIN_WEBHOOK_DENIED",
+ "id": "0d3321b1-6f66-41aa-9fbe-233c60ce19b0"
+ }
+ }
+ },
"INVALID_PARAM": {
"value": {
"error": {
@@ -37830,16 +37847,24 @@
"on": {
"type": "array",
"items": {
- "type": "string",
- "enum": [
- "mention",
- "unfollow",
- "follow",
- "followed",
- "note",
- "reply",
- "renote",
- "reaction"
+ "oneOf": [
+ {
+ "type": "string",
+ "enum": [
+ "mention",
+ "unfollow",
+ "follow",
+ "followed",
+ "note",
+ "reply",
+ "renote",
+ "reaction"
+ ]
+ },
+ {
+ "type": "string",
+ "pattern": "^note@[a-zA-Z0-9]{1,20}$"
+ }
]
}
},
@@ -37879,6 +37904,15 @@
}
}
},
+ "UPDATE_ADMIN_WEBHOOK_DENIED": {
+ "value": {
+ "error": {
+ "message": "You cannot create webhook for other users.",
+ "code": "UPDATE_ADMIN_WEBHOOK_DENIED",
+ "id": "eb43c0c4-24a3-487d-b139-f3e4e58f87a4"
+ }
+ }
+ },
"INVALID_PARAM": {
"value": {
"error": {
@@ -56456,6 +56490,10 @@
"excludeNsfw": {
"type": "boolean",
"default": false
+ },
+ "includeSensitiveChannel": {
+ "type": "boolean",
+ "default": false
}
},
"required": [ |
anatawa12
commented
Nov 24, 2023
<p v-if="appearNote.cw != null" :class="$style.cw"> | ||
<Mfm v-if="appearNote.cw != ''" style="margin-right: 8px;" :text="appearNote.cw" :author="appearNote.user" :nyaize="'respect'"/> | ||
<p v-if="cwExists" :class="$style.cw"> | ||
<Mfm v-if="appearNote.cw != ''" style="margin-right: 8px;" :text="appearNote.cw ?? '<small>' + i18n.ts.sensitiveChannelAutoCW + '</small>'" :author="appearNote.user" :nyaize="'respect'"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
もう少しマシな書き方あると思うので後でやる
anatawa12
force-pushed
the
merge-2023.11.1
branch
from
November 24, 2023 13:43
a3b18f8
to
45f0a72
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
Why
Additional info (optional)
Checklist