v1.0.1
Fix: TypeError when adding events over HTTP
Resolves a crash when running lifeGLANCE self-hosted over plain HTTP (e.g. Docker on a Raspberry Pi). crypto.randomUUID() is restricted to HTTPS-only contexts by modern browsers — the app now falls back to crypto.getRandomValues() which works in both HTTP and HTTPS environments.
Affected setups: Self-hosted Docker instances accessed over HTTP, particularly on Firefox.
No action required — updating your Docker image is sufficient. If you want a permanent fix at the network level, serving behind a reverse proxy with HTTPS (e.g. Caddy or nginx with a self-signed cert) is recommended regardless, as browsers increasingly restrict features to secure contexts.