feat: publish reaction history by default
This commit is contained in:
parent
c5eccff8d0
commit
958c6678f9
3 changed files with 5 additions and 2 deletions
|
@ -40,6 +40,9 @@
|
||||||
|
|
||||||
## 細かい変更点
|
## 細かい変更点
|
||||||
|
|
||||||
|
- リアクションの履歴を公開する設定をデフォルトで有効に
|
||||||
|
- 私がみんなのリアクションを見たいと思っているため
|
||||||
|
- もちろん設定から無効にできます
|
||||||
- 標準のフォントを Atkinson Hyperlegible にする変更を取り消し
|
- 標準のフォントを Atkinson Hyperlegible にする変更を取り消し
|
||||||
- フォントを変更したい場合は[このカスタム CSS](https://gitlab.com/LunarEclipse363/lunar-misskey-tweaks#setting-a-different-font) を使ってください
|
- フォントを変更したい場合は[このカスタム CSS](https://gitlab.com/LunarEclipse363/lunar-misskey-tweaks#setting-a-different-font) を使ってください
|
||||||
- 簡体中文の翻訳が存在しない項目では繁体中文の翻訳を用いるように(本家では逆)
|
- 簡体中文の翻訳が存在しない項目では繁体中文の翻訳を用いるように(本家では逆)
|
||||||
|
|
|
@ -4,7 +4,7 @@ export class userPublicReactions1634486652000 {
|
||||||
}
|
}
|
||||||
async up(queryRunner) {
|
async up(queryRunner) {
|
||||||
await queryRunner.query(
|
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) {
|
async down(queryRunner) {
|
||||||
|
|
|
@ -91,7 +91,7 @@ export class UserProfile {
|
||||||
public emailNotificationTypes: string[];
|
public emailNotificationTypes: string[];
|
||||||
|
|
||||||
@Column("boolean", {
|
@Column("boolean", {
|
||||||
default: false,
|
default: true,
|
||||||
})
|
})
|
||||||
public publicReactions: boolean;
|
public publicReactions: boolean;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue