aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cinny
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/cinny')
-rw-r--r--recipes/cinny/package.json2
-rw-r--r--recipes/cinny/webview.js10
2 files changed, 10 insertions, 2 deletions
diff --git a/recipes/cinny/package.json b/recipes/cinny/package.json
index 511d1f2..f42d794 100644
--- a/recipes/cinny/package.json
+++ b/recipes/cinny/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "cinny", 2 "id": "cinny",
3 "name": "Cinny", 3 "name": "Cinny",
4 "version": "1.0.1", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "aliases": [ 6 "aliases": [
7 "Matrix" 7 "Matrix"
diff --git a/recipes/cinny/webview.js b/recipes/cinny/webview.js
index f4fd306..c17cc79 100644
--- a/recipes/cinny/webview.js
+++ b/recipes/cinny/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 function getMessages() { 8 function getMessages() {
3 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level. 9 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level.
@@ -9,7 +15,7 @@ module.exports = Ferdium => {
9 const badges = document.querySelectorAll('.sidebar .notification-badge'); 15 const badges = document.querySelectorAll('.sidebar .notification-badge');
10 for (const badge of badges) { 16 for (const badge of badges) {
11 if (badge.childNodes.length === 0) { 17 if (badge.childNodes.length === 0) {
12 indirectCount++; 18 indirectCount += 1;
13 } else { 19 } else {
14 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent); 20 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent);
15 } 21 }
@@ -19,4 +25,6 @@ module.exports = Ferdium => {
19 Ferdium.setBadge(directCount, indirectCount); 25 Ferdium.setBadge(directCount, indirectCount);
20 } 26 }
21 Ferdium.loop(getMessages); 27 Ferdium.loop(getMessages);
28
29 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
22}; 30};