From 006950318f1228af10eeb0cdfb0861af6ecb1e75 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Mon, 18 Mar 2024 12:36:05 +0000 Subject: Add several recipes (#519) The added recipes are as follows: - Mastodeck (fixes https://github.com/ferdium/ferdium-app/issues/959) - Microsoft Planner (fixes https://github.com/ferdium/ferdium-app/issues/955) - Alibaba Chat (fixes https://github.com/ferdium/ferdium-app/issues/1376) - Fiverr (step forward in https://github.com/ferdium/ferdium-app/issues/1377 - missing unread logic) - Draw.io (fixes https://github.com/ferdium/ferdium-app/issues/1429) - Canva (fixes https://github.com/ferdium/ferdium-app/issues/1447) - Penpot (fixes https://github.com/ferdium/ferdium-app/issues/1469) - HackerNews (fixes https://github.com/ferdium/ferdium-app/issues/1505) - Google Maps (fixes https://github.com/ferdium/ferdium-app/issues/1513) - Patreon (fixes https://github.com/ferdium/ferdium-app/issues/1524) - Fandom (fixes https://github.com/ferdium/ferdium-app/issues/1540) - Romeo (fixes https://github.com/ferdium/ferdium-app/issues/1553) - Infomaniak Kdrive (fixes https://github.com/ferdium/ferdium-app/issues/1559) - Notion Calendar (fixes https://github.com/ferdium/ferdium-app/issues/1599) - Superlist (fixes https://github.com/ferdium/ferdium-app/issues/1601) - Purelymail (fixes https://github.com/ferdium/ferdium-app/issues/1624) - SOGo (fixes https://github.com/ferdium/ferdium-app/issues/1472) --- recipes/canva/icon.svg | 27 +++++++++++++++++++++++++++ recipes/canva/index.js | 1 + recipes/canva/package.json | 9 +++++++++ recipes/canva/webview.js | 16 ++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 recipes/canva/icon.svg create mode 100644 recipes/canva/index.js create mode 100644 recipes/canva/package.json create mode 100644 recipes/canva/webview.js (limited to 'recipes/canva') diff --git a/recipes/canva/icon.svg b/recipes/canva/icon.svg new file mode 100644 index 0000000..e0bd934 --- /dev/null +++ b/recipes/canva/icon.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/recipes/canva/index.js b/recipes/canva/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/canva/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/canva/package.json b/recipes/canva/package.json new file mode 100644 index 0000000..eeebd4e --- /dev/null +++ b/recipes/canva/package.json @@ -0,0 +1,9 @@ +{ + "id": "canva", + "name": "Canva", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://canva.com" + } +} diff --git a/recipes/canva/webview.js b/recipes/canva/webview.js new file mode 100644 index 0000000..2a81dec --- /dev/null +++ b/recipes/canva/webview.js @@ -0,0 +1,16 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges + // const getMessages = () => { + // // TODO: Insert your notification-finding code here + // Ferdium.setBadge(0, 0); + // }; + // Ferdium.loop(getMessages); + + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-54-g00ecf