From 20ab7b9de8468eb300969459b3cd2129192bbaef Mon Sep 17 00:00:00 2001 From: ZockerAxel Date: Sat, 24 Aug 2024 14:49:44 +0200 Subject: [PATCH 1/3] Fix channel following not working when aligned to bottom --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 90b69cd..22e0244 100644 --- a/style.css +++ b/style.css @@ -47,7 +47,7 @@ main { } main:not(.aligned_to_top) { - align-self: end; + margin-block-start: auto; } /* From 25821891447477182da134bb7e88a66221e5a54c Mon Sep 17 00:00:00 2001 From: ZockerAxel Date: Sat, 24 Aug 2024 14:50:03 +0200 Subject: [PATCH 2/3] Bump App Versiont o 1.4.1 --- js/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/App.js b/js/App.js index efc1a9e..7cf04ab 100644 --- a/js/App.js +++ b/js/App.js @@ -3,7 +3,7 @@ import interfaceAppObject from "./data_loaders/InterfaceAppLoader.js"; import standaloneAppObject from "./data_loaders/StandaloneAppLoader.js"; import obsAppObject from "./data_loaders/ObsAppLoader.js"; -export const APP_VERSION = "1.4.0"; +export const APP_VERSION = "1.4.1"; export default class App { #identifier; From 1dee3d64798a0979f786d562f9c8a7787ef04275 Mon Sep 17 00:00:00 2001 From: ZockerAxel Date: Sat, 24 Aug 2024 14:50:13 +0200 Subject: [PATCH 3/3] Bump Cache Version to 9 --- service-worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service-worker.js b/service-worker.js index f35ac14..595e049 100644 --- a/service-worker.js +++ b/service-worker.js @@ -1,5 +1,5 @@ const pageDomain = "ts5viewer.endercentral.eu"; -const cacheVersion = 8; +const cacheVersion = 9; const beta = pageDomain !== location.hostname; const currentCacheKey = `v${cacheVersion}${beta ? "-beta" : ""}`;