Skip to content

Commit 817413c

Browse files
committed
Prep for v5.0.2: tweak panel size and fix false alarm in upgrade script
1 parent ededa7a commit 817413c

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

RELEASE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# RELEASE NOTES
22

3+
## v5.0.2 - Dashboard Enhancements
4+
5+
### Dashboard Updates
6+
7+
* Add dynamic color and text to Current State panel by @caubert in https://github.com/jasonacox/Powerwall-Dashboard/pull/734
8+
- Current State panel now displays descriptive text indicating the flow of power (e.g., "Grid Import", "Grid Export", "Charging Battery", etc.).
9+
- Panel background color dynamically changes based on power flow state for improved visual feedback.
10+
11+
### Bug Fixes
12+
13+
* Fix false alarm in `upgrade.sh` that incorrectly reported "Grafana environmental settings are outdated" after upgrading to v5.0.0+.
14+
315
## v5.0.1 - Firmware 25.42.2+ Support
416

517
### pyPowerwall Update

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.0.2

dashboards/dashboard.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,8 +1252,8 @@
12521252
},
12531253
"gridPos": {
12541254
"h": 3,
1255-
"w": 8,
1256-
"x": 16,
1255+
"w": 6,
1256+
"x": 17,
12571257
"y": 11
12581258
},
12591259
"id": 72,
@@ -2885,9 +2885,9 @@
28852885
]
28862886
},
28872887
"gridPos": {
2888-
"h": 5,
2889-
"w": 7,
2890-
"x": 17,
2888+
"h": 4,
2889+
"w": 5,
2890+
"x": 18,
28912891
"y": 17
28922892
},
28932893
"id": 93,
@@ -2905,7 +2905,10 @@
29052905
"values": false
29062906
},
29072907
"showPercentChange": false,
2908-
"text": {},
2908+
"text": {
2909+
"titleSize": 12,
2910+
"valueSize": 12
2911+
},
29092912
"textMode": "value_and_name",
29102913
"wideLayout": true
29112914
},

upgrade.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e
77

88
# Set Globals
9-
VERSION="5.0.1"
9+
VERSION="5.0.2"
1010
CURRENT="Unknown"
1111
COMPOSE_ENV_FILE="compose.env"
1212
INFLUXDB_ENV_FILE="influxdb.env"
@@ -253,7 +253,7 @@ if [ ! -f ${GF_ENV_FILE} ]; then
253253
fi
254254

255255
# Check for latest Grafana settings (required in 2.6.2)
256-
if ! grep -q "Updated v4.1.1" "${GF_ENV_FILE}"; then
256+
if ! grep -q "Updated v5.0.0" "${GF_ENV_FILE}"; then
257257
echo "Your Grafana environmental settings are outdated."
258258
echo " Updating these are not required but could add some enhancements."
259259
echo " If you upgrade, any custom settings you made will be removed and"

0 commit comments

Comments
 (0)