Log upgrades; Fix HTTPS links
This commit is contained in:
parent
e8db91f146
commit
f2989997b1
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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');
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user