🔀 Merge dev to auth branch

This commit is contained in:
Manuel
2023-09-10 13:38:53 +02:00
617 changed files with 8473 additions and 1499 deletions

View File

@@ -22,6 +22,10 @@ const definition = defineWidget({
type: 'switch',
defaultValue: true,
},
showUnmonitored: {
type: 'switch',
defaultValue: false,
},
useSonarrv4: {
type: 'switch',
defaultValue: false,
@@ -79,7 +83,7 @@ function CalendarTile({ widget }: CalendarTileProps) {
configName: configName!,
month: month.getMonth() + 1,
year: month.getFullYear(),
options: { useSonarrv4: widget.properties.useSonarrv4 },
options: { useSonarrv4: widget.properties.useSonarrv4, showUnmonitored: widget.properties.showUnmonitored },
},
{
staleTime: 1000 * 60 * 60 * 5,