From cfd98f2672415ff995555fe34aac933468567c52 Mon Sep 17 00:00:00 2001 From: korpse Date: Fri, 2 Jan 2026 12:56:02 +0100 Subject: [PATCH 01/10] Deep stats cards are now fully clickable --- app/app.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index 52009c0..9f05b27 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1110,7 +1110,11 @@ const onGraphLeave = () => {
Date: Fri, 2 Jan 2026 12:56:08 +0100 Subject: [PATCH 02/10] Update favicon links in nuxt.config.ts to use .ico format --- nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 340c177..3d8dc3b 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -52,8 +52,8 @@ export default defineNuxtConfig({ { name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no' } ], link: [ - { rel: 'icon', type: 'image/png', href: '/icon.png' }, - { rel: 'apple-touch-icon', href: '/icon.png' } + { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }, + { rel: 'apple-touch-icon', href: '/favicon.ico' } ] } }, From 2cf6c7066edc40a8d382a8b55fc0aca8d513234d Mon Sep 17 00:00:00 2001 From: korpse Date: Fri, 2 Jan 2026 13:26:47 +0100 Subject: [PATCH 03/10] Adjust position of event indicator in graph for improved visibility --- app/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index 9f05b27..b7a0132 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1086,7 +1086,7 @@ const onGraphLeave = () => { :key="ev.id" class="relative mb-5 last:mb-0" > - +

{{ ev.text }}

{{ ev.created_at ? new Date(ev.created_at).toISOString().slice(0, 10) : '' }}

From 00d61f026156f236f77c186e69cb5e45cdc0ec42 Mon Sep 17 00:00:00 2001 From: korpse Date: Fri, 2 Jan 2026 13:34:15 +0100 Subject: [PATCH 04/10] Enhance badge styling for improved visibility and accessibility --- app/app.vue | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app/app.vue b/app/app.vue index b7a0132..b26e26b 100644 --- a/app/app.vue +++ b/app/app.vue @@ -763,24 +763,21 @@ const onGraphLeave = () => {
-
{{ badge.label }} - {{ badge.value.toLocaleString() }} + {{ badge.value.toLocaleString() }}
From 3268f081716872a5a02262004593e736dd504f90 Mon Sep 17 00:00:00 2001 From: korpse Date: Fri, 2 Jan 2026 13:43:10 +0100 Subject: [PATCH 05/10] Add tab management and URL fragment synchronization for improved navigation --- app/app.vue | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index b26e26b..f1bb600 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1,5 +1,5 @@