From 3cde83ef43f24c91e6a993a84c6b0bdc317c8a7f Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Tue, 4 Oct 2022 11:16:01 +0200 Subject: recipes: add initial Bugzilla service (#153) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://github.com/ferdium/ferdium-recipes/issues/150 Signed-off-by: Maciej Barć --- recipes/bugzilla/icon.svg | 227 ++++++++++++++++++++++++++++++++++++++++++ recipes/bugzilla/index.js | 1 + recipes/bugzilla/package.json | 14 +++ recipes/bugzilla/webview.js | 1 + 4 files changed, 243 insertions(+) create mode 100644 recipes/bugzilla/icon.svg create mode 100644 recipes/bugzilla/index.js create mode 100644 recipes/bugzilla/package.json create mode 100644 recipes/bugzilla/webview.js diff --git a/recipes/bugzilla/icon.svg b/recipes/bugzilla/icon.svg new file mode 100644 index 0000000..fcaeefa --- /dev/null +++ b/recipes/bugzilla/icon.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/recipes/bugzilla/index.js b/recipes/bugzilla/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/bugzilla/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/bugzilla/package.json b/recipes/bugzilla/package.json new file mode 100644 index 0000000..b1f7412 --- /dev/null +++ b/recipes/bugzilla/package.json @@ -0,0 +1,14 @@ +{ + "id": "bugzilla", + "name": "Bugzilla", + "version": "1.0.0", + "license": "MIT", + "aliases": [], + "config": { + "serviceURL": "https://bugzilla.mozilla.org/", + "hasCustomUrl": true, + "message": "Bugzilla's default URL is https://bugzilla.mozilla.org/", + "hasNotificationSound": true, + "hasIndirectMessages": true + } +} diff --git a/recipes/bugzilla/webview.js b/recipes/bugzilla/webview.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/bugzilla/webview.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; -- cgit v1.2.3-54-g00ecf