hueget 0.7.2 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +2 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README
|
|
|
4
4
|
|
|
5
5
|
# Bug Fixes and Improvements
|
|
6
6
|
|
|
7
|
+
|
|
8
|
+
## 0.7.4 (2024-10-19)
|
|
9
|
+
* Added pm2 describe example to the Readme file
|
|
10
|
+
* Bumped dependencies: "express": "^4.21.1",
|
|
11
|
+
|
|
12
|
+
## 0.7.3 (2024-09-17)
|
|
13
|
+
* Bumped dependencies: "axios": "^1.7.7"
|
|
14
|
+
* Bumped dependencies: "express": "^4.21.0",
|
|
15
|
+
|
|
7
16
|
## 0.7.2 (2024-08-17)
|
|
8
17
|
* Bumped dependencies: "axios": "^1.7.4"
|
|
9
18
|
|
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ $ node /home/pi/node_modules/hueget/hueget.js -i 192.168.0.101 -u UBxWZChHseyjeF
|
|
|
84
84
|
```
|
|
85
85
|
A successful start of hueget (using the above command to specify ip address 192.168.0.100 and port 1234) will show:
|
|
86
86
|
```
|
|
87
|
-
hueget v0.7.
|
|
87
|
+
hueget v0.7.3
|
|
88
88
|
commands will be sent to 192.168.0.101 with username UBxWZChHseyjeFwAkwgbdQ08x9XASWpanZZVg-mj
|
|
89
89
|
listening on port 1234
|
|
90
90
|
```
|
|
@@ -115,6 +115,7 @@ $ pm2 save
|
|
|
115
115
|
$ pm2 stop hueget
|
|
116
116
|
$ pm2 restart hueget
|
|
117
117
|
$ pm2 delete hueget
|
|
118
|
+
$ pm2 describe hueget
|
|
118
119
|
```
|
|
119
120
|
For more information about pm2, see https://github.com/Unitech/pm2
|
|
120
121
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hueget",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights via http GET requests",
|
|
5
5
|
"main": "hueget.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"author": "Jochen Siegenthaler (https://github.com/jsiegenthaler)",
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"axios": "^1.7.
|
|
29
|
-
"express": "^4.
|
|
28
|
+
"axios": "^1.7.7",
|
|
29
|
+
"express": "^4.21.1",
|
|
30
30
|
"stdio": "^2.1.3"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|