From a6f90462a57cd27e83cb4c0268a8ce5aa2fec1b5 Mon Sep 17 00:00:00 2001 From: cc Date: Tue, 14 Apr 2026 19:51:49 +0200 Subject: [PATCH] Improve footer and version history display - Add build timestamp to footer - Rename GitHub links for clarity (Source Code, Firmware Indexer, Raw Data) - Remove height limit from version history sidebar --- next.config.ts | 3 +++ src/app/os/bin/page.tsx | 2 +- src/components/footer.tsx | 16 ++++++++++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/next.config.ts b/next.config.ts index 1d9b582..c39691a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -6,6 +6,9 @@ const nextConfig: NextConfig = { output: "export", basePath, assetPrefix: basePath || undefined, + env: { + NEXT_PUBLIC_BUILD_TIME: new Date().toISOString(), + }, }; export default nextConfig; diff --git a/src/app/os/bin/page.tsx b/src/app/os/bin/page.tsx index 5233169..3921766 100644 --- a/src/app/os/bin/page.tsx +++ b/src/app/os/bin/page.tsx @@ -131,7 +131,7 @@ export default function BinaryDetail() {

Version History ({availableHistory.length})

-
+
{groupedHistory.map(([major, versions]) => (
- entdb +
+ entdb + ยท + + Built {new Date(BUILD_TIME).toLocaleDateString()} + +