Skip to content

Commit

Permalink
Merge pull request #489 from jasonacox/v4.4.4
Browse files Browse the repository at this point in the history
## v4.4.4 - Bug Fixes
  • Loading branch information
jasonacox authored Jun 16, 2024
2 parents c2ad9ae + 3cca1ff commit 3a35b53
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# RELEASE NOTES

## v4.4.4 - Bug Fixes

* Fix setup.sh gateway detection logic to better work on Synology and other host without user `ping` commands as raised by @zcpnate in #488
* Update to pypowerwall 0.10.6: pyLint code optimization, fix timeout logic for TEDAPI and FleetAPI modes, fix battery backup reserve level scaling for TEDPAI mode, fix grid status bug in FleetAPI mode and fix control mode error in proxy.

## v4.4.3 - Minor Fixes

* Update to pypowerwall 0.10.5:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.3
4.4.4
2 changes: 1 addition & 1 deletion powerwall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- influxdb.env

pypowerwall:
image: jasonacox/pypowerwall:0.10.5t62
image: jasonacox/pypowerwall:0.10.6t63
container_name: pypowerwall
hostname: pypowerwall
restart: unless-stopped
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function test_ip() {
if [ -z "${IP}" ]; then
return 1
fi
if ping -c 1 -W 1 ${IP} > /dev/null 2>&1; then
if curl -k --head --connect-timeout 1 --silent https://${IP} > /dev/null 2>&1; then
return 0
else
return 1
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.4.3"
VERSION="4.4.4"
CURRENT="Unknown"
COMPOSE_ENV_FILE="compose.env"
INFLUXDB_ENV_FILE="influxdb.env"
Expand Down

0 comments on commit 3a35b53

Please sign in to comment.