Update UI for Bitcoin and LND with enhanced connection details and styling

- Modified the startup script to reflect updated URLs for Lightning UI and REST API.
- Enhanced Bitcoin Core and LND UI with new styling and layout improvements, including background images and responsive design.
- Added connection status indicators and improved accessibility for RPC and gRPC information.
- Implemented new buttons for copying connection details and viewing logs, enhancing user interaction.
- Updated modal designs for settings and logs to improve usability and aesthetics.
This commit is contained in:
Dorian
2026-01-28 00:12:11 +00:00
parent 6a018e4953
commit 336704512b
17 changed files with 946 additions and 937 deletions

View File

@@ -191,6 +191,12 @@ function launchApp(id: string) {
return
}
// Special handling for LND - open in new tab on port 8085
if (id === 'lnd') {
window.open('http://localhost:8085', '_blank', 'noopener,noreferrer')
return
}
// Get the LAN address from the package manifest
const lanAddress = pkg?.installed?.['interface-addresses']?.main?.['lan-address']