aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/bale
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/bale')
-rw-r--r--recipes/bale/icon.svg19
-rw-r--r--recipes/bale/index.js1
-rw-r--r--recipes/bale/package.json9
-rw-r--r--recipes/bale/webview.js16
4 files changed, 45 insertions, 0 deletions
diff --git a/recipes/bale/icon.svg b/recipes/bale/icon.svg
new file mode 100644
index 0000000..6f2926b
--- /dev/null
+++ b/recipes/bale/icon.svg
@@ -0,0 +1,19 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1"
4 id="Bale" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:docname="Bale.svg"
5 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100"
6 style="enable-background:new 0 0 100 100;" xml:space="preserve">
7<style type="text/css">
8 .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#3D8E94;}
9 .st1{fill:#FFFFFF;}
10</style>
11<path id="Background" class="st0" d="M50,0.1l-4,0.2l-7.8,1.2L31,3.8l-6.7,3.4l-3.1,2.1L8.9,1L8.2,0.6L6.6,0.1L5.1,0L3.7,0.3L2.4,1
12 L1.3,2L0.5,3.4L0,4.9v0.8v46l0,0l0.2,2.6l0.6,4.9l1.1,4.7l1.5,4.6l1.9,4.3l2.4,4.1l2.7,3.8l3,3.6l3.4,3.3l3.7,3l3.9,2.6l4.2,2.2
13 l4.4,1.8l4.6,1.4l4.7,1l5,0.5L50,100l2.6-0.1l5-0.5l4.8-1L67,97l4.5-1.8l4.2-2.3l4-2.7l3.8-3l3.4-3.4l3-3.7l2.7-4l2.3-4.2l2-4.5
14 l1.4-4.7l1-4.9l0.5-5L100,50l-0.1-2.6l-0.5-5l-1-4.9L97,32.8l-1.8-4.5l-2.3-4.2l-2.7-4l-3-3.7L83.6,13l-3.7-3l-4-2.7L71.7,5
15 l-4.5-1.8l-4.7-1.4l-4.9-1l-5-0.5L50,0.1z"/>
16<path id="Content" class="st1" d="M79.5,29.6L79.5,29.6l-0.8-0.7l-1.6-1l-2.7-1h-3.8l-2.7,1l-1.7,1l-0.7,0.7l-22.2,22L34.8,43
17 l-0.7-0.7l-1.7-1.1l-2.7-1h-3.8l-2.7,1l-1.7,1.1l-0.7,0.6l0,0L20,43.7l-1.1,1.6l-1,2.7l-0.1,3.8l1,2.7l1,1.7l0.6,0.8l16,15.8
18 l0.8,0.7l1.6,1l2.6,1h3.8l2.7-1l1.6-1l0.7-0.7l6.9-7l22.1-22.1l0.7-0.7l1.2-1.7l1-2.7l0.1-3.8l-1-2.6l-1-1.7L79.5,29.6z"/>
19</svg>
diff --git a/recipes/bale/index.js b/recipes/bale/index.js
new file mode 100644
index 0000000..dd41f72
--- /dev/null
+++ b/recipes/bale/index.js
@@ -0,0 +1 @@
module.exports = Ferdium => Ferdium;
diff --git a/recipes/bale/package.json b/recipes/bale/package.json
new file mode 100644
index 0000000..3b486ab
--- /dev/null
+++ b/recipes/bale/package.json
@@ -0,0 +1,9 @@
1{
2 "id": "bale",
3 "name": "Bale",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://web.bale.ai/"
8 }
9}
diff --git a/recipes/bale/webview.js b/recipes/bale/webview.js
new file mode 100644
index 0000000..2a81dec
--- /dev/null
+++ b/recipes/bale/webview.js
@@ -0,0 +1,16 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => {
8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};