hueget 1.0.2-beta.1 → 1.0.3
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 +5 -1
- package/README.md +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,11 @@ See the [Readme file](https://github.com/jsiegenthaler/hueget/blob/master/README
|
|
|
4
4
|
|
|
5
5
|
# Bug Fixes and Improvements
|
|
6
6
|
|
|
7
|
-
## 1.0.
|
|
7
|
+
## 1.0.3 (2025-12-13)
|
|
8
|
+
* Bumped dependencies: "axios": "^1.13.2",
|
|
9
|
+
* Bumped dependencies: "express": "^5.2.1",
|
|
10
|
+
|
|
11
|
+
## 1.0.2 (2025-10-05)
|
|
8
12
|
* Addded support for node Maintenance LTS, Active LTS and Current versions
|
|
9
13
|
* Added some small Readme improvements
|
|
10
14
|
* Bumped dependencies: "node": "^20 || ^22 || ^24"
|
package/README.md
CHANGED
|
@@ -56,9 +56,9 @@ $ npm update hueget
|
|
|
56
56
|
# Starting hueget
|
|
57
57
|
The following examples assume you have hueget in a folder that your system can find. Update your PATH variables if needed. The following examples use a Philips Hue bridge IP address of 192.168.0.101. Adjust to match the IP address of your Hue bridge.
|
|
58
58
|
|
|
59
|
-
To see the help text, start hueget
|
|
59
|
+
To see the help text, start hueget with the -h or --help option as follows
|
|
60
60
|
```
|
|
61
|
-
$ node /home/pi/node_modules/hueget/hueget.js
|
|
61
|
+
$ node /home/pi/node_modules/hueget/hueget.js -h
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
hueget shows the following response:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hueget",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A simple API that converts the Philips Hue API PUT to GET requests, allowing control of Philips Hue lights, groups, sensors and more 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.
|
|
29
|
-
"express": "^5.1
|
|
28
|
+
"axios": "^1.13.2",
|
|
29
|
+
"express": "^5.2.1",
|
|
30
30
|
"stdio": "^2.1.3"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|