-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reverted husky changes and added recipes
- Loading branch information
1 parent
f2b124c
commit 786acd5
Showing
11 changed files
with
1,876 additions
and
5 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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')); | ||
}; |