Skip to content
Snippets Groups Projects
Unverified Commit 647ce174 authored by syuilo's avatar syuilo Committed by GitHub
Browse files

Merge pull request #10112 from misskey-dev/develop

Release: 13.8.1
parents 02c8fd9d 81e6a21f
No related branches found
Tags 13.7.2
2 merge requests!620Bump version,!583misskey 2024.7
# 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 @@ ...@@ -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. ...@@ -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)
......
{ {
"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() { ...@@ -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 = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment