aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pomodoro-tracker
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-09-22 20:56:48 +0200
committerLibravatar GitHub <noreply@github.com>2020-09-22 19:56:48 +0100
commit6f5e4a00588aefdda7a5a1cfe70935870e7e234a (patch)
tree9e29aa7aa0620a1a4a968ff8739b4b8ba96791a9 /recipes/pomodoro-tracker
parentUpdated logos for Outlook/OWA (diff)
downloadferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.gz
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.zst
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.zip
Unpack recipes and update recipes icons (#292)
Co-authored-by: Amine Mouafik <amine@mouafik.fr>
Diffstat (limited to 'recipes/pomodoro-tracker')
-rw-r--r--recipes/pomodoro-tracker/README.md5
-rw-r--r--recipes/pomodoro-tracker/icon.pngbin0 -> 32981 bytes
-rw-r--r--recipes/pomodoro-tracker/icon.svg1
-rw-r--r--recipes/pomodoro-tracker/index.js2
-rw-r--r--recipes/pomodoro-tracker/package.json13
-rw-r--r--recipes/pomodoro-tracker/service.css1
-rw-r--r--recipes/pomodoro-tracker/webview.js14
7 files changed, 36 insertions, 0 deletions
diff --git a/recipes/pomodoro-tracker/README.md b/recipes/pomodoro-tracker/README.md
new file mode 100644
index 0000000..8ff1668
--- /dev/null
+++ b/recipes/pomodoro-tracker/README.md
@@ -0,0 +1,5 @@
1# Pomodoro Tracker for Ferdi
2This is a Ferdi recipe for Pomodoro Tracker, a productivity app designed for your work and study.
3Pomodoro Tracker is an app created by Kirill Klenov <horneds@gmail.com>.
4
5Pomodoro Tracker icon comes from FontAwesome icon set (check-circle) and is used under Creative Commons Attribuiton 4.0. <https://fontawesome.com/license>
diff --git a/recipes/pomodoro-tracker/icon.png b/recipes/pomodoro-tracker/icon.png
new file mode 100644
index 0000000..beb62ba
--- /dev/null
+++ b/recipes/pomodoro-tracker/icon.png
Binary files differ
diff --git a/recipes/pomodoro-tracker/icon.svg b/recipes/pomodoro-tracker/icon.svg
new file mode 100644
index 0000000..c205384
--- /dev/null
+++ b/recipes/pomodoro-tracker/icon.svg
@@ -0,0 +1 @@
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check-circle" class="svg-inline--fa fa-check-circle fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#d04643" d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg> \ No newline at end of file
diff --git a/recipes/pomodoro-tracker/index.js b/recipes/pomodoro-tracker/index.js
new file mode 100644
index 0000000..6bc8da9
--- /dev/null
+++ b/recipes/pomodoro-tracker/index.js
@@ -0,0 +1,2 @@
1module.exports = Ferdi => class pomodorotracker extends Ferdi {
2};
diff --git a/recipes/pomodoro-tracker/package.json b/recipes/pomodoro-tracker/package.json
new file mode 100644
index 0000000..b8a9e87
--- /dev/null
+++ b/recipes/pomodoro-tracker/package.json
@@ -0,0 +1,13 @@
1{
2 "id": "pomodoro-tracker",
3 "name": "Pomodoro Tracker",
4 "version": "1.0.0",
5 "description": "Pomodoro Tracker is a productivity app.",
6 "main": "index.js",
7 "author": "Roman DÄ…bal <dabalroman@gmail.com>",
8 "license": "MIT",
9 "config": {
10 "serviceURL": "https://pomodoro-tracker.com",
11 "hasNotificationSound": true
12 }
13}
diff --git a/recipes/pomodoro-tracker/service.css b/recipes/pomodoro-tracker/service.css
new file mode 100644
index 0000000..38dcab0
--- /dev/null
+++ b/recipes/pomodoro-tracker/service.css
@@ -0,0 +1 @@
/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/recipes/pomodoro-tracker/webview.js b/recipes/pomodoro-tracker/webview.js
new file mode 100644
index 0000000..b0a1150
--- /dev/null
+++ b/recipes/pomodoro-tracker/webview.js
@@ -0,0 +1,14 @@
1"use strict";
2
3var _path = _interopRequireDefault(require("path"));
4
5function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6
7module.exports = Ferdi => {
8 const getMessages = function getMessages() {
9 Ferdi.setBadge(0, 0);
10 };
11
12 Ferdi.loop(getMessages);
13 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
14};