Skip to content

Commit

Permalink
Change the default for new user
Browse files Browse the repository at this point in the history
  • Loading branch information
YU000jp committed Jul 27, 2024
1 parent f1b207a commit fc12111
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export const settingsTemplate = (userLanguage): SettingSchemaDesc[] => [
// description: t("Task color") + "🆕",
// },
//TODO: 進捗ゼロ

// 共通設定ここまで


Expand Down Expand Up @@ -352,7 +352,7 @@ export const settingsTemplate = (userLanguage): SettingSchemaDesc[] => [
key: "booleanBoundariesAll",
title: t("Enable feature"),
type: "boolean",
default: true,
default: false,
description: "",
},
{ // 有効トグル
Expand All @@ -373,28 +373,28 @@ export const settingsTemplate = (userLanguage): SettingSchemaDesc[] => [
key: "booleanBoundariesOnWeeklyJournal",
title: "",
type: "boolean",
default: true,
default: false,
description: t("Use on Weekly Journal"),
},
{ // Monthly Journalで有効にするかどうか
key: "booleanBoundariesOnMonthlyJournal",
title: "",
type: "boolean",
default: true,
default: false,
description: t("Use on Monthly Journal") + "🆕",
},
{ // Quarterly Journalで有効にするかどうか
key: "booleanBoundariesOnQuarterlyJournal",
title: "",
type: "boolean",
default: true,
default: false,
description: t("Use on Quarterly Journal") + "🆕",
},
{ // Yearly Journalで有効にするかどうか
key: "booleanBoundariesOnYearlyJournal",
title: "",
type: "boolean",
default: true,
default: false,
description: t("Use on Yearly Journal") + "🆕",
},
{//20240108
Expand Down

0 comments on commit fc12111

Please sign in to comment.