diff --git a/README.md b/README.md index 885a2001..79905b78 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ Run the interactive setup script that will ask you for your Powerwall details an ``` _If you get docker errors during the setup, see the [Docker Errors](https://github.com/jasonacox/Powerwall-Dashboard#docker-errors) section below._ + + _For Windows 11 users, see the [Windows 11 Instructions](https://github.com/jasonacox/Powerwall-Dashboard#windows-11-instructions) below._ Follow the **[Grafana Setup](https://github.com/jasonacox/Powerwall-Dashboard#grafana-setup)** instructions provided (or see below) to complete the setup. @@ -203,6 +205,17 @@ The equations that are used to compute the estimated savings: * If you are having trouble getting this to work on a Synology NAS, view the resolution discovered in [Issue #22](https://github.com/jasonacox/Powerwall-Dashboard/issues/22) thanks to @jaydkay. * If you are running docker as a non-privileged (rootless) user, please some setup help [here](https://github.com/jasonacox/Powerwall-Dashboard/issues/22#issuecomment-1254699603) thanks to @BuongiornoTexas. +#### Windows 11 Instruction + +Installing Powerwall-Dashboard on a Windows 11 host requires some additional setup. Install and Setup using administrator PowerShell or Windows Command Prompt: + +* Install WSL (wsl --install) with an OS (recommend Ubuntu) +* Install *Git for Windows* (https://gitforwindows.org/) +* Install *Docker Desktop* for Windows (https://www.docker.com/) +* From *Git Bash* prompt, Clone repo (`git clone https://github.com/jasonacox/Powerwall-Dashboard.git`) +* Run `cd Powerwall-Dashboard` +* Run `./setup.sh` + #### Tips and Tricks Since [pyPowerwall proxy](https://github.com/jasonacox/pypowerwall/tree/main/proxy) is part of this dashboard stack, you can query it to get raw data (read only) from the Powerwall API. This includes some aggregate functions you might find useful for other projects. I use this for [ESP32 driven display](https://github.com/jasonacox/Powerwall-Display) for example. Replace localhost with the address of the system running the dashboard: diff --git a/RELEASE.md b/RELEASE.md index 5a0a0f98..69a9438a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,12 @@ # RELEASE NOTES +## v2.6.6 - Add Windows 11 Compatibility + +* Adjusted `setup.sh` and `upgrade.sh` to work with Windows 11 OS. #63 +* Added Windows 11 Instructions. #63 +* Added tool to retrieve history data from Tesla cloud by @mcbirse in https://github.com/jasonacox/Powerwall-Dashboard/pull/99 and https://github.com/jasonacox/Powerwall-Dashboard/pull/108 - see https://github.com/jasonacox/Powerwall-Dashboard/tree/main/tools#tesla-historypy +* Minor QoL enhancements by @BuongiornoTexas in https://github.com/jasonacox/Powerwall-Dashboard/pull/105 - Closes #96 + ## v2.6.5 - Upgrade pyPowerwall Proxy t18 * Upgrade to pyPowerwall Proxy t18 with enhanced error handling and logging diff --git a/VERSION b/VERSION index 57cf282e..338a5b5d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6.5 +2.6.6 diff --git a/upgrade.sh b/upgrade.sh index 85d5ee73..36341ed3 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -4,7 +4,7 @@ set -e # Set Globals -VERSION="2.6.5" +VERSION="2.6.6" CURRENT="Unknown" COMPOSE_ENV_FILE="compose.env" TELEGRAF_LOCAL="telegraf.local"