aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Thomas Papamichail <thomas@pointer.gr>2020-11-05 13:49:20 +0200
committerLibravatar Thomas Papamichail <thomas@pointer.gr>2020-11-05 13:49:20 +0200
commit00d132835777ba7ef49f783b0b51edf4c3920e29 (patch)
tree6bdd2e29f42b0e5f72c3a976f2fa0cb5ae000bfc /recipes
parentFix unread emails css selector (diff)
downloadferdium-recipes-00d132835777ba7ef49f783b0b51edf4c3920e29.tar.gz
ferdium-recipes-00d132835777ba7ef49f783b0b51edf4c3920e29.tar.zst
ferdium-recipes-00d132835777ba7ef49f783b0b51edf4c3920e29.zip
Update version & Show number of unread messages in the current folder & Show badge for unread messages everywhere
Diffstat (limited to 'recipes')
-rw-r--r--recipes/zoho/package.json2
-rw-r--r--recipes/zoho/webview.js5
2 files changed, 4 insertions, 3 deletions
diff --git a/recipes/zoho/package.json b/recipes/zoho/package.json
index 331f1e7..3b479d2 100644
--- a/recipes/zoho/package.json
+++ b/recipes/zoho/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zoho", 2 "id": "zoho",
3 "name": "Zoho Mail", 3 "name": "Zoho Mail",
4 "version": "1.0.1", 4 "version": "1.0.2",
5 "description": "Zoho Mail – Hosted Email for Businesses", 5 "description": "Zoho Mail – Hosted Email for Businesses",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Troke <jame_glove@yahoo.com>", 7 "author": "Troke <jame_glove@yahoo.com>",
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index 2f6f58c..29ffa9c 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -2,9 +2,10 @@ const path = require('path');
2 2
3module.exports = (Franz, options) => { 3module.exports = (Franz, options) => {
4 const getMessages = () => { 4 const getMessages = () => {
5 const unreadMail = $("#zmlTree .zmTreeNDWra .zmBold").length; 5 const unreadMailInCurrentFolder = $(".zmList.zmLUrd").length;
6 const unreadMailAnyware = $("#zmlTree .zmTreeNDWra .zmBold").length;
6 7
7 Franz.setBadge(unreadMail); 8 Franz.setBadge(unreadMailInCurrentFolder, unreadMailAnyware);
8 } 9 }
9 10
10 Franz.loop(getMessages); 11 Franz.loop(getMessages);