diff --git a/README.md b/README.md index 619111d..02f92ff 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,13 @@ Check the [wiki](https://github.com/vdo/xmr.sh/wiki/FAQ) - [x] Make tor service optional - [x] Block explorer (disabled) - [x] Grafana dashboard +- [x] arm64 support for all images +- [x] monerod-lws support (experimental) - [ ] Shellcheck via Github Actions - [ ] Installation documentation -- [ ] arm64 support for all images -- [ ] monerod-lws support - [ ] monerod-proxy support for random node forwarding - [ ] i2p service +- [ ] p2pool mining # Credits diff --git a/install b/install index b54c164..6c909d2 100755 --- a/install +++ b/install @@ -28,7 +28,7 @@ StatInfo="${White}${On_Black}" ################################################################ # Vars # ################################################################ -VERSION="v0.3.2" +VERSION="v0.3.3" XMRSH_INSTALL_CMD="sudo bash -c \"\$(curl -sLSf https://get.xmr.sh)\"" XMRSH_DIR="/opt/xmr.sh" XMRSH_BRANCH="main" @@ -304,7 +304,7 @@ configure_explorer() { configure_lws() { echo -e "${OkBullet}Configuring LWS..." while true; do - read -r -e -p " Do you want to enable the light wallet service? [y/n]: " yn + read -r -e -p " Do you want to enable the light wallet service (experimental)? [y/n]: " yn case $yn in [Yy]*) sed -i '/#!lws/s/# //g' docker-compose.yml @@ -404,6 +404,9 @@ completed() { if [ "$ENABLE_EXPLORER" = true ]; then echo -e " ${Red}│${Stat} Explorer URL: ${StatInfo}https://${HOST}${PORT_SUFF}/explorer" fi + if [ "$ENABLE_LWS" = true ]; then + echo -e " ${Red}│${Stat} LWS URL: ${StatInfo}https://${HOST}${PORT_SUFF}/lws" + fi if [ "$ENABLE_GRAFANA" = true ]; then echo -e " ${Red}│${Stat} Grafana URL: ${StatInfo}https://${HOST}${PORT_SUFF}/grafana" echo -e " ${Red}│${Stat} Grafana user: ${StatInfo}admin"