bump dependencies

This commit is contained in:
Vendicated
2025-04-01 21:59:58 +02:00
parent 8f94196646
commit 391ad94b85
3 changed files with 682 additions and 757 deletions

View File

@@ -29,10 +29,10 @@ export function setBadgeCount(count: number) {
break;
case "darwin":
if (count === 0) {
app.dock.setBadge("");
app.dock!.setBadge("");
break;
}
app.dock.setBadge(count === -1 ? "•" : count.toString());
app.dock!.setBadge(count === -1 ? "•" : count.toString());
break;
case "win32":
const [index, description] = getBadgeIndexAndDescription(count);