homebridge-midea-platform 1.3.2-beta.1 → 1.3.2

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.3.1"
2
+ ".": "1.3.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.2](https://github.com/kovapatrik/homebridge-midea-platform/compare/v1.3.1...v1.3.2) (2026-07-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * await refreshes, socket event handler, capabilities only once ([#189](https://github.com/kovapatrik/homebridge-midea-platform/issues/189)) ([c5b6857](https://github.com/kovapatrik/homebridge-midea-platform/commit/c5b68570e401649936e0acf8e3d1362f8e292037))
9
+
3
10
  ## [1.3.1](https://github.com/kovapatrik/homebridge-midea-platform/compare/v1.3.0...v1.3.1) (2026-07-02)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-midea-platform",
3
- "version": "1.3.2-beta.1",
3
+ "version": "1.3.2",
4
4
  "description": "Homebridge plugin for Midea devices",
5
5
  "keywords": [
6
6
  "homebridge-plugin"
package/.luarc.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "diagnostics": {
3
- "enable": false
4
- }
5
- }
@@ -1,78 +0,0 @@
1
- {
2
- "lsp": {
3
- "oxlint": {
4
- "initialization_options": {
5
- "settings": {
6
- "configPath": null,
7
- "run": "onType",
8
- "disableNestedConfig": false,
9
- "fixKind": "safe_fix",
10
- "unusedDisableDirectives": "deny",
11
- },
12
- },
13
- },
14
- "oxfmt": {
15
- "initialization_options": {
16
- "settings": {
17
- "fmt.configPath": null,
18
- "run": "onSave",
19
- },
20
- },
21
- },
22
- },
23
- "languages": {
24
- "TypeScript": {
25
- "language_servers": ["vtsls", "oxlint", "oxfmt"],
26
- "format_on_save": "on",
27
- "prettier": {
28
- "allowed": false,
29
- },
30
- "formatter": [
31
- {
32
- "language_server": {
33
- "name": "oxfmt",
34
- },
35
- },
36
- ],
37
- },
38
- "JSON": {
39
- "format_on_save": "on",
40
- "prettier": {
41
- "allowed": false,
42
- },
43
- "formatter": [
44
- {
45
- "language_server": {
46
- "name": "oxfmt",
47
- },
48
- },
49
- ],
50
- },
51
- "HTML": {
52
- "format_on_save": "on",
53
- "prettier": {
54
- "allowed": false,
55
- },
56
- "formatter": [
57
- {
58
- "language_server": {
59
- "name": "oxfmt",
60
- },
61
- },
62
- ],
63
- },
64
- "Markdown": {
65
- "format_on_save": "on",
66
- "prettier": {
67
- "allowed": false,
68
- },
69
- "formatter": [
70
- {
71
- "language_server": {
72
- "name": "oxfmt",
73
- },
74
- },
75
- ],
76
- },
77
- },
78
- }