diff --git a/AGENTS.md b/AGENTS.md
index 999bdb1..81908fc 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -1,7 +1,7 @@
-# smartvos - Smart Home System
+# SHinterface - Smart Home Interface
## Overview
-smartvos is a Qt6-based smart home control application that interfaces with microcontrollers and various sensors to manage home automation devices. It supports both primary (master) and secondary (client) modes, allowing for distributed control across multiple devices.
+SHinterface is a Qt6-based smart home control application that interfaces with microcontrollers and various sensors to manage home automation devices. It supports both primary (master) and secondary (client) modes, allowing for distributed control across multiple devices.
## Architecture
diff --git a/remote.html b/remote.html
index 78f5a36..4765978 100644
--- a/remote.html
+++ b/remote.html
@@ -185,25 +185,6 @@
.refresh-btn:hover {
background-color: #45a049;
}
- .filter-container {
- display: flex;
- align-items: center;
- gap: 10px;
- margin-bottom: 10px;
- }
- .filter-label {
- color: #ccc;
- font-size: 0.9em;
- }
- .filter-select {
- flex: 1;
- padding: 8px;
- border-radius: 5px;
- border: 1px solid #555;
- background-color: #4a4c56;
- color: white;
- font-size: 0.9em;
- }
@@ -217,22 +198,10 @@
-
- Group:
-
-
-
- Group:
-
-
@@ -341,24 +310,14 @@
function renderItems() {
const itemList = document.getElementById('itemList');
- const groupFilter = document.getElementById('itemGroupFilter').value;
itemList.innerHTML = '';
- // Update group filter options
- updateItemGroupFilter();
-
- // Filter items by group
- let filteredItems = Object.values(items);
- if (groupFilter) {
- filteredItems = filteredItems.filter(item => item.GroupName === groupFilter);
- }
-
- if (filteredItems.length === 0) {
+ if (Object.keys(items).length === 0) {
itemList.innerHTML = '