You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: repair UTF-8 BOM and mojibake introduced in the v1.1.6 bump
The previous commit bumped the version using PowerShell Set-Content, which in
Windows PowerShell 5.1 writes UTF-8 WITH a BOM and re-encodes content read by
Get-Content -Raw under the wrong codepage. Two files were damaged:
- manifest.json gained a leading BOM. Python json.loads rejects a BOM, so this
could have prevented the integration loading entirely for anyone installing
v1.1.6.
- README.md gained a BOM plus mojibake throughout, with every non-ASCII glyph
mangled (emoji and em dashes).
Restored both from the pre-bump commit and re-applied the version change with an
encoding-safe edit. Verified the only difference from the clean state is the two
version strings, and that manifest.json parses.
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
<ahref="https://www.buymeacoffee.com/0xAHA"target="_blank"><imgsrc="docs/images/qr-code-buymeacoffee.png"alt="Buy Me A Coffee QR code"width="130"align="right"></a>
1
+
<ahref="https://www.buymeacoffee.com/0xAHA"target="_blank"><imgsrc="docs/images/qr-code-buymeacoffee.png"alt="Buy Me A Coffee QR code"width="130"align="right"></a>
2
2
3
-
# Growatt Modbus Integration for Home Assistant ☀ï¸
3
+
# Growatt Modbus Integration for Home Assistant ☀️
<ahref="https://www.buymeacoffee.com/0xAHA"target="_blank"><imgsrc="https://cdn.buymeacoffee.com/buttons/default-orange.png"alt="Buy Me A Coffee"height="41"width="174"></a>
11
11
12
-
A native Home Assistant integration for Growatt solar inverters using **direct Modbus RTU/TCP communication**. Real-time data straight from your inverter — no cloud, no ShineWiFi, no dependency on Growatt's servers.
12
+
A native Home Assistant integration for Growatt solar inverters using **direct Modbus RTU/TCP communication**. Real-time data straight from your inverter — no cloud, no ShineWiFi, no dependency on Growatt's servers.
The documentation site covers supported models, sensor reference, inverter controls, energy dashboard setup, troubleshooting, and developer guides.
17
17
@@ -23,17 +23,17 @@ The documentation site covers supported models, sensor reference, inverter contr
23
23
24
24
[](https://my.home-assistant.io/redirect/hacs_repository/?owner=0xAHA&repository=Growatt_ModbusTCP&category=integration)
25
25
26
-
1. Open **HACS**→**⋮ menu**→**Custom repositories**
26
+
1. Open **HACS**→**⋮ menu**→**Custom repositories**
0 commit comments