From 3061ac09d0da19b1be1abec86ece120f2e9ea2e6 Mon Sep 17 00:00:00 2001 From: mARTin Date: Mon, 23 Mar 2026 12:27:05 +0100 Subject: [PATCH] fix: add cross icon to icon picker v1.58.3 --- package.json | 2 +- src/components/IconPicker.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0800023..0ce0d97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.58.2", + "version": "1.58.3", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "main": "index.js", "scripts": { diff --git a/src/components/IconPicker.tsx b/src/components/IconPicker.tsx index fbf20f1..68033dc 100644 --- a/src/components/IconPicker.tsx +++ b/src/components/IconPicker.tsx @@ -72,7 +72,7 @@ import { mdiChessRook, mdiChurch, mdiClipboard, mdiClover, mdiCoatRack, mdiCog, mdiCompass, mdiCone, mdiContentCut, mdiCookie, mdiCorn, mdiCow, mdiCricket, - mdiCrosshairs, mdiCrystalBall, mdiCup, mdiCurling, mdiDiceMultiple, + mdiCross, mdiCrosshairs, mdiCrystalBall, mdiCup, mdiCurling, mdiDiceMultiple, mdiDolly, mdiDoorOpen, mdiDrone, mdiDuck, mdiDumpTruck, mdiEgg, mdiElevator, mdiEmoticon, mdiEngine, mdiFan, mdiFeather, mdiFerry, mdiFire, mdiFireExtinguisher, mdiFireHydrant, @@ -607,6 +607,7 @@ const mdiIcons: IconEntry[] = [ { name: "mdi-horseshoe", keywords: ["horseshoe", "luck", "horse", "equestrian", "ranch"], type: "mdi", icon: mdiHorseshoe }, { name: "mdi-hurricane", keywords: ["hurricane", "storm", "weather", "tornado", "wind"], type: "mdi", icon: mdiWeatherHurricane }, { name: "mdi-church", keywords: ["church", "religion", "christian", "worship", "building"], type: "mdi", icon: mdiChurch }, + { name: "mdi-cross", keywords: ["cross", "religion", "christian", "faith", "crucifix", "church", "jesus"], type: "mdi", icon: mdiCross }, { name: "mdi-knife", keywords: ["knife", "cut", "kitchen", "blade", "sharp"], type: "mdi", icon: mdiKnife }, { name: "mdi-library", keywords: ["library", "books", "read", "study", "education"], type: "mdi", icon: mdiLibrary }, { name: "mdi-lifebuoy", keywords: ["lifebuoy", "rescue", "safety", "swim", "help"], type: "mdi", icon: mdiLifebuoy },