Calendar: add conditional week number column. New option is in the Location tab of the settings.

This commit is contained in:
LemmyCook
2025-09-17 22:32:44 -04:00
parent 75b7f0fcb0
commit 6e88118ca9
3 changed files with 157 additions and 39 deletions
+8 -1
View File
@@ -100,11 +100,18 @@ ColumnLayout {
}
NToggle {
label: "Show Month Before Day"
label: "Show month before day"
description: "Organize your dates. On for 09/17/2025, off for 17/09/2025."
checked: Settings.data.location.monthBeforeDay
onToggled: checked => Settings.data.location.monthBeforeDay = checked
}
NToggle {
label: "Show week number in calendar"
description: "Displays the week number of the year in calendar view."
checked: Settings.data.location.showWeekNumberInCalendar
onToggled: checked => Settings.data.location.showWeekNumberInCalendar = checked
}
}
NDivider {