Skip to content

Commit 7c504bd

Browse files
author
QuickSander
committed
fix(): Administrative project updates
1 parent a04c6cc commit 7c504bd

File tree

4 files changed

+42
-17
lines changed

4 files changed

+42
-17
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: node_js
2+
3+
node_js:
4+
- 8
5+
- 6
6+
7+
jobs:
8+
include:
9+
# Define the release stage that runs semantic-release
10+
- stage: release
11+
node_js: lts/*
12+
# Advanced: optionally overwrite your default `script` step to skip the tests
13+
# script: skip
14+
deploy:
15+
provider: script
16+
skip_cleanup: true
17+
script:
18+
- npx semantic-release

LICENSE

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
ISC License (ISC)
2-
Copyright (c) 2015, Justin J. Novack
2+
Copyright 2018, Sander van Woensel
33

4-
Permission to use, copy, modify, and/or distribute this software for any
5-
purpose with or without fee is hereby granted, provided that the above
6-
copyright notice and this permission notice appear in all copies.
4+
Permission to use, copy, modify, and/or distribute this software for
5+
any purpose with or without fee is hereby granted, provided that the
6+
above copyright notice and this permission notice appear in all
7+
copies.
78

8-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
9-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
11-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
13-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14-
PERFORMANCE OF THIS SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
12+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
2+
13
# homebridge-http-rgb-push
24

35
_Homebridge plugin to control a HTTP-based RGB device._
@@ -19,7 +21,7 @@ This fork differs from the original [jnovack/homebridge-better-http-rgb](https:/
1921
* Supports regular expression pattern matching for on/off switches to determine whether the body reflects an on or off status.
2022
* Fixes a bug which causes the original plugin to not report the correct manufacturer, make and model towards HomeKit.
2123
* Added timeout parameter to prevent HomeBridge from getting stuck on a single unresponsive device. Credits: [Tommrodrigues/homebridge-better-http-rgb](https://github.com/Tommrodrigues/homebridge-better-http-rgb).
22-
* Corrected some minor README inconsistencies.
24+
* README rewrite and corrections.
2325

2426
## Installation
2527

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "homebridge-http-rgb-push",
3-
"version": "2.1.1",
3+
"version": "2.2.0-development",
44
"description": "Homebridge plugin to control a HTTP RGB device with push notification support (fork of homebridge-better-http-rgb).",
55
"license": "ISC",
66
"keywords": [
@@ -24,12 +24,16 @@
2424
],
2525
"repository": {
2626
"type": "git",
27-
"url": "git://github.com/quicksander/homebridge-http-rgb-push.git"
27+
"url": "https://github.com/QuickSander/homebridge-http-rgb-push.git"
2828
},
29-
3029
"preferGlobal": true,
31-
3230
"dependencies": {
33-
"request": "^2.65.0"
31+
"request": "^2.88.0"
32+
},
33+
"scripts": {
34+
"semantic-release": "semantic-release"
35+
},
36+
"devDependencies": {
37+
"semantic-release": "^15.13.1"
3438
}
3539
}

0 commit comments

Comments
 (0)