commit
647ce174b3
|
@ -1,10 +1,19 @@
|
||||||
# Summary
|
## Summary
|
||||||
This is a release PR.
|
This is a release PR.
|
||||||
|
|
||||||
For more information on the release instructions, please see:
|
For more information on the release instructions, please see:
|
||||||
https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md#release
|
https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md#release
|
||||||
|
|
||||||
# Checklist
|
## For reviewers
|
||||||
|
- CHANGELOGに抜け漏れは無いか
|
||||||
|
- バージョンの上げ方は適切か
|
||||||
|
- 他にこのリリースに含めなければならない変更は無いか
|
||||||
|
- 全体的な変更内容を俯瞰し問題は無いか
|
||||||
|
- レビューされていないコミットがある場合は、それが問題ないか
|
||||||
|
|
||||||
|
などを確認し、リリースする準備が整っていると思われる場合は approve してください。
|
||||||
|
|
||||||
|
## Checklist
|
||||||
- [ ] package.jsonのバージョンが正しく更新されている
|
- [ ] package.jsonのバージョンが正しく更新されている
|
||||||
- [ ] CHANGELOGが過不足無く更新されている
|
- [ ] CHANGELOGが過不足無く更新されている
|
||||||
- [ ] CIが全て通っている
|
- [ ] CIが全て通っている
|
||||||
|
|
|
@ -9,6 +9,12 @@
|
||||||
|
|
||||||
You should also include the user name that made the change.
|
You should also include the user name that made the change.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## 13.8.1 (2023/02/26)
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
- モバイルでドロワーメニューが表示されない問題を修正
|
||||||
|
|
||||||
## 13.8.0 (2023/02/26)
|
## 13.8.0 (2023/02/26)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
@ -28,6 +34,7 @@ You should also include the user name that made the change.
|
||||||
- fix(client): Android ChromeでPWAとしてインストールできない問題を修正
|
- fix(client): Android ChromeでPWAとしてインストールできない問題を修正
|
||||||
- 未知のユーザーが deleteActor されたら処理をスキップする
|
- 未知のユーザーが deleteActor されたら処理をスキップする
|
||||||
- fix(server): notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする
|
- fix(server): notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする
|
||||||
|
- fix(server): notes/createのバリデーションが機能していないのを修正
|
||||||
- fix(server): エラーのスタックトレースは返さないように
|
- fix(server): エラーのスタックトレースは返さないように
|
||||||
|
|
||||||
## 13.7.5 (2023/02/24)
|
## 13.7.5 (2023/02/24)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "13.8.0",
|
"version": "13.8.1",
|
||||||
"codename": "nasubi",
|
"codename": "nasubi",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -125,7 +125,7 @@ function onBgClick() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type === 'drawer') {
|
if (type === 'drawer') {
|
||||||
maxHeight = (window.innerHeight - SCROLLBAR_THICKNESS) / 1.5;
|
maxHeight = window.innerHeight / 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
const keymap = {
|
const keymap = {
|
||||||
|
|
Loading…
Reference in New Issue