aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/evernote
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
commit18801ed0c02627e87639dc0848cab44dacc18be2 (patch)
tree15e56ba66c68bf7b4594e6c9fdef44e037b4be31 /recipes/evernote
parentRemove deprecated webPreference flag (diff)
downloadferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.gz
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.zst
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.zip
Rebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2)
Diffstat (limited to 'recipes/evernote')
-rw-r--r--recipes/evernote/index.js2
-rw-r--r--recipes/evernote/package.json2
-rw-r--r--recipes/evernote/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/evernote/index.js b/recipes/evernote/index.js
index 23607bd..dd41f72 100644
--- a/recipes/evernote/index.js
+++ b/recipes/evernote/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/evernote/package.json b/recipes/evernote/package.json
index 6ade667..1b56d41 100644
--- a/recipes/evernote/package.json
+++ b/recipes/evernote/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "evernote", 2 "id": "evernote",
3 "name": "Evernote", 3 "name": "Evernote",
4 "version": "1.1.0", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://www.evernote.com/Login.action" 7 "serviceURL": "https://www.evernote.com/Login.action"
diff --git a/recipes/evernote/webview.js b/recipes/evernote/webview.js
index b877798..8178443 100644
--- a/recipes/evernote/webview.js
+++ b/recipes/evernote/webview.js
@@ -2,14 +2,14 @@ const _path = _interopRequireDefault(require('path'));
2 2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4 4
5module.exports = (Ferdi) => { 5module.exports = (Ferdium) => {
6 const getMessages = () => { 6 const getMessages = () => {
7 const inbox = document.querySelector('.topbar-notificationsButton.has-newNotifications'); 7 const inbox = document.querySelector('.topbar-notificationsButton.has-newNotifications');
8 const passiveCount = inbox === null ? 0 : 1; 8 const passiveCount = inbox === null ? 0 : 1;
9 Ferdi.setBadge(0, passiveCount); 9 Ferdium.setBadge(0, passiveCount);
10 }; 10 };
11 11
12 Ferdi.loop(getMessages); 12 Ferdium.loop(getMessages);
13 13
14 Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'franz.css')); 14 Ferdium.injectCSS(_path.default.join(__dirname, 'css', 'franz.css'));
15}; 15};