Merge branch 'develop' into feature-note-fetch-test
This commit is contained in:
commit
f708391fb9
|
@ -1,7 +1,4 @@
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: 👪 Misskey Forum
|
|
||||||
url: https://forum.misskey.io/
|
|
||||||
about: Ask questions and share knowledge
|
|
||||||
- name: 💬 Misskey official Discord
|
- name: 💬 Misskey official Discord
|
||||||
url: https://discord.gg/Wp8gVStHW3
|
url: https://discord.gg/Wp8gVStHW3
|
||||||
about: Chat freely about Misskey
|
about: Chat freely about Misskey
|
||||||
|
|
|
@ -25,10 +25,13 @@
|
||||||
- Enhance: 自分が押したリアクションのデザインを改善
|
- Enhance: 自分が押したリアクションのデザインを改善
|
||||||
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
|
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
|
||||||
- Fix: 未読のお知らせの「わかった」をクリック・タップしてもその場で「わかった」が消えない問題を修正
|
- Fix: 未読のお知らせの「わかった」をクリック・タップしてもその場で「わかった」が消えない問題を修正
|
||||||
|
- Fix: iOSで画面を回転させるとテキストサイズが変わる問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- cacheRemoteFilesの初期値はfalseになりました
|
- cacheRemoteFilesの初期値はfalseになりました
|
||||||
- 一部のfeatured noteを照会できない問題を修正
|
- 一部のfeatured noteを照会できない問題を修正
|
||||||
|
- ファイルアップロード時等にファイル名の拡張子を修正する関数(correctFilename)の挙動を改善
|
||||||
|
- fix: muteがapiからのuser list timeline取得で機能しない問題を修正
|
||||||
|
|
||||||
## 13.14.2
|
## 13.14.2
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ import: "インポート"
|
||||||
export: "エクスポート"
|
export: "エクスポート"
|
||||||
files: "ファイル"
|
files: "ファイル"
|
||||||
download: "ダウンロード"
|
download: "ダウンロード"
|
||||||
driveFileDeleteConfirm: "ファイル「{name}」を削除しますか?このファイルを使用した全てのコンテンツからも削除されます。"
|
driveFileDeleteConfirm: "ファイル「{name}」を削除しますか?このファイルを使用した一部のコンテンツも削除されます。"
|
||||||
unfollowConfirm: "{name}のフォローを解除しますか?"
|
unfollowConfirm: "{name}のフォローを解除しますか?"
|
||||||
exportRequested: "エクスポートをリクエストしました。これには時間がかかる場合があります。エクスポートが終わると、「ドライブ」に追加されます。"
|
exportRequested: "エクスポートをリクエストしました。これには時間がかかる場合があります。エクスポートが終わると、「ドライブ」に追加されます。"
|
||||||
importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。"
|
importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。"
|
||||||
|
|
|
@ -3,18 +3,54 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// 与えられた拡張子とファイル名が一致しているかどうかを確認し、
|
/**
|
||||||
// 一致していない場合は拡張子を付与して返す
|
* Array.includes()よりSet.has()の方が高速
|
||||||
|
*/
|
||||||
|
const targetExtsToSkip = new Set([
|
||||||
|
'.gz',
|
||||||
|
'.tar',
|
||||||
|
'.tgz',
|
||||||
|
'.bz2',
|
||||||
|
'.xz',
|
||||||
|
'.zip',
|
||||||
|
'.7z',
|
||||||
|
]);
|
||||||
|
|
||||||
|
const extRegExp = /\.[0-9a-zA-Z]+$/i;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 与えられた拡張子とファイル名が一致しているかどうかを確認し、
|
||||||
|
* 一致していない場合は拡張子を付与して返す
|
||||||
|
*
|
||||||
|
* extはfile-typeのextを想定
|
||||||
|
*/
|
||||||
export function correctFilename(filename: string, ext: string | null) {
|
export function correctFilename(filename: string, ext: string | null) {
|
||||||
const dotExt = ext ? ext.startsWith('.') ? ext : `.${ext}` : '.unknown';
|
const dotExt = ext ? ext[0] === '.' ? ext : `.${ext}` : '.unknown';
|
||||||
if (filename.endsWith(dotExt)) {
|
|
||||||
return filename;
|
const match = extRegExp.exec(filename);
|
||||||
}
|
if (!match || !match[0]) {
|
||||||
if (ext === 'jpg' && filename.endsWith('.jpeg')) {
|
// filenameが拡張子を持っていない場合は拡張子をつける
|
||||||
return filename;
|
return `${filename}${dotExt}`;
|
||||||
}
|
}
|
||||||
if (ext === 'tif' && filename.endsWith('.tiff')) {
|
|
||||||
|
const filenameExt = match[0].toLowerCase();
|
||||||
|
if (
|
||||||
|
// 未知のファイル形式かつ拡張子がある場合は何もしない
|
||||||
|
ext === null ||
|
||||||
|
// 拡張子が一致している場合は何もしない
|
||||||
|
filenameExt === dotExt ||
|
||||||
|
|
||||||
|
// jpeg, tiffを同一視
|
||||||
|
dotExt === '.jpg' && filenameExt === '.jpeg' ||
|
||||||
|
dotExt === '.tif' && filenameExt === '.tiff' ||
|
||||||
|
|
||||||
|
// 圧縮形式っぽければ下手に拡張子を変えない
|
||||||
|
// https://github.com/misskey-dev/misskey/issues/11482
|
||||||
|
targetExtsToSkip.has(dotExt)
|
||||||
|
) {
|
||||||
return filename;
|
return filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 拡張子があるが一致していないなどの場合は拡張子を付け足す
|
||||||
return `${filename}${dotExt}`;
|
return `${filename}${dotExt}`;
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,6 +96,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
.andWhere('userListJoining.userListId = :userListId', { userListId: list.id });
|
.andWhere('userListJoining.userListId = :userListId', { userListId: list.id });
|
||||||
|
|
||||||
this.queryService.generateVisibilityQuery(query, me);
|
this.queryService.generateVisibilityQuery(query, me);
|
||||||
|
this.queryService.generateMutedUserQuery(query, me);
|
||||||
|
this.queryService.generateMutedNoteQuery(query, me);
|
||||||
|
this.queryService.generateBlockedUserQuery(query, me);
|
||||||
|
this.queryService.generateMutedUserRenotesQueryForNotes(query, me);
|
||||||
|
|
||||||
if (ps.includeMyRenotes === false) {
|
if (ps.includeMyRenotes === false) {
|
||||||
query.andWhere(new Brackets(qb => {
|
query.andWhere(new Brackets(qb => {
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { correctFilename } from '@/misc/correct-filename.js';
|
||||||
|
|
||||||
|
describe(correctFilename, () => {
|
||||||
|
it('no ext to null', () => {
|
||||||
|
expect(correctFilename('test', null)).toBe('test.unknown');
|
||||||
|
});
|
||||||
|
it('no ext to jpg', () => {
|
||||||
|
expect(correctFilename('test', 'jpg')).toBe('test.jpg');
|
||||||
|
});
|
||||||
|
it('jpg to webp', () => {
|
||||||
|
expect(correctFilename('test.jpg', 'webp')).toBe('test.jpg.webp');
|
||||||
|
});
|
||||||
|
it('jpg to .webp', () => {
|
||||||
|
expect(correctFilename('test.jpg', '.webp')).toBe('test.jpg.webp');
|
||||||
|
});
|
||||||
|
it('jpeg to jpg', () => {
|
||||||
|
expect(correctFilename('test.jpeg', 'jpg')).toBe('test.jpeg');
|
||||||
|
});
|
||||||
|
it('JPEG to jpg', () => {
|
||||||
|
expect(correctFilename('test.JPEG', 'jpg')).toBe('test.JPEG');
|
||||||
|
});
|
||||||
|
it('jpg to jpg', () => {
|
||||||
|
expect(correctFilename('test.jpg', 'jpg')).toBe('test.jpg');
|
||||||
|
});
|
||||||
|
it('JPG to jpg', () => {
|
||||||
|
expect(correctFilename('test.JPG', 'jpg')).toBe('test.JPG');
|
||||||
|
});
|
||||||
|
it('tiff to tif', () => {
|
||||||
|
expect(correctFilename('test.tiff', 'tif')).toBe('test.tiff');
|
||||||
|
});
|
||||||
|
it('skip gz', () => {
|
||||||
|
expect(correctFilename('test.unitypackage', 'gz')).toBe('test.unitypackage');
|
||||||
|
});
|
||||||
|
it('skip text file', () => {
|
||||||
|
expect(correctFilename('test.txt', null)).toBe('test.txt');
|
||||||
|
});
|
||||||
|
it('unknown', () => {
|
||||||
|
expect(correctFilename('test.hoge', null)).toBe('test.hoge');
|
||||||
|
});
|
||||||
|
test('non ascii with space', () => {
|
||||||
|
expect(correctFilename('ファイル 名前', 'jpg')).toBe('ファイル 名前.jpg');
|
||||||
|
});
|
||||||
|
});
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
import { describe, test, expect } from '@jest/globals';
|
import { describe, test, expect } from '@jest/globals';
|
||||||
import { contentDisposition } from '@/misc/content-disposition.js';
|
import { contentDisposition } from '@/misc/content-disposition.js';
|
||||||
import { correctFilename } from '@/misc/correct-filename.js';
|
|
||||||
|
|
||||||
describe('misc:content-disposition', () => {
|
describe('misc:content-disposition', () => {
|
||||||
test('inline', () => {
|
test('inline', () => {
|
||||||
|
@ -18,30 +17,3 @@ describe('misc:content-disposition', () => {
|
||||||
expect(contentDisposition('attachment', 'ファイル名')).toBe('attachment; filename=\"_____\"; filename*=UTF-8\'\'%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D');
|
expect(contentDisposition('attachment', 'ファイル名')).toBe('attachment; filename=\"_____\"; filename*=UTF-8\'\'%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('misc:correct-filename', () => {
|
|
||||||
test('simple', () => {
|
|
||||||
expect(correctFilename('filename', 'jpg')).toBe('filename.jpg');
|
|
||||||
});
|
|
||||||
test('with same ext', () => {
|
|
||||||
expect(correctFilename('filename.jpg', 'jpg')).toBe('filename.jpg');
|
|
||||||
});
|
|
||||||
test('.ext', () => {
|
|
||||||
expect(correctFilename('filename.jpg', '.jpg')).toBe('filename.jpg');
|
|
||||||
});
|
|
||||||
test('with different ext', () => {
|
|
||||||
expect(correctFilename('filename.webp', 'jpg')).toBe('filename.webp.jpg');
|
|
||||||
});
|
|
||||||
test('non ascii with space', () => {
|
|
||||||
expect(correctFilename('ファイル 名前', 'jpg')).toBe('ファイル 名前.jpg');
|
|
||||||
});
|
|
||||||
test('jpeg', () => {
|
|
||||||
expect(correctFilename('filename.jpeg', 'jpg')).toBe('filename.jpeg');
|
|
||||||
});
|
|
||||||
test('tiff', () => {
|
|
||||||
expect(correctFilename('filename.tiff', 'tif')).toBe('filename.tiff');
|
|
||||||
});
|
|
||||||
test('null ext', () => {
|
|
||||||
expect(correctFilename('filename', null)).toBe('filename.unknown');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import MkInput from '@/components/MkInput.vue';
|
import MkInput from '@/components/MkInput.vue';
|
||||||
import MkSelect from '@/components/MkSelect.vue';
|
import MkSelect from '@/components/MkSelect.vue';
|
||||||
import MkPagination from '@/components/MkPagination.vue';
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
||||||
import MkInstanceCardMini from '@/components/MkInstanceCardMini.vue';
|
import MkInstanceCardMini from '@/components/MkInstanceCardMini.vue';
|
||||||
import FormSplit from '@/components/form/split.vue';
|
import FormSplit from '@/components/form/split.vue';
|
||||||
import { i18n } from '@/i18n';
|
import { i18n } from '@/i18n';
|
||||||
|
@ -64,6 +64,7 @@ let sort = $ref('+pubSub');
|
||||||
const pagination = {
|
const pagination = {
|
||||||
endpoint: 'federation/instances' as const,
|
endpoint: 'federation/instances' as const,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
|
displayLimit: 50,
|
||||||
offsetMode: true,
|
offsetMode: true,
|
||||||
params: computed(() => ({
|
params: computed(() => ({
|
||||||
sort: sort,
|
sort: sort,
|
||||||
|
@ -77,7 +78,7 @@ const pagination = {
|
||||||
state === 'notResponding' ? { notResponding: true } :
|
state === 'notResponding' ? { notResponding: true } :
|
||||||
{}),
|
{}),
|
||||||
})),
|
})),
|
||||||
};
|
} as Paging;
|
||||||
|
|
||||||
function getStatus(instance) {
|
function getStatus(instance) {
|
||||||
if (instance.isSuspended) return 'Suspended';
|
if (instance.isSuspended) return 'Suspended';
|
||||||
|
|
|
@ -40,6 +40,7 @@ html {
|
||||||
line-height: 1.35;
|
line-height: 1.35;
|
||||||
text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
tab-size: 2;
|
tab-size: 2;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
|
||||||
&, * {
|
&, * {
|
||||||
scrollbar-color: var(--scrollbarHandle) transparent;
|
scrollbar-color: var(--scrollbarHandle) transparent;
|
||||||
|
|
|
@ -358,7 +358,7 @@ importers:
|
||||||
version: 2.1.0
|
version: 2.1.0
|
||||||
summaly:
|
summaly:
|
||||||
specifier: github:misskey-dev/summaly
|
specifier: github:misskey-dev/summaly
|
||||||
version: github.com/misskey-dev/summaly/089a0ad8e8c780e5c088b1c528aa95c5827cbdcc
|
version: github.com/misskey-dev/summaly/d2d8db49943ccb201c1b1b283e9d0a630519fac7
|
||||||
systeminformation:
|
systeminformation:
|
||||||
specifier: 5.18.9
|
specifier: 5.18.9
|
||||||
version: 5.18.9
|
version: 5.18.9
|
||||||
|
@ -997,7 +997,7 @@ importers:
|
||||||
version: github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.0.27)(@storybook/components@7.1.0)(@storybook/core-events@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/preview-api@7.0.27)(@storybook/theming@7.0.27)(@storybook/types@7.0.27)(react-dom@18.2.0)(react@18.2.0)
|
version: github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.0.27)(@storybook/components@7.1.0)(@storybook/core-events@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/preview-api@7.0.27)(@storybook/theming@7.0.27)(@storybook/types@7.0.27)(react-dom@18.2.0)(react@18.2.0)
|
||||||
summaly:
|
summaly:
|
||||||
specifier: github:misskey-dev/summaly
|
specifier: github:misskey-dev/summaly
|
||||||
version: github.com/misskey-dev/summaly/089a0ad8e8c780e5c088b1c528aa95c5827cbdcc
|
version: github.com/misskey-dev/summaly/d2d8db49943ccb201c1b1b283e9d0a630519fac7
|
||||||
vite-plugin-turbosnap:
|
vite-plugin-turbosnap:
|
||||||
specifier: 1.0.2
|
specifier: 1.0.2
|
||||||
version: 1.0.2
|
version: 1.0.2
|
||||||
|
@ -5345,7 +5345,7 @@ packages:
|
||||||
hasBin: true
|
hasBin: true
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dependencies:
|
dependencies:
|
||||||
detect-libc: 2.0.1
|
detect-libc: 2.0.2
|
||||||
https-proxy-agent: 5.0.1
|
https-proxy-agent: 5.0.1
|
||||||
make-dir: 3.1.0
|
make-dir: 3.1.0
|
||||||
node-fetch: 2.6.11
|
node-fetch: 2.6.11
|
||||||
|
@ -11496,13 +11496,6 @@ packages:
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/detect-libc@2.0.1:
|
|
||||||
resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
requiresBuild: true
|
|
||||||
dev: false
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
/detect-libc@2.0.2:
|
/detect-libc@2.0.2:
|
||||||
resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
|
resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
@ -22129,8 +22122,8 @@ packages:
|
||||||
react-dom: 18.2.0(react@18.2.0)
|
react-dom: 18.2.0(react@18.2.0)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
github.com/misskey-dev/summaly/089a0ad8e8c780e5c088b1c528aa95c5827cbdcc:
|
github.com/misskey-dev/summaly/d2d8db49943ccb201c1b1b283e9d0a630519fac7:
|
||||||
resolution: {tarball: https://codeload.github.com/misskey-dev/summaly/tar.gz/089a0ad8e8c780e5c088b1c528aa95c5827cbdcc}
|
resolution: {tarball: https://codeload.github.com/misskey-dev/summaly/tar.gz/d2d8db49943ccb201c1b1b283e9d0a630519fac7}
|
||||||
name: summaly
|
name: summaly
|
||||||
version: 4.0.2
|
version: 4.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
Loading…
Reference in New Issue