diff --git a/issue_template/bug.yaml b/issue_template/bug.yaml index b7f0c70986..c7e2f6b788 100644 --- a/issue_template/bug.yaml +++ b/issue_template/bug.yaml @@ -68,5 +68,5 @@ body: options: - label: I agree to follow this project's Contribution Guidelines required: true - - label: I have searched the issue tracker for similar issues, and this is not a duplicate. + - label: I have searched the issue tracker for similar issues, and this is not a duplicate. required: true diff --git a/issue_template/feature.yaml b/issue_template/feature.yaml index 75da17133d..7ebed1b06f 100644 --- a/issue_template/feature.yaml +++ b/issue_template/feature.yaml @@ -68,5 +68,5 @@ body: options: - label: I agree to follow this project's Contribution Guidelines required: true - - label: I have searched the issue tracker for similar requests, and this is not a duplicate. + - label: I have searched the issue tracker for similar requests, and this is not a duplicate. required: true diff --git a/package.json b/package.json index a03c5dff1b..d577699108 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "14.0.0-dev44", + "version": "14.0.0-dev46", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/backend/package.json b/packages/backend/package.json index 0d7ea1f925..cf04b3bf72 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -15,10 +15,10 @@ "check:connect": "node ./check_connect.js", "build": "pnpm swc src -d built -D", "watch": "pnpm swc src -d built -D -w", - "lint": "pnpm rome check \"src/**/*.ts\"", + "lint": "pnpm rome check --apply *", "mocha": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha", "test": "pnpm run mocha", - "format": "pnpm rome format * --write && pnpm rome check --apply *" + "format": "pnpm rome format * --write" }, "resolutions": { "chokidar": "^3.3.1" diff --git a/packages/backend/src/misc/fetch-meta.ts b/packages/backend/src/misc/fetch-meta.ts index c354ae6d9f..b5426e31ae 100644 --- a/packages/backend/src/misc/fetch-meta.ts +++ b/packages/backend/src/misc/fetch-meta.ts @@ -3,7 +3,7 @@ import { Meta } from "@/models/entities/meta.js"; let cache: Meta; -export function metaToPugArgs(meta: Meta) : object { +export function metaToPugArgs(meta: Meta): object { let motd = ["Loading..."]; if (meta.customMOTD.length > 0) { motd = meta.customMOTD; @@ -26,7 +26,7 @@ export function metaToPugArgs(meta: Meta) : object { themeColor: meta.themeColor, randomMOTD: motd[Math.floor(Math.random() * motd.length)], privateMode: meta.privateMode, - } + }; } export async function fetchMeta(noCache = false): Promise { diff --git a/packages/backend/src/server/web/index.ts b/packages/backend/src/server/web/index.ts index 123c41d031..c6748fd80b 100644 --- a/packages/backend/src/server/web/index.ts +++ b/packages/backend/src/server/web/index.ts @@ -367,7 +367,7 @@ const userPage: Router.Middleware = async (ctx, next) => { profile, me, avatarUrl: await Users.getAvatarUrl(user), - sub: subParam + sub: subParam, }; await ctx.render("user", userDetail); @@ -446,7 +446,7 @@ router.get("/posts/:note", async (ctx, next) => { await Users.findOneByOrFail({ id: note.userId }), ), // TODO: Let locale changeable by instance setting - summary: getNoteSummary(_note) + summary: getNoteSummary(_note), }); ctx.set("Cache-Control", "public, max-age=15"); @@ -482,7 +482,7 @@ router.get("/@:user/pages/:page", async (ctx, next) => { profile, avatarUrl: await Users.getAvatarUrl( await Users.findOneByOrFail({ id: page.userId }), - ) + ), }); if (["public"].includes(page.visibility)) { @@ -514,7 +514,7 @@ router.get("/clips/:clip", async (ctx, next) => { profile, avatarUrl: await Users.getAvatarUrl( await Users.findOneByOrFail({ id: clip.userId }), - ) + ), }); ctx.set("Cache-Control", "public, max-age=15"); @@ -539,7 +539,7 @@ router.get("/gallery/:post", async (ctx, next) => { profile, avatarUrl: await Users.getAvatarUrl( await Users.findOneByOrFail({ id: post.userId }), - ) + ), }); ctx.set("Cache-Control", "public, max-age=15"); @@ -561,7 +561,7 @@ router.get("/channels/:channel", async (ctx, next) => { const meta = await fetchMeta(); await ctx.render("channel", { ...metaToPugArgs(meta), - channel: _channel + channel: _channel, }); ctx.set("Cache-Control", "public, max-age=15"); @@ -612,9 +612,9 @@ router.get("/api/v1/streaming", async (ctx) => { // Render base html for all requests router.get("(.*)", async (ctx) => { const meta = await fetchMeta(); - + await ctx.render("base", { - ...metaToPugArgs(meta) + ...metaToPugArgs(meta), }); ctx.set("Cache-Control", "public, max-age=3"); }); diff --git a/packages/client/src/components/MkChatPreview.vue b/packages/client/src/components/MkChatPreview.vue index 4d694f2dc6..135db0b262 100644 --- a/packages/client/src/components/MkChatPreview.vue +++ b/packages/client/src/components/MkChatPreview.vue @@ -102,7 +102,7 @@ function isMe(message): boolean { opacity: 0.8; } - &:not(.isMe):not(.isRead) { + &:not(.isRead) { background-color: var(--accentedBg); } @@ -175,13 +175,6 @@ function isMe(message): boolean { &.max-width_400px { > .message { - &:not(.isMe):not(.isRead) { - > div { - background-image: none; - border-left: solid 4px #3aa2dc; - } - } - > div { padding: 16px; font-size: 0.9em; diff --git a/packages/client/src/components/MkMenu.vue b/packages/client/src/components/MkMenu.vue index 4555527747..5f243a3638 100644 --- a/packages/client/src/components/MkMenu.vue +++ b/packages/client/src/components/MkMenu.vue @@ -128,7 +128,11 @@