From c5efe0ee6ddbabe4d90f953ecff387bb0e86841e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20G=C3=B6k=C3=A7in?= Date: Fri, 30 Aug 2024 12:00:37 +0200 Subject: [PATCH] feat: new holy-welness emoji --- Code.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Code.js b/Code.js index 1da5f9a..460e5fb 100644 --- a/Code.js +++ b/Code.js @@ -8,6 +8,7 @@ const emojiMap = { 'stay': '🏠', 'holy shred': '💪', 'holy ride': '🚵', + 'holy wellness': '🧖', 'padel': '🏸', 'meeting': '🤝', 'catch-up': '☕', @@ -78,7 +79,7 @@ function ColorEvents() { } else if (originalTitle.includes("stay") || originalTitle.includes("reservation")) { color = CalendarApp.EventColor.PALE_BLUE; Logger.log("Title: " + title + " - Color to print: PALE_BLUE"); - } else if (originalTitle.includes("holy shred") || originalTitle.includes("holy ride") || originalTitle.includes("padel")) { + } else if (originalTitle.includes("holy shred") || originalTitle.includes("holy ride") || originalTitle.includes("holy wellness") || originalTitle.includes("padel")) { color = CalendarApp.EventColor.RED; Logger.log("Title: " + title + " - Color to print: RED"); } else if (originalTitle.startsWith("🤝 Meeting") || originalTitle.includes("catch-up") || originalTitle.includes("video call") || originalTitle.includes("call") || originalTitle.includes("ara")) {