From f2989997b1bbf5b55dfdaf630298c4278a10e452 Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Sat, 19 Oct 2019 09:40:18 -0500 Subject: [PATCH] Log upgrades; Fix HTTPS links --- CHANGELOG | 5 ++++- rootfs/standard/usr/bin/mynode_upgrade.sh | 2 +- rootfs/standard/var/www/mynode/templates/main.html | 8 ++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 634c33be..a4f9631f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ +=== v0.1.55 === +- Add HTTPS option for connecting to web GUI + === v0.1.54 === -- Bug fix +- Cyclic reboot bug fix for SSD driver detection === v0.1.53 === - Upgrade LND to v0.8.0 beta diff --git a/rootfs/standard/usr/bin/mynode_upgrade.sh b/rootfs/standard/usr/bin/mynode_upgrade.sh index fb750078..704e4dce 100755 --- a/rootfs/standard/usr/bin/mynode_upgrade.sh +++ b/rootfs/standard/usr/bin/mynode_upgrade.sh @@ -36,4 +36,4 @@ sync sleep 1 # Run post upgrade script -/bin/bash /usr/bin/mynode_post_upgrade.sh \ No newline at end of file +/bin/bash /usr/bin/mynode_post_upgrade.sh > /home/admin/upgrade_log.txt \ No newline at end of file diff --git a/rootfs/standard/var/www/mynode/templates/main.html b/rootfs/standard/var/www/mynode/templates/main.html index e8766de7..b952e2df 100644 --- a/rootfs/standard/var/www/mynode/templates/main.html +++ b/rootfs/standard/var/www/mynode/templates/main.html @@ -18,22 +18,22 @@ vpn_enabled = {% if vpn_enabled %}1{% else %}0{% endif %} $("#lndhub").on("click", function() { - url = location.protocol+'//'+location.hostname+':3000' + url = 'http://'+location.hostname+':3000' window.open(url,'_blank'); }) $("#rtl").on("click", function() { - url = location.protocol+'//'+location.hostname+':3010' + url = 'http://'+location.hostname+':3010' window.open(url,'_blank'); }) $("#lnd_admin").on("click", function() { - url = location.protocol+'//'+location.hostname+':3004' + url = 'http://'+location.hostname+':3004' window.open(url,'_blank'); }) $("#btcrpcexplorer").on("click", function() { - url = location.protocol+'//'+location.hostname+':3002' + url = 'http://'+location.hostname+':3002' window.open(url,'_blank'); })