From 66c9790d2b54d8ca985571831215267294bdf27f Mon Sep 17 00:00:00 2001 From: Spencer Grimes Date: Tue, 3 Feb 2026 20:57:18 -0600 Subject: [PATCH] Bump to v1.1.0, enable network and docker detectors - Version bump reflecting new features (sounds, tap reaction, docker detector) - Rename title to Kao - Enable network and docker detectors by default Co-Authored-By: Claude Opus 4.5 --- config.json | 6 +- index.html | 671 +++++++++++++++++++++++++++------------------------- 2 files changed, 352 insertions(+), 325 deletions(-) diff --git a/config.json b/config.json index f8046b7..36e0112 100644 --- a/config.json +++ b/config.json @@ -45,7 +45,7 @@ }, { "name": "network", - "enabled": false, + "enabled": true, "script": "detectors/network.py", "env": { "CHECK_INTERVAL": "60", @@ -55,7 +55,7 @@ }, { "name": "docker", - "enabled": false, + "enabled": true, "script": "detectors/docker.py", "env": { "CHECK_INTERVAL": "60", @@ -64,4 +64,4 @@ } } ] -} +} \ No newline at end of file diff --git a/index.html b/index.html index 24258cc..10dbec7 100644 --- a/index.html +++ b/index.html @@ -1,371 +1,398 @@ - + - - - - Sentry-Emote - - - -
( ^_^)
-
Loading...
+ @keyframes sleep { + 0%, + 100% { + opacity: 0.4; + transform: scale(1); + } + 50% { + opacity: 0.2; + transform: scale(0.98); + } + } + + + +
( ^_^)
+
Loading...
- - + // Initial fetch and start polling + fetchStatus(); + setInterval(fetchStatus, POLL_INTERVAL); + +