aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/bitbucket
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/bitbucket')
-rw-r--r--uncompressed/bitbucket/.gitattributes2
-rw-r--r--uncompressed/bitbucket/.gitignore1
-rw-r--r--uncompressed/bitbucket/README.md3
-rw-r--r--uncompressed/bitbucket/icon.pngbin91631 -> 0 bytes
-rw-r--r--uncompressed/bitbucket/icon.svg15
-rw-r--r--uncompressed/bitbucket/index.js2
-rw-r--r--uncompressed/bitbucket/package.json12
-rw-r--r--uncompressed/bitbucket/service.css1
-rw-r--r--uncompressed/bitbucket/webview.js15
9 files changed, 0 insertions, 51 deletions
diff --git a/uncompressed/bitbucket/.gitattributes b/uncompressed/bitbucket/.gitattributes
deleted file mode 100644
index dfe0770..0000000
--- a/uncompressed/bitbucket/.gitattributes
+++ /dev/null
@@ -1,2 +0,0 @@
1# Auto detect text files and perform LF normalization
2* text=auto
diff --git a/uncompressed/bitbucket/.gitignore b/uncompressed/bitbucket/.gitignore
deleted file mode 100644
index e43b0f9..0000000
--- a/uncompressed/bitbucket/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
1.DS_Store
diff --git a/uncompressed/bitbucket/README.md b/uncompressed/bitbucket/README.md
deleted file mode 100644
index 51c2ef6..0000000
--- a/uncompressed/bitbucket/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
1# BitBucket for Ferdi
2
3An unofficial Ferdi recipe for Atlassian's BitBucket
diff --git a/uncompressed/bitbucket/icon.png b/uncompressed/bitbucket/icon.png
deleted file mode 100644
index f81603c..0000000
--- a/uncompressed/bitbucket/icon.png
+++ /dev/null
Binary files differ
diff --git a/uncompressed/bitbucket/icon.svg b/uncompressed/bitbucket/icon.svg
deleted file mode 100644
index 14fe741..0000000
--- a/uncompressed/bitbucket/icon.svg
+++ /dev/null
@@ -1,15 +0,0 @@
1<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 62.42 62.42">
2 <defs>
3 <linearGradient id="New_Gradient_Swatch_1" x1="64.01" y1="30.27" x2="32.99" y2="54.48" gradientUnits="userSpaceOnUse">
4 <stop offset="0.18" stop-color="#0052cc"/>
5 <stop offset="1" stop-color="#2684ff"/>
6 </linearGradient>
7 </defs>
8 <title>Bitbucket-blue</title>
9 <g id="Layer_2" data-name="Layer 2">
10 <g id="Blue" transform="translate(0 -3.13)">
11 <path d="M2,6.26A2,2,0,0,0,0,8.58L8.49,60.12a2.72,2.72,0,0,0,2.66,2.27H51.88a2,2,0,0,0,2-1.68L62.37,8.59a2,2,0,0,0-2-2.32ZM37.75,43.51h-13L21.23,25.12H40.9Z" fill="#2684ff"/>
12 <path d="M59.67,25.12H40.9L37.75,43.51h-13L9.4,61.73a2.71,2.71,0,0,0,1.75.66H51.89a2,2,0,0,0,2-1.68Z" fill="url(#New_Gradient_Swatch_1)"/>
13 </g>
14 </g>
15</svg> \ No newline at end of file
diff --git a/uncompressed/bitbucket/index.js b/uncompressed/bitbucket/index.js
deleted file mode 100644
index 7983bf0..0000000
--- a/uncompressed/bitbucket/index.js
+++ /dev/null
@@ -1,2 +0,0 @@
1module.exports = Ferdi => class bitbucket extends Ferdi {
2};
diff --git a/uncompressed/bitbucket/package.json b/uncompressed/bitbucket/package.json
deleted file mode 100644
index cd6fc24..0000000
--- a/uncompressed/bitbucket/package.json
+++ /dev/null
@@ -1,12 +0,0 @@
1{
2 "id": "bitbucket",
3 "name": "BitBucket",
4 "version": "1.0.0",
5 "description": "An unofficial Ferdi recipe for Atlassian's BitBucket",
6 "main": "index.js",
7 "author": "Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com>",
8 "license": "MIT",
9 "config": {
10 "serviceURL": "https://bitbucket.org/dashboard/overview"
11 }
12}
diff --git a/uncompressed/bitbucket/service.css b/uncompressed/bitbucket/service.css
deleted file mode 100644
index 38dcab0..0000000
--- a/uncompressed/bitbucket/service.css
+++ /dev/null
@@ -1 +0,0 @@
1/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/uncompressed/bitbucket/webview.js b/uncompressed/bitbucket/webview.js
deleted file mode 100644
index ddd0b40..0000000
--- a/uncompressed/bitbucket/webview.js
+++ /dev/null
@@ -1,15 +0,0 @@
1"use strict";
2
3var _path = _interopRequireDefault(require("path"));
4
5function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6
7module.exports = Ferdi => {
8 const getMessages = function getMessages() {
9 // TODO: Insert your notification-finding code here
10 Ferdi.setBadge(0, 0);
11 };
12
13 Ferdi.loop(getMessages);
14 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
15};