@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balaji003/lantransfer",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "LAN File Transfer — peer-to-peer file sharing over local network. Zero dependencies.",
5
5
  "main": "server.js",
6
6
  "bin": {
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');