Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinvdpol committed Jun 24, 2019
0 parents commit 1fc4a04
Show file tree
Hide file tree
Showing 21 changed files with 1,390 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 1.0.0 / 2019-06-24

- Initial working version.
13 changes: 13 additions & 0 deletions LICENSE
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.
62 changes: 62 additions & 0 deletions README.md
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
22 changes: 22 additions & 0 deletions app.js
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;
Loading

0 comments on commit 1fc4a04

Please sign in to comment.