From 2486fbbd72f08b759a2781913f388e91149e79ea Mon Sep 17 00:00:00 2001 From: oda-alexandre Date: Mon, 30 Aug 2021 20:38:18 +0200 Subject: New recipe: wakatime --- all.json | 9 +++++++++ recipes/wakatime/LICENSE | 21 +++++++++++++++++++++ recipes/wakatime/README.md | 2 ++ recipes/wakatime/icon.svg | 1 + recipes/wakatime/index.js | 2 ++ recipes/wakatime/package.json | 9 +++++++++ recipes/wakatime/service.css | 1 + recipes/wakatime/webview.js | 3 +++ 8 files changed, 48 insertions(+) create mode 100644 recipes/wakatime/LICENSE create mode 100644 recipes/wakatime/README.md create mode 100644 recipes/wakatime/icon.svg create mode 100644 recipes/wakatime/index.js create mode 100644 recipes/wakatime/package.json create mode 100644 recipes/wakatime/service.css create mode 100644 recipes/wakatime/webview.js diff --git a/all.json b/all.json index 9753695..a269f65 100644 --- a/all.json +++ b/all.json @@ -1544,6 +1544,15 @@ "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/voxer/icon.svg" } }, + { + "featured": false, + "id": "wakatime", + "name": "Wakatime", + "version": "1.0.0", + "icons": { + "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/wakatime/icon.svg" + } + }, { "featured": false, "id": "webex-teams", diff --git a/recipes/wakatime/LICENSE b/recipes/wakatime/LICENSE new file mode 100644 index 0000000..99d6f23 --- /dev/null +++ b/recipes/wakatime/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Vijay Raghavan Aravamudhan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/recipes/wakatime/README.md b/recipes/wakatime/README.md new file mode 100644 index 0000000..7a9f8f7 --- /dev/null +++ b/recipes/wakatime/README.md @@ -0,0 +1,2 @@ +# wakatime for Ferdi +This is a Ferdi recipe for wakatime diff --git a/recipes/wakatime/icon.svg b/recipes/wakatime/icon.svg new file mode 100644 index 0000000..aca2747 --- /dev/null +++ b/recipes/wakatime/icon.svg @@ -0,0 +1 @@ +WakaTime \ No newline at end of file diff --git a/recipes/wakatime/index.js b/recipes/wakatime/index.js new file mode 100644 index 0000000..f16f627 --- /dev/null +++ b/recipes/wakatime/index.js @@ -0,0 +1,2 @@ +module.exports = Ferdi => class Wakatime extends Ferdi { +}; diff --git a/recipes/wakatime/package.json b/recipes/wakatime/package.json new file mode 100644 index 0000000..2923701 --- /dev/null +++ b/recipes/wakatime/package.json @@ -0,0 +1,9 @@ +{ + "id": "wakatime", + "name": "Wakatime", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://wakatime.com/login" + } +} diff --git a/recipes/wakatime/service.css b/recipes/wakatime/service.css new file mode 100644 index 0000000..38dcab0 --- /dev/null +++ b/recipes/wakatime/service.css @@ -0,0 +1 @@ +/* Insert custom styles you want to insert here */ \ No newline at end of file diff --git a/recipes/wakatime/webview.js b/recipes/wakatime/webview.js new file mode 100644 index 0000000..d18a37d --- /dev/null +++ b/recipes/wakatime/webview.js @@ -0,0 +1,3 @@ +module.exports = (Ferdi) => { + Ferdi.injectCSS(_path.default.join(__dirname, "service.css")); +}; -- cgit v1.2.3-54-g00ecf