aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar oda-alexandre <oda-alexandre31@gmail.com>2021-08-30 19:15:06 +0200
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-31 01:01:03 +0530
commitb63978d0038c4774f820843cb4b45052918f943e (patch)
treecf95a14e612edd84645ce561396609a220804988
parentfix: Fix unread count in outlook (fixes #1808) (diff)
downloadferdium-recipes-b63978d0038c4774f820843cb4b45052918f943e.tar.gz
ferdium-recipes-b63978d0038c4774f820843cb4b45052918f943e.tar.zst
ferdium-recipes-b63978d0038c4774f820843cb4b45052918f943e.zip
New recipe: odoo
-rw-r--r--all.json9
-rw-r--r--recipes/odoo/LICENSE21
-rw-r--r--recipes/odoo/README.md2
-rw-r--r--recipes/odoo/icon.svg16
-rw-r--r--recipes/odoo/index.js2
-rw-r--r--recipes/odoo/package.json10
-rw-r--r--recipes/odoo/service.css1
-rw-r--r--recipes/odoo/webview.js4
8 files changed, 65 insertions, 0 deletions
diff --git a/all.json b/all.json
index 472b4d6..c779344 100644
--- a/all.json
+++ b/all.json
@@ -1021,6 +1021,15 @@
1021 }, 1021 },
1022 { 1022 {
1023 "featured": false, 1023 "featured": false,
1024 "id": "odoo",
1025 "name": "Odoo",
1026 "version": "1.0.0",
1027 "icons": {
1028 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/odoo/icon.svg"
1029 }
1030 },
1031 {
1032 "featured": false,
1024 "id": "office365-owa", 1033 "id": "office365-owa",
1025 "name": "Office 365 Outlook", 1034 "name": "Office 365 Outlook",
1026 "version": "1.4.1", 1035 "version": "1.4.1",
diff --git a/recipes/odoo/LICENSE b/recipes/odoo/LICENSE
new file mode 100644
index 0000000..99d6f23
--- /dev/null
+++ b/recipes/odoo/LICENSE
@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) 2020 Vijay Raghavan Aravamudhan
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
diff --git a/recipes/odoo/README.md b/recipes/odoo/README.md
new file mode 100644
index 0000000..2eca553
--- /dev/null
+++ b/recipes/odoo/README.md
@@ -0,0 +1,2 @@
1# Odoo for Ferdi
2This is a Ferdi recipe for Odoo
diff --git a/recipes/odoo/icon.svg b/recipes/odoo/icon.svg
new file mode 100644
index 0000000..d2e7f8e
--- /dev/null
+++ b/recipes/odoo/icon.svg
@@ -0,0 +1,16 @@
1<?xml version="1.0" standalone="no"?>
2<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3 "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5 width="225.000000pt" height="225.000000pt" viewBox="0 0 225.000000 225.000000"
6 preserveAspectRatio="xMidYMid meet">
7
8<g transform="translate(0.000000,225.000000) scale(0.100000,-0.100000)"
9fill="#000000" stroke="none">
10<path d="M942 2195 c-506 -92 -873 -506 -899 -1015 -13 -250 48 -475 181 -674
11277 -416 793 -587 1275 -422 469 161 779 653 722 1145 -58 496 -416 882 -895
12966 -106 18 -283 18 -384 0z m368 -451 c221 -66 397 -246 456 -465 21 -78 23
13-233 5 -309 -95 -391 -504 -606 -878 -461 -292 114 -467 439 -399 745 55 246
14255 446 501 500 85 19 235 14 315 -10z"/>
15</g>
16</svg>
diff --git a/recipes/odoo/index.js b/recipes/odoo/index.js
new file mode 100644
index 0000000..23328b9
--- /dev/null
+++ b/recipes/odoo/index.js
@@ -0,0 +1,2 @@
1module.exports = Ferdi => class Odoo extends Ferdi {
2};
diff --git a/recipes/odoo/package.json b/recipes/odoo/package.json
new file mode 100644
index 0000000..aa6a881
--- /dev/null
+++ b/recipes/odoo/package.json
@@ -0,0 +1,10 @@
1{
2 "id": "odoo",
3 "name": "Odoo",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://www.odoo.com/web/login",
8 "hasCustomUrl": true
9 }
10}
diff --git a/recipes/odoo/service.css b/recipes/odoo/service.css
new file mode 100644
index 0000000..38dcab0
--- /dev/null
+++ b/recipes/odoo/service.css
@@ -0,0 +1 @@
/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/recipes/odoo/webview.js b/recipes/odoo/webview.js
new file mode 100644
index 0000000..8f02c8f
--- /dev/null
+++ b/recipes/odoo/webview.js
@@ -0,0 +1,4 @@
1module.exports = (Ferdi) => {
2
3 Ferdi.injectCSS(_path.default.join(__dirname, "service.css"));
4};