@akospasztor/homebridge-create-ceiling-fan 1.1.0 → 1.2.1
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 +10 -2
- package/README.md +3 -3
- package/dist/settings.d.ts +1 -1
- package/dist/settings.js +1 -1
- package/dist/settings.js.map +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file. This
|
|
4
|
+
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
## [1.2.0] - 2025-09-19
|
|
7
|
+
|
|
8
|
+
- Rename the plugin name in settings.ts to match the name in package.json
|
|
9
|
+
- Fix changelog format for Homebridge UI
|
|
10
|
+
|
|
11
|
+
## [1.1.0] - 2025-09-19
|
|
4
12
|
|
|
5
13
|
- Use dropdown for device light option selection in the configuration
|
|
6
14
|
- Improve device communication by adding a timeout mechanism for sending a set
|
|
7
15
|
device status command to the device
|
|
8
16
|
- Improve documentation wording
|
|
9
17
|
|
|
10
|
-
## 1.0.0
|
|
18
|
+
## [1.0.0] - 2025-09-19
|
|
11
19
|
|
|
12
20
|
- Initial release
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
# Homebridge Create Ceiling Fan Plugin
|
|
6
6
|
|
|
7
7
|
This plugin allows integrating the CREATE ceiling fans into HomeKit via
|
|
8
|
-
|
|
8
|
+
Homebridge.
|
|
9
9
|
|
|
10
|
-
Although there are several
|
|
10
|
+
Although there are several Homebridge plugins that provide similar
|
|
11
11
|
functionality, this plugin aims to stand out via providing a smooth,
|
|
12
12
|
user-friendly fan speed control mechanism in the HomeKit UI and a robust device
|
|
13
13
|
communication mechanism with a mutex. It also reflects and updates the changes
|
|
@@ -74,7 +74,7 @@ the IP address is not supplied (connection requests with ID only).
|
|
|
74
74
|
|
|
75
75
|
### Installation
|
|
76
76
|
|
|
77
|
-
Install the plugin either via the
|
|
77
|
+
Install the plugin either via the Homebridge UI by going to the Plugins tab and
|
|
78
78
|
searching for the plugin.
|
|
79
79
|
|
|
80
80
|
Alternatively, the plugin can be installed directly from the command line
|
package/dist/settings.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export declare const PLATFORM_NAME = "CreateCeilingFanPlatform";
|
|
|
5
5
|
/**
|
|
6
6
|
* This must match the name of your plugin as defined the package.json `name` property
|
|
7
7
|
*/
|
|
8
|
-
export declare const PLUGIN_NAME = "homebridge-create-ceiling-fan";
|
|
8
|
+
export declare const PLUGIN_NAME = "@akospasztor/homebridge-create-ceiling-fan";
|
package/dist/settings.js
CHANGED
|
@@ -5,5 +5,5 @@ export const PLATFORM_NAME = 'CreateCeilingFanPlatform';
|
|
|
5
5
|
/**
|
|
6
6
|
* This must match the name of your plugin as defined the package.json `name` property
|
|
7
7
|
*/
|
|
8
|
-
export const PLUGIN_NAME = 'homebridge-create-ceiling-fan';
|
|
8
|
+
export const PLUGIN_NAME = '@akospasztor/homebridge-create-ceiling-fan';
|
|
9
9
|
//# sourceMappingURL=settings.js.map
|
package/dist/settings.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../src/settings.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,0BAA0B,CAAC;AAExD;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../src/settings.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,0BAA0B,CAAC;AAExD;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG,4CAA4C,CAAC"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@akospasztor/homebridge-create-ceiling-fan",
|
|
3
3
|
"displayName": "Homebridge Create Ceiling Fan",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.1
|
|
5
|
+
"version": "1.2.1",
|
|
6
6
|
"private": false,
|
|
7
7
|
"description": "Homebridge plugin for CREATE ceiling fans",
|
|
8
8
|
"author": "Akos Pasztor",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"homebridge-plugin",
|
|
20
|
+
"homebridge",
|
|
20
21
|
"ceiling fan",
|
|
21
22
|
"fan",
|
|
22
23
|
"create",
|
|
@@ -31,6 +32,9 @@
|
|
|
31
32
|
"config.schema.json",
|
|
32
33
|
"CHANGELOG.md"
|
|
33
34
|
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
34
38
|
"engines": {
|
|
35
39
|
"node": "^18.20.4 || ^20.18.0 || ^22.10.0",
|
|
36
40
|
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
|