aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fiverr
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2024-03-18 12:36:05 +0000
committerLibravatar GitHub <noreply@github.com>2024-03-18 12:36:05 +0000
commit006950318f1228af10eeb0cdfb0861af6ecb1e75 (patch)
treed61c790d4a4b9f6f16620f645b2ba5dce248f79d /recipes/fiverr
parentGoogle Voice darkmode update for add contact (#516) (diff)
downloadferdium-recipes-006950318f1228af10eeb0cdfb0861af6ecb1e75.tar.gz
ferdium-recipes-006950318f1228af10eeb0cdfb0861af6ecb1e75.tar.zst
ferdium-recipes-006950318f1228af10eeb0cdfb0861af6ecb1e75.zip
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)
Diffstat (limited to 'recipes/fiverr')
-rw-r--r--recipes/fiverr/icon.svg15
-rw-r--r--recipes/fiverr/index.js1
-rw-r--r--recipes/fiverr/package.json10
-rw-r--r--recipes/fiverr/webview.js16
4 files changed, 42 insertions, 0 deletions
diff --git a/recipes/fiverr/icon.svg b/recipes/fiverr/icon.svg
new file mode 100644
index 0000000..1e71430
--- /dev/null
+++ b/recipes/fiverr/icon.svg
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Generator: Adobe Illustrator 28.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4 viewBox="0 0 2500 2500" style="enable-background:new 0 0 2500 2500;" xml:space="preserve">
5<style type="text/css">
6 .st0{fill:#00B22D;}
7 .st1{fill:#FFFFFF;}
8</style>
9<circle class="st0" cx="1250" cy="1250" r="1250"/>
10<g>
11 <path class="st1" d="M1923.84,921.59h-825.02v-54.07c0-106.13,106.13-108.13,160.2-108.13c62.08,0,90.11,6.01,90.11,6.01V473.04
12 c0,0-56.07-8.01-132.16-8.01c-172.21,0-490.61,48.06-490.61,412.51v46.06H576.16v270.34h150.19v570.71l0,0v270.34h372.46v-270.34
13 l0,0v-570.71h450.56v570.71l0,0v270.34h374.46v-270.34l0,0V921.59z"/>
14</g>
15</svg>
diff --git a/recipes/fiverr/index.js b/recipes/fiverr/index.js
new file mode 100644
index 0000000..dd41f72
--- /dev/null
+++ b/recipes/fiverr/index.js
@@ -0,0 +1 @@
module.exports = Ferdium => Ferdium;
diff --git a/recipes/fiverr/package.json b/recipes/fiverr/package.json
new file mode 100644
index 0000000..6f9f630
--- /dev/null
+++ b/recipes/fiverr/package.json
@@ -0,0 +1,10 @@
1{
2 "id": "fiverr",
3 "name": "Fiverr",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://www.fiverr.com/inbox/",
8 "hasNotificationSound": true
9 }
10}
diff --git a/recipes/fiverr/webview.js b/recipes/fiverr/webview.js
new file mode 100644
index 0000000..2a81dec
--- /dev/null
+++ b/recipes/fiverr/webview.js
@@ -0,0 +1,16 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => {
8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};