Add v9.1.1: Device registry and remote blocking system

- Implement DeviceRegistry for remote device management
- Add dashboard for device tracking and blocking
- Remote device blocking capability with admin control
- Support for device aliasing and notes
- Enhanced device management interface
- Dashboard with real-time device status
- Configurable registry URL in build config

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
renato97
2025-11-23 21:37:11 +01:00
parent cf11aa04bc
commit 8fc8991efa
925 changed files with 97082 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>StreamPlayer Device Dashboard</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Control de Dispositivos StreamPlayer</h1>
<p>Visualiza instalaciones activas y bloquea acceso con un clic.</p>
</header>
<section class="actions">
<button id="refreshBtn">Actualizar listado</button>
<span id="statusMessage"></span>
</section>
<section class="table-wrapper">
<table>
<thead>
<tr>
<th>Alias / Nombre</th>
<th>Device ID</th>
<th>Modelo</th>
<th>Versión app</th>
<th>Última vez visto</th>
<th>Estado</th>
<th>Acciones</th>
</tr>
</thead>
<tbody id="devicesTable">
<tr>
<td colspan="7" class="empty">No hay datos aún</td>
</tr>
</tbody>
</table>
</section>
<script src="app.js"></script>
</body>
</html>