Log upgrades; Fix HTTPS links

This commit is contained in:
Taylor Helsper 2019-10-19 09:40:18 -05:00
parent e8db91f146
commit f2989997b1
3 changed files with 9 additions and 6 deletions

View File

@ -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

View File

@ -36,4 +36,4 @@ sync
sleep 1
# Run post upgrade script
/bin/bash /usr/bin/mynode_post_upgrade.sh
/bin/bash /usr/bin/mynode_post_upgrade.sh > /home/admin/upgrade_log.txt

View File

@ -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');
})