-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Sharezone and Bycs Messenger (#587)
reverted husky changes and added recipes
- Loading branch information
1 parent
b785da3
commit 2ce5fa6
Showing
9 changed files
with
1,871 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = Ferdium => Ferdium; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"id": "bycs-messenger", | ||
"name": "Bycs-Messenger", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"repository": "https://github.com/BlackDemon1000/ferdium-recipes.git", | ||
"config": { | ||
"serviceURL": "https://messenger.bycs.de/#/home" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
function _interopRequireDefault(obj) { | ||
return obj && obj.__esModule ? obj : { default: obj }; | ||
} | ||
|
||
const _path = _interopRequireDefault(require('path')); | ||
|
||
module.exports = Ferdium => { | ||
// TODO: If your Bycs-Messenger service has unread messages, uncomment these lines to implement the logic for updating the badges | ||
// const getMessages = () => { | ||
// // TODO: Insert your notification-finding code here | ||
// Ferdium.setBadge(0, 0); | ||
// }; | ||
// Ferdium.loop(getMessages); | ||
|
||
Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = Ferdium => Ferdium; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"id": "sharezone", | ||
"name": "Sharezone", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"repository": "https://github.com/BlackDemon1000/ferdium-recipes.git", | ||
"config": { | ||
"serviceURL": "https://web.sharezone.net/" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
function _interopRequireDefault(obj) { | ||
return obj && obj.__esModule ? obj : { default: obj }; | ||
} | ||
|
||
const _path = _interopRequireDefault(require('path')); | ||
|
||
module.exports = Ferdium => { | ||
// TODO: If your Sharezone service has unread messages, uncomment these lines to implement the logic for updating the badges | ||
// const getMessages = () => { | ||
// // TODO: Insert your notification-finding code here | ||
// Ferdium.setBadge(0, 0); | ||
// }; | ||
// Ferdium.loop(getMessages); | ||
|
||
Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); | ||
}; |