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/zimbra/index.js | 4 ++-- recipes/zimbra/package.json | 2 +- recipes/zimbra/webview.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'recipes/zimbra') diff --git a/recipes/zimbra/index.js b/recipes/zimbra/index.js index 50c3cf2..52dcc95 100644 --- a/recipes/zimbra/index.js +++ b/recipes/zimbra/index.js @@ -1,5 +1,5 @@ -module.exports = Ferdi => - class Zimbra extends Ferdi { +module.exports = Ferdium => + class Zimbra extends Ferdium { async validateUrl() { return true; } diff --git a/recipes/zimbra/package.json b/recipes/zimbra/package.json index 665776e..f05bb65 100644 --- a/recipes/zimbra/package.json +++ b/recipes/zimbra/package.json @@ -1,7 +1,7 @@ { "id": "zimbra", "name": "Zimbra", - "version": "1.1.1", + "version": "1.2.0", "license": "MIT", "config": { "hasNotificationSound": true, diff --git a/recipes/zimbra/webview.js b/recipes/zimbra/webview.js index d4b8a97..1fdbde5 100644 --- a/recipes/zimbra/webview.js +++ b/recipes/zimbra/webview.js @@ -1,9 +1,9 @@ -module.exports = Ferdi => { +module.exports = Ferdium => { const getMessages = () => { const { title } = document; const regex = /\d+/; - Ferdi.setBadge(regex.test(title) ? Number(regex.exec(title)[0]) : 0); + Ferdium.setBadge(regex.test(title) ? Number(regex.exec(title)[0]) : 0); }; - Ferdi.loop(getMessages); + Ferdium.loop(getMessages); }; -- cgit v1.2.3-54-g00ecf