Skip to content

Commit

Permalink
Merge pull request #535 from jasonacox/v4.5.4
Browse files Browse the repository at this point in the history
Fix bug in setup.sh for MacOS hosts #534
  • Loading branch information
jasonacox authored Oct 13, 2024
2 parents 8335299 + 3a8bd91 commit 7881ffa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# RELEASE NOTES

## v4.5.4 - MacOS Fix

* Fix bug in `setup.sh` that will error during Grafana "Sun and Moon" provider provisioning, as reported by @jdjammer in https://github.com/jasonacox/Powerwall-Dashboard/issues/534

## v4.5.3 - TEDAPI Route Tool

* New `add_route.sh` tool to add persistent TEDAPI network routing by @SCHibbard in https://github.com/jasonacox/Powerwall-Dashboard/pull/520
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.3
4.5.4
5 changes: 2 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -447,11 +447,10 @@ if [ -f weather.sh ]; then
./weather.sh setup
fi

# Set up Sun and Moon data provider
if [ -f grafana/sunandmoon-template.yml ]; then
cp grafana/sunandmoon-template.yml grafana/provisions/datasources/sunandmoon.yml
sed -i "s@zzLAT@${LAT}@g" grafana/provisions/datasources/sunandmoon.yml
sed -i "s@zzLONG@${LONG}@g" grafana/provisions/datasources/sunandmoon.yml
sed -i '' "s@zzLAT@${LAT}@g" grafana/provisions/datasources/sunandmoon.yml
sed -i '' "s@zzLONG@${LONG}@g" grafana/provisions/datasources/sunandmoon.yml
fi

# Build Docker in current environment
Expand Down
2 changes: 1 addition & 1 deletion upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -e

# Set Globals
VERSION="4.5.3"
VERSION="4.5.4"
CURRENT="Unknown"
COMPOSE_ENV_FILE="compose.env"
INFLUXDB_ENV_FILE="influxdb.env"
Expand Down

0 comments on commit 7881ffa

Please sign in to comment.