aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/pomodoro-tracker
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/pomodoro-tracker')
-rw-r--r--uncompressed/pomodoro-tracker/README.md5
-rw-r--r--uncompressed/pomodoro-tracker/icon.pngbin32981 -> 0 bytes
-rw-r--r--uncompressed/pomodoro-tracker/icon.svg1
-rw-r--r--uncompressed/pomodoro-tracker/index.js2
-rw-r--r--uncompressed/pomodoro-tracker/package.json13
-rw-r--r--uncompressed/pomodoro-tracker/service.css1
-rw-r--r--uncompressed/pomodoro-tracker/webview.js14
7 files changed, 0 insertions, 36 deletions
diff --git a/uncompressed/pomodoro-tracker/README.md b/uncompressed/pomodoro-tracker/README.md
deleted file mode 100644
index 8ff1668..0000000
--- a/uncompressed/pomodoro-tracker/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
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/uncompressed/pomodoro-tracker/icon.png b/uncompressed/pomodoro-tracker/icon.png
deleted file mode 100644
index beb62ba..0000000
--- a/uncompressed/pomodoro-tracker/icon.png
+++ /dev/null
Binary files differ
diff --git a/uncompressed/pomodoro-tracker/icon.svg b/uncompressed/pomodoro-tracker/icon.svg
deleted file mode 100644
index c205384..0000000
--- a/uncompressed/pomodoro-tracker/icon.svg
+++ /dev/null
@@ -1 +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/uncompressed/pomodoro-tracker/index.js b/uncompressed/pomodoro-tracker/index.js
deleted file mode 100644
index 6bc8da9..0000000
--- a/uncompressed/pomodoro-tracker/index.js
+++ /dev/null
@@ -1,2 +0,0 @@
1module.exports = Ferdi => class pomodorotracker extends Ferdi {
2};
diff --git a/uncompressed/pomodoro-tracker/package.json b/uncompressed/pomodoro-tracker/package.json
deleted file mode 100644
index b8a9e87..0000000
--- a/uncompressed/pomodoro-tracker/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
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/uncompressed/pomodoro-tracker/service.css b/uncompressed/pomodoro-tracker/service.css
deleted file mode 100644
index 38dcab0..0000000
--- a/uncompressed/pomodoro-tracker/service.css
+++ /dev/null
@@ -1 +0,0 @@
1/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/uncompressed/pomodoro-tracker/webview.js b/uncompressed/pomodoro-tracker/webview.js
deleted file mode 100644
index b0a1150..0000000
--- a/uncompressed/pomodoro-tracker/webview.js
+++ /dev/null
@@ -1,14 +0,0 @@
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};