Bug Fixes
Connection Lost on Root Deployments (#7)
Fixed "Connection Lost" screen appearing immediately on the login page.
The Problem: When deployed at root (without HEALARR_BASE_PATH), API calls went to https://api/health instead of /api/health. The browser treated api as a hostname because the URL //api/health is a protocol-relative URL.
Root Cause: getApiBasePath() returned / for root deployments, causing URL construction like "/" + "/api/health" = "//api/health".
The Fix: getApiBasePath() now returns empty string for root deployments, producing correct relative URLs.
Changelog
Also added missing CHANGELOG entries for v1.1.1 through v1.1.5.
Upgrade
docker compose pull healarr
docker compose up -d healarr