aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlepodcasts
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/googlepodcasts')
-rw-r--r--recipes/googlepodcasts/icon.svg1
-rw-r--r--recipes/googlepodcasts/index.js1
-rw-r--r--recipes/googlepodcasts/package.json9
-rw-r--r--recipes/googlepodcasts/webview.js16
4 files changed, 0 insertions, 27 deletions
diff --git a/recipes/googlepodcasts/icon.svg b/recipes/googlepodcasts/icon.svg
deleted file mode 100644
index f1da8b9..0000000
--- a/recipes/googlepodcasts/icon.svg
+++ /dev/null
@@ -1 +0,0 @@
1<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="48.5"><path d="M24.26 186.32v27.351" stroke="#0066d9"/><path d="M375.74 186.32v27.351" stroke="#4285f4"/><path d="M112.13 104.27v89.46m0 74.645v27.351" stroke="#ea4335"/><path d="M287.87 206.26v89.46m0-191.46v27.351" stroke="#34a853"/><path d="M200 127.06v145.87m0-248.68v27.351m0 296.78v27.351" stroke="#fab908"/></g></svg> \ No newline at end of file
diff --git a/recipes/googlepodcasts/index.js b/recipes/googlepodcasts/index.js
deleted file mode 100644
index dd41f72..0000000
--- a/recipes/googlepodcasts/index.js
+++ /dev/null
@@ -1 +0,0 @@
1module.exports = Ferdium => Ferdium;
diff --git a/recipes/googlepodcasts/package.json b/recipes/googlepodcasts/package.json
deleted file mode 100644
index dd2ea9e..0000000
--- a/recipes/googlepodcasts/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
1{
2 "id": "googlepodcasts",
3 "name": "Google Podcasts",
4 "version": "1.3.1",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://podcasts.google.com/u/0/"
8 }
9}
diff --git a/recipes/googlepodcasts/webview.js b/recipes/googlepodcasts/webview.js
deleted file mode 100644
index 86bb422..0000000
--- a/recipes/googlepodcasts/webview.js
+++ /dev/null
@@ -1,16 +0,0 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
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};