@balaji003/lantransfer 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/index.html +2 -1
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
</div>
|
|
358
358
|
|
|
359
359
|
<!-- Connection status -->
|
|
360
|
-
<div class="conn-status" id="conn-status"></div>
|
|
360
|
+
<div class="conn-status"><span id="conn-status"></span> <span id="version-text"></span></div>
|
|
361
361
|
|
|
362
362
|
<script>
|
|
363
363
|
// ──────────────────────────────────────────────────────────────────────────
|
|
@@ -500,6 +500,7 @@
|
|
|
500
500
|
nameLoaded = true;
|
|
501
501
|
}
|
|
502
502
|
document.getElementById('local-ip').textContent = state.localIP || '';
|
|
503
|
+
document.getElementById('version-text').textContent = state.currentVersion ? 'v' + state.currentVersion : '';
|
|
503
504
|
|
|
504
505
|
// Update banner
|
|
505
506
|
const banner = document.getElementById('update-banner');
|