From 18801ed0c02627e87639dc0848cab44dacc18be2 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Mon, 18 Apr 2022 06:51:50 -0500 Subject: Rebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2) --- recipes/TickTick/index.js | 2 +- recipes/TickTick/package.json | 2 +- recipes/TickTick/webview.js | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'recipes/TickTick') diff --git a/recipes/TickTick/index.js b/recipes/TickTick/index.js index 223ef7e..42d052c 100644 --- a/recipes/TickTick/index.js +++ b/recipes/TickTick/index.js @@ -1,2 +1,2 @@ // default integration (e.g messenger.com, ...) -module.exports = Ferdi => Ferdi; +module.exports = Ferdium => Ferdium; diff --git a/recipes/TickTick/package.json b/recipes/TickTick/package.json index 3b5156c..3aa41a0 100644 --- a/recipes/TickTick/package.json +++ b/recipes/TickTick/package.json @@ -1,7 +1,7 @@ { "id": "TickTick", "name": "TickTick", - "version": "1.2.1", + "version": "1.3.0", "license": "MIT", "config": { "serviceURL": "https://www.ticktick.com/#p/inbox/tasks" diff --git a/recipes/TickTick/webview.js b/recipes/TickTick/webview.js index ae3265b..d2c7ef5 100644 --- a/recipes/TickTick/webview.js +++ b/recipes/TickTick/webview.js @@ -1,10 +1,10 @@ -module.exports = (Ferdi) => { +module.exports = (Ferdium) => { const getMessages = () => { // all overdue items are being counted const count = document.querySelectorAll('.duedate-overdue').length; - Ferdi.setBadge(count); + Ferdium.setBadge(count); }; - Ferdi.loop(getMessages); + Ferdium.loop(getMessages); }; -- cgit v1.2.3-54-g00ecf