From 5b663621e4d82a9bf904327fd363aa7ba69bc880 Mon Sep 17 00:00:00 2001 From: henrygd Date: Thu, 9 Oct 2025 13:37:09 -0400 Subject: [PATCH] rename favicon to break cache --- internal/site/index.html | 2 +- internal/site/public/static/{favicon.svg => icon.svg} | 0 internal/site/src/main.tsx | 1 - supplemental/CHANGELOG.md | 10 ++++++++++ 4 files changed, 11 insertions(+), 2 deletions(-) rename internal/site/public/static/{favicon.svg => icon.svg} (100%) diff --git a/internal/site/index.html b/internal/site/index.html index 60a5b913..15dafbf6 100644 --- a/internal/site/index.html +++ b/internal/site/index.html @@ -3,7 +3,7 @@ - + Beszel diff --git a/internal/site/public/static/favicon.svg b/internal/site/public/static/icon.svg similarity index 100% rename from internal/site/public/static/favicon.svg rename to internal/site/public/static/icon.svg diff --git a/internal/site/src/main.tsx b/internal/site/src/main.tsx index 383dc4b1..2e09ddfe 100644 --- a/internal/site/src/main.tsx +++ b/internal/site/src/main.tsx @@ -48,7 +48,6 @@ const App = memo(() => { // subscribe to new alert updates .then(alertManager.subscribe) return () => { - // updateFavicon("favicon.svg") alertManager.unsubscribe() systemsManager.unsubscribe() } diff --git a/supplemental/CHANGELOG.md b/supplemental/CHANGELOG.md index 522ea4f9..34e86379 100644 --- a/supplemental/CHANGELOG.md +++ b/supplemental/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.13.2 + +- Add ability to set custom name for extra filesystems. (#379) + +- Improve WebSocket agent reconnection after network interruptions. (#1263) + +- Allow more latency in one minute charts before visually disconnecting points. (#1247) + +- Update favicon and add add down systems count in bubble. + ## 0.13.1 - Fix one minute charts on systems without Docker. (#1237)