Compare commits

..

3 commits

Author SHA1 Message Date
38fda7790e fix linter issues
All checks were successful
Lint / pnpm_install (pull_request) Successful in 25s
Test (production install and build) / production (22.x) (pull_request) Successful in 58s
Lint / lint (misskey-js) (pull_request) Successful in 32s
Test (frontend) / vitest (22.x) (pull_request) Successful in 1m14s
Lint / typecheck (misskey-js) (pull_request) Successful in 33s
Lint / lint (sw) (pull_request) Successful in 1m33s
Lint / lint (backend) (pull_request) Successful in 1m37s
Lint / typecheck (backend) (pull_request) Successful in 1m39s
Lint / lint (frontend) (pull_request) Successful in 7m28s
2025-02-22 13:49:38 +01:00
78adbebb18 remove mistake
Some checks failed
Lint / pnpm_install (pull_request) Successful in 2m9s
Test (production install and build) / production (22.x) (pull_request) Successful in 2m22s
Test (frontend) / vitest (22.x) (pull_request) Successful in 2m52s
Lint / typecheck (misskey-js) (pull_request) Successful in 31s
Lint / lint (backend) (pull_request) Successful in 59s
Lint / lint (sw) (pull_request) Successful in 49s
Lint / lint (misskey-js) (pull_request) Successful in 1m32s
Lint / typecheck (backend) (pull_request) Successful in 1m22s
Lint / lint (frontend) (pull_request) Failing after 8m7s
2025-02-22 13:14:21 +01:00
e4a581c297 incoming media in cwed posts will be marked as sensitive if this setting is on 2025-02-22 13:12:16 +01:00
14 changed files with 32 additions and 17 deletions

View file

@ -765,6 +765,7 @@ lockedAccountInfo: "Unless you set your note visiblity to \"Followers only\", yo
alwaysMarkSensitive: "Mark as sensitive by default"
loadRawImages: "Load original images instead of showing thumbnails"
disableCatSpeak: "Disable cat speak"
markIncomingMediaInCwedPostAsSensitive: "Mark incoming media in cwed posts as sensitive"
disableShowingAnimatedImages: "Don't play animated images"
highlightSensitiveMedia: "Highlight sensitive media"
verificationEmailSent: "A verification email has been sent. Please follow the included link to complete verification."

4
locales/index.d.ts vendored
View file

