1
0
Fork 1
mirror of https://example.com synced 2024-11-22 12:16:40 +09:00

feat: publish reaction history by default

This commit is contained in:
naskya 2023-10-16 03:04:33 +09:00
parent c5eccff8d0
commit 958c6678f9
Signed by: naskya
GPG key ID: 164DFF24E2D40139
3 changed files with 5 additions and 2 deletions

View file

@ -40,6 +40,9 @@
## 細かい変更点
- リアクションの履歴を公開する設定をデフォルトで有効に
- 私がみんなのリアクションを見たいと思っているため
- もちろん設定から無効にできます
- 標準のフォントを Atkinson Hyperlegible にする変更を取り消し
- フォントを変更したい場合は[このカスタム CSS](https://gitlab.com/LunarEclipse363/lunar-misskey-tweaks#setting-a-different-font) を使ってください
- 簡体中文の翻訳が存在しない項目では繁体中文の翻訳を用いるように(本家では逆)

View file

@ -4,7 +4,7 @@ export class userPublicReactions1634486652000 {
}
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT false`,
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT true`,
);
}
async down(queryRunner) {

View file

@ -91,7 +91,7 @@ export class UserProfile {
public emailNotificationTypes: string[];
@Column("boolean", {
default: false,
default: true,
})
public publicReactions: boolean;