-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1fc4a04
Showing
21 changed files
with
1,390 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 1.0.0 / 2019-06-24 | ||
|
||
- Initial working version. |
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,13 @@ | ||
Copyright 2019 Edwin van de Pol | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
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,62 @@ | ||
# NZBGet for Homey | ||
|
||
Monitor and control your [NZBGet](https://nzbget.net/) servers. | ||
|
||
Homey will automatically fetch the statistics from the NZB server. | ||
|
||
The update interval can be changed in the *device settings*. | ||
|
||
|
||
If you like this app, consider a donation to support development: | ||
|
||
[![Paypal donate][pp-donate-image]][pp-donate-link] | ||
|
||
|
||
## Statistics | ||
- Article cache (MB) | ||
- Average download speed (MB/s) | ||
- Download speed (MB/s) | ||
- Download speed limit (MB/s) | ||
- Number of remaining files in queue | ||
- Total downloaded (GB) | ||
- Total download time | ||
- Free disk space (GB) | ||
- Remaining download (MB) | ||
- Server uptime | ||
|
||
|
||
## Supported actions | ||
- Pause and resume download via toggle component | ||
|
||
### Flowcards | ||
|
||
- Pause download queue | ||
- Resume download queue | ||
- Reload the server | ||
- Scan incoming directory for nzb-files | ||
- Set download speed limit | ||
- Shutdown the server | ||
|
||
|
||
## Supported settings | ||
- Update interval (seconds) | ||
|
||
|
||
## Supported languages | ||
- English | ||
- Dutch (Nederlands) | ||
|
||
|
||
## Support / feedback | ||
If you have any questions or feedback, please contact me on [Slack](https://athomcommunity.slack.com/team/evdpol). | ||
|
||
Please report issues and feature requests at the [issues section](https://github.com/edwinvdpol/net.nzbget/issues) on GitHub. | ||
|
||
This app is tested with NZBGet v21.0, but should work with v15.0 and newer. | ||
|
||
|
||
## Changelog | ||
[Check it out here!](https://github.com/edwinvdpol/net.nzbget/blob/master/CHANGELOG.md) | ||
|
||
[pp-donate-link]: https://www.paypal.me/edwinvdpol | ||
[pp-donate-image]: https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif |
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,22 @@ | ||
'use strict'; | ||
|
||
const Homey = require('homey'); | ||
|
||
class NZBApp extends Homey.App { | ||
|
||
/* | ||
|--------------------------------------------------------------------------- | ||
| Initiate | ||
|--------------------------------------------------------------------------- | ||
| | ||
| This method is called upon initialization of this application. | ||
| | ||
*/ | ||
|
||
onInit () { | ||
console.log('✓ NZBGet App running'); | ||
} | ||
|
||
}; | ||
|
||
module.exports = NZBApp; |
Oops, something went wrong.