diff --git a/basicswap/static/js/offers.js b/basicswap/static/js/offers.js index 9ec63ae..8a472e4 100644 --- a/basicswap/static/js/offers.js +++ b/basicswap/static/js/offers.js @@ -284,6 +284,7 @@ const WebSocketManager = { clearTimeout(this.connectionState.connectTimeout); this.connectionState.lastHealthCheck = Date.now(); window.ws = this.ws; + console.log('🟒 WebSocket connection established for Offers'); updateConnectionStatus('connected'); }; @@ -2755,7 +2756,7 @@ document.addEventListener('DOMContentLoaded', async () => { timerManager.addInterval(() => { if (WebSocketManager.isConnected()) { - console.log('🟒 WebSocket connection established'); + console.log('🟒 WebSocket connection established for Offers'); } }, 30000); diff --git a/basicswap/templates/footer.html b/basicswap/templates/footer.html index e61fd82..bdfd99e 100644 --- a/basicswap/templates/footer.html +++ b/basicswap/templates/footer.html @@ -23,9 +23,9 @@
-

Β© 2024~ (BSX) BasicSwap

+

Β© 2025~ (BSX) BasicSwap

BSX: v{{ version }}

-

GUI: v3.1.2

+

GUI: v3.2.0

Made with

{{ love_svg | safe }}
diff --git a/basicswap/templates/header.html b/basicswap/templates/header.html index a5db479..df0a461 100644 --- a/basicswap/templates/header.html +++ b/basicswap/templates/header.html @@ -847,7 +847,7 @@ const ws = new WebSocket(wsUrl); ws.onopen = () => { - console.log('🟒 WebSocket connection two established'); + console.log('🟒 WebSocket connection established for Dynamic Counters'); fetchSummaryData(); setInterval(fetchSummaryData, 30000); // Refresh every 30 seconds }; diff --git a/basicswap/templates/index.html b/basicswap/templates/index.html index 0d1985e..f628f22 100644 --- a/basicswap/templates/index.html +++ b/basicswap/templates/index.html @@ -1,73 +1,4 @@ {% include 'header.html' %} -{% from 'style.html' import index_wallet_svg, index_trading_svg, index_support_svg %} -
-
-
-
- (BSX) BasicSwap v{{ version }} - (GUI) v.3.1.2 -

Welcome to BasicSwap DEX

-

The World's Most Secure and Decentralized DEX, Safely swap cryptocurrencies without central points of failure. -It’s free, completely trustless, and highly secure.

- - - -
-
-
-
- - - - - - - -
-
-
-
{% include 'footer.html' %}