aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/localazy
diff options
context:
space:
mode:
authorLibravatar vaclavhodek <vaclav.hodek@lwi.cz>2023-05-27 03:01:58 +0200
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-27 06:50:49 +0530
commitf77dc60215f74c5b4578425a7fe9137f923b1c89 (patch)
tree8c39020df988172ce637e4ead6e59a646045794e /recipes/localazy
parentUpdate to logos for Proton services (#375) (diff)
downloadferdium-recipes-f77dc60215f74c5b4578425a7fe9137f923b1c89.tar.gz
ferdium-recipes-f77dc60215f74c5b4578425a7fe9137f923b1c89.tar.zst
ferdium-recipes-f77dc60215f74c5b4578425a7fe9137f923b1c89.zip
Add Localazy service recipe (#373)
Diffstat (limited to 'recipes/localazy')
-rw-r--r--recipes/localazy/icon.svg4
-rw-r--r--recipes/localazy/index.js1
-rw-r--r--recipes/localazy/package.json9
-rw-r--r--recipes/localazy/webview.js9
4 files changed, 23 insertions, 0 deletions
diff --git a/recipes/localazy/icon.svg b/recipes/localazy/icon.svg
new file mode 100644
index 0000000..599f517
--- /dev/null
+++ b/recipes/localazy/icon.svg
@@ -0,0 +1,4 @@
1<svg width="82" height="82" viewBox="0 0 82 82" fill="none" xmlns="http://www.w3.org/2000/svg">
2<path d="M63.365 2.46398L62.8126 3.8063L58.4857 14.0851C58.9092 12.9083 58.0254 11.6395 56.7549 11.6395H21.3848C20.0591 11.6395 19.1753 12.9819 19.6909 14.1955L28.179 34.4222C28.4736 35.1025 29.1364 35.5438 29.8729 35.5438H46.7018C48.0091 35.5438 48.8929 36.8678 48.4141 38.063L47.8802 39.3501L43.5533 49.6474C43.9768 48.4521 43.093 47.1834 41.8225 47.1834H36.2988C34.9915 47.1834 34.0893 48.5257 34.6049 49.7393L48.9297 83.9224C49.5373 85.3751 48.4694 86.9748 46.8859 86.9748H38.0664C37.1826 86.9748 36.3725 86.4416 36.0226 85.6141L2.3096 5.09345C1.29692 2.66625 3.06451 0 5.69747 0H61.6342C62.9231 0 63.8069 1.26877 63.365 2.46398Z" fill="#066FEF"/>
3<path d="M80.3043 11.4557L64.0278 50.1622C63.1624 52.2033 61.1554 53.5456 58.9275 53.5456H44.658C43.3507 53.5456 42.4485 52.2033 42.964 50.9897L43.498 49.7393C43.5164 49.7025 43.5164 49.6841 43.5348 49.6474L47.8617 39.3501C47.3462 40.5637 48.2484 41.9061 49.5557 41.9061H53.4038C54.1403 41.9061 54.8216 41.4647 55.0978 40.7844L63.6043 20.5577C64.1198 19.3441 63.2176 18.0018 61.9103 18.0018H59.6088C58.3015 18.0018 57.3993 16.6595 57.9149 15.4459L58.4488 14.1955C58.4672 14.1587 58.4856 14.1219 58.4856 14.0851L62.8126 3.8063C62.297 5.01991 63.1992 6.36222 64.5065 6.36222H76.9164C79.5494 6.34384 81.3354 9.02847 80.3043 11.4557Z" fill="#A1CBFD"/>
4</svg>
diff --git a/recipes/localazy/index.js b/recipes/localazy/index.js
new file mode 100644
index 0000000..e6ca7d8
--- /dev/null
+++ b/recipes/localazy/index.js
@@ -0,0 +1 @@
module.exports = Ferdium => class Localazy extends Ferdium {};
diff --git a/recipes/localazy/package.json b/recipes/localazy/package.json
new file mode 100644
index 0000000..daec11f
--- /dev/null
+++ b/recipes/localazy/package.json
@@ -0,0 +1,9 @@
1{
2 "id": "localazy",
3 "name": "Localazy",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://localazy.com/my/dashboard"
8 }
9}
diff --git a/recipes/localazy/webview.js b/recipes/localazy/webview.js
new file mode 100644
index 0000000..56a20b6
--- /dev/null
+++ b/recipes/localazy/webview.js
@@ -0,0 +1,9 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
9};