aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gmail
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-27 18:13:24 +0530
committerLibravatar GitHub <noreply@github.com>2021-08-27 18:13:24 +0530
commit155c4b832281348c16be1f4ef667e6e23dbf1bd8 (patch)
treed144e2de2e6c7fb2e334246e8a4aecdbeb08ef8d /recipes/gmail
parentdocs: fixed template file for creating recipe. (diff)
downloadferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.gz
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.zst
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.zip
chore: normalized all recipes to ensure compatibility with es6 (#639)
- Removed some calls to set badge with '0' all the time. - Removed all 'sourceMaps' since they are all outdated atm.
Diffstat (limited to 'recipes/gmail')
-rw-r--r--recipes/gmail/index.js4
-rw-r--r--recipes/gmail/package.json2
-rw-r--r--recipes/gmail/webview.js16
3 files changed, 11 insertions, 11 deletions
diff --git a/recipes/gmail/index.js b/recipes/gmail/index.js
index e1896e4..8aae88f 100644
--- a/recipes/gmail/index.js
+++ b/recipes/gmail/index.js
@@ -1,4 +1,2 @@
1const os = require('os'); 1module.exports = Ferdi => class Gmail extends Ferdi {
2
3module.exports = Franz => class Gmail extends Franz {
4}; 2};
diff --git a/recipes/gmail/package.json b/recipes/gmail/package.json
index 502faff..49fc89f 100644
--- a/recipes/gmail/package.json
+++ b/recipes/gmail/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "gmail", 2 "id": "gmail",
3 "name": "Gmail", 3 "name": "Gmail",
4 "version": "1.3.11", 4 "version": "1.4.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://mail.google.com" 7 "serviceURL": "https://mail.google.com"
diff --git a/recipes/gmail/webview.js b/recipes/gmail/webview.js
index a26c7cb..9a09c87 100644
--- a/recipes/gmail/webview.js
+++ b/recipes/gmail/webview.js
@@ -1,6 +1,8 @@
1const path = require('path'); 1const _path = _interopRequireDefault(require('path'));
2 2
3module.exports = (Franz) => { 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = (Ferdi) => {
4 // if the user is on gmail's landing page, go to the login page. 6 // if the user is on gmail's landing page, go to the login page.
5 if (location.hostname == 'www.google.com' && location.href.includes('gmail/about/')) { 7 if (location.hostname == 'www.google.com' && location.href.includes('gmail/about/')) {
6 location.href = 'https://accounts.google.com/AccountChooser?service=mail&continue=https://mail.google.com/mail/'; 8 location.href = 'https://accounts.google.com/AccountChooser?service=mail&continue=https://mail.google.com/mail/';
@@ -18,11 +20,11 @@ module.exports = (Franz) => {
18 } 20 }
19 } 21 }
20 22
21 // set Franz badge 23 // set Ferdi badge
22 Franz.setBadge(count); 24 Ferdi.setBadge(count);
23 }; 25 };
24 26
25 Franz.injectCSS(path.join(__dirname, 'service.css')); 27 Ferdi.loop(getMessages);
26 // check for new messages every second and update Franz badge 28
27 Franz.loop(getMessages); 29 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
28}; 30};