@ -3076,6 +3076,10 @@ export interface Locale extends ILocale {
*
*/
"disableCatSpeak": string;
/**
* cwed投稿の受信メディアを機密扱いとしてマークする
*/
"markIncomingMediaInCwedPostAsSensitive": string;
/**
*
*/

View file

@ -765,6 +765,7 @@ lockedAccountInfo: "フォローを承認制にしても、ノートの公開範
alwaysMarkSensitive: "デフォルトでメディアをセンシティブ設定にする"
loadRawImages: "添付画像のサムネイルをオリジナル画質にする"
disableCatSpeak: "猫の話し方を無効にする"
markIncomingMediaInCwedPostAsSensitive: "cwed投稿の受信メディアを機密扱いとしてマークする"
disableShowingAnimatedImages: "アニメーション画像を再生しない"
highlightSensitiveMedia: "メディアがセンシティブであることを分かりやすく表示"
verificationEmailSent: "確認のメールを送信しました。メールに記載されたリンクにアクセスして、設定を完了してください。"

View file

@ -1,11 +0,0 @@
export class NoteUserIdIdIndex1736888704471 {
name = 'NoteUserIdIdIndex1736888704471'
async up(queryRunner) {
await queryRunner.query(`CREATE INDEX "IDX_note_userId_id" ON "note" ("userId", "id") `);
}
async down(queryRunner) {
await queryRunner.query(`DROP INDEX "public"."IDX_note_userId_id"`);
}
}

View file

@ -15,7 +15,6 @@ import type { MiDriveFile } from './DriveFile.js';
@Index('IDX_NOTE_MENTIONS', { synchronize: false })
@Index('IDX_NOTE_FILE_IDS', { synchronize: false })
@Index('IDX_NOTE_VISIBLE_USER_IDS', { synchronize: false })
@Index('IDX_note_userId_id', ['userId', 'id'])
export class MiNote {
@PrimaryColumn(id())
public id: string;

View file

@ -39,11 +39,13 @@ import XVideo from '@/components/MkMediaVideo.vue';
import * as os from '@/os.js';
import { FILE_TYPE_BROWSERSAFE } from '@/const.js';
import { defaultStore } from '@/store.js';
import { $i } from "@/account";
const props = defineProps<{
mediaList: Misskey.entities.DriveFile[];
user?: Misskey.entities.UserLite;
raw?: boolean;
isNoteSensitive?: boolean;
}>();
const gallery = shallowRef<HTMLDivElement>();
@ -90,6 +92,12 @@ async function calcAspectRatio() {
}
onMounted(() => {
if (($i ? defaultStore.state.markIncomingMediaInCwedPostAsSensitive : true)) {
props.mediaList.forEach(media => {
media.isSensitive = props.isNoteSensitive;
});
}
calcAspectRatio();
lightbox = new PhotoSwipeLightbox({

View file

@ -79,7 +79,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
<div v-if="appearNote.files && appearNote.files.length > 0">
<MkMediaList :mediaList="appearNote.files" :user="appearNote.user"/>
<MkMediaList :mediaList="appearNote.files" :user="appearNote.user" :isNoteSensitive="note.cw"/>
</div>
<MkPoll v-if="appearNote.poll" :noteId="appearNote.id" :poll="appearNote.poll" :class="$style.poll"/>
<div v-if="isEnabledUrlPreview">

View file

@ -92,7 +92,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
<div v-if="appearNote.files && appearNote.files.length > 0">
<MkMediaList :mediaList="appearNote.files" :user="appearNote.user"/>
<MkMediaList :mediaList="appearNote.files" :user="appearNote.user" :isNoteSensitive="note.cw"/>
</div>
<MkPoll v-if="appearNote.poll" ref="pollViewer" :noteId="appearNote.id" :poll="appearNote.poll" :class="$style.poll"/>
<div v-if="isEnabledUrlPreview">

View file

@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<details v-if="note.files && note.files.length > 0">
<summary>({{ i18n.tsx.withNFiles({ n: note.files.length }) }})</summary>
<MkMediaList :mediaList="note.files" :user="note.user"/>
<MkMediaList :mediaList="note.files" :user="note.user" :isNoteSensitive="note.cw"/>
</details>
<details v-if="note.poll">
<summary>{{ i18n.ts.poll }}</summary>

View file

@ -64,6 +64,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkSwitch v-model="showGapBetweenNotesInTimeline">{{ i18n.ts.showGapBetweenNotesInTimeline }}</MkSwitch>
<MkSwitch v-model="loadRawImages">{{ i18n.ts.loadRawImages }}</MkSwitch>
<MkSwitch v-model="disableCatSpeak">{{ i18n.ts.disableCatSpeak }}</MkSwitch>
<MkSwitch v-model="markIncomingMediaInCwedPostAsSensitive">{{ i18n.ts.markIncomingMediaInCwedPostAsSensitive }}</MkSwitch>
<MkRadios v-model="reactionsDisplaySize">
<template #label>{{ i18n.ts.reactionsDisplaySize }}</template>
<option value="small">{{ i18n.ts.small }}</option>
@ -301,6 +302,7 @@ const disableShowingAnimatedImages = computed(defaultStore.makeGetterSetter('dis
const forceShowAds = computed(defaultStore.makeGetterSetter('forceShowAds'));
const loadRawImages = computed(defaultStore.makeGetterSetter('loadRawImages'));
const disableCatSpeak = computed(defaultStore.makeGetterSetter('disableCatSpeak'));
const markIncomingMediaInCwedPostAsSensitive = computed(defaultStore.makeGetterSetter('markIncomingMediaInCwedPostAsSensitive'));
const highlightSensitiveMedia = computed(defaultStore.makeGetterSetter('highlightSensitiveMedia'));
const imageNewTab = computed(defaultStore.makeGetterSetter('imageNewTab'));
const warnMissingAltText = computed(defaultStore.makeGetterSetter('warnMissingAltText'));

View file

@ -79,6 +79,7 @@ const defaultStoreSaveKeys: (keyof typeof defaultStore['state'])[] = [
'imageNewTab',
'dataSaver',
'disableCatSpeak',
'markIncomingMediaInCwedPostAsSensitive',
'disableShowingAnimatedImages',
'emojiStyle',
'disableDrawer',

View file

@ -33,6 +33,8 @@ import XVideo from '@/components/MkMediaVideo.vue';
import XImage from '@/components/MkMediaImage.vue';
import XBanner from '@/components/MkMediaBanner.vue';
import { i18n } from '@/i18n.js';
import { $i } from "@/account";
import { defaultStore } from "@/store";
const props = defineProps<{
user: Misskey.entities.UserDetailed;
@ -51,7 +53,11 @@ onMounted(() => {
limit: 15,
}).then(notes => {
for (const note of notes) {
for (const file of note.files) {
for (let file of note.files) {
if (($i ? defaultStore.state.markIncomingMediaInCwedPostAsSensitive : true)) {
file.isSensitive = note.cw !== null;
}
medias.value.push({
note,
file,

View file

@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkA v-if="note.renoteId" class="rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA>
</div>
<div v-if="note.files.length > 0" :class="$style.richcontent">
<MkMediaList :mediaList="note.files" :user="note.user"/>
<MkMediaList :mediaList="note.files" :user="note.user" :isNoteSensitive="note.cw"/>
</div>
<div v-if="note.poll">
<MkPoll :noteId="note.id" :poll="note.poll" :readOnly="true"/>

View file

@ -263,6 +263,10 @@ export const defaultStore = markRaw(new Storage('base', {
where: 'account',
default: false,
},
markIncomingMediaInCwedPostAsSensitive: {
where: 'account',
default: true,
},
emojiStyle: {
where: 'device',
default: 'twemoji', // twemoji / fluentEmoji / native