Merge branch 'develop' into no-websocket

This commit is contained in:
syuilo 2025-03-28 16:58:44 +09:00
commit 713b8ed627
5 changed files with 20 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2025.3.2-beta.14",
"version": "2025.3.2-beta.15",
"codename": "nasubi",
"repository": {
"type": "git",

View File

@ -178,6 +178,14 @@ rt {
overflow: clip;
overflow-y: scroll;
overscroll-behavior: contain;
/*
理屈は知らないけどここでbackgroundを設定しておかないと
スクロールコンテナーが少なくともChromeにおいて
main thread scrolling になってしまいパフォーマンスが(多分)落ちる
backgroundが透明だと裏側を描画しないといけなくなるとかそういう理由かもしれない
*/
background: var(--MI_THEME-bg);
}
._pageScrollableReversed {

View File

@ -226,13 +226,17 @@ html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
overscroll-behavior: none;
}
body {
/* NOTE: htmlにも overflow: clip を設定したいところだが、設定すると何故か少なくともChromeで html が main thread scrolling になりパフォーマンスが(多分)落ちる */
overflow: clip;
}
#misskey_app {
width: 100%;
height: 100%;

View File

@ -216,13 +216,17 @@ html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
overscroll-behavior: none;
}
body {
/* NOTE: htmlにも overflow: clip を設定したいところだが、設定すると何故か少なくともChromeで html が main thread scrolling になりパフォーマンスが(多分)落ちる */
overflow: clip;
}
#misskey_app {
width: 100%;
height: 100%;

View File

@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
"version": "2025.3.2-beta.14",
"version": "2025.3.2-beta.15",
"description": "Misskey SDK for JavaScript",
"license": "MIT",
"main": "./built/index.js",