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/mastodeck/icon.svg | 983 +++++++++++++++++++++++++++++++++++++++++ recipes/mastodeck/index.js | 1 + recipes/mastodeck/package.json | 9 + recipes/mastodeck/webview.js | 9 + 4 files changed, 1002 insertions(+) create mode 100644 recipes/mastodeck/icon.svg create mode 100644 recipes/mastodeck/index.js create mode 100644 recipes/mastodeck/package.json create mode 100644 recipes/mastodeck/webview.js (limited to 'recipes/mastodeck') diff --git a/recipes/mastodeck/icon.svg b/recipes/mastodeck/icon.svg new file mode 100644 index 0000000..134947d --- /dev/null +++ b/recipes/mastodeck/icon.svg @@ -0,0 +1,983 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/recipes/mastodeck/index.js b/recipes/mastodeck/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/mastodeck/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/mastodeck/package.json b/recipes/mastodeck/package.json new file mode 100644 index 0000000..40370a0 --- /dev/null +++ b/recipes/mastodeck/package.json @@ -0,0 +1,9 @@ +{ + "id": "mastodeck", + "name": "Mastodeck", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://mastodeck.com" + } +} diff --git a/recipes/mastodeck/webview.js b/recipes/mastodeck/webview.js new file mode 100644 index 0000000..1119219 --- /dev/null +++ b/recipes/mastodeck/webview.js @@ -0,0 +1,9 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-70-g09d2