From 940ed94579da2cc56a47dd27a4e159eaadc80cd6 Mon Sep 17 00:00:00 2001 From: angel Date: Fri, 25 Jul 2025 04:39:30 +0000 Subject: [PATCH] Update app version and changelog for July End of Month Update; remove unused code in entrypoint script --- .env.local | 2 +- app/components/WhatsNewPopup.tsx | 22 +++++++++++++++++++++- app/components/ihateserverside.tsx | 4 ++-- entrypoint.sh | 3 --- 4 files changed, 24 insertions(+), 7 deletions(-) diff --git a/.env.local b/.env.local index 6df3a20..159d158 100644 --- a/.env.local +++ b/.env.local @@ -1 +1 @@ -NEXT_PUBLIC_COMMIT_SHA=3a3c065 +NEXT_PUBLIC_COMMIT_SHA=57c4070 diff --git a/app/components/WhatsNewPopup.tsx b/app/components/WhatsNewPopup.tsx index aa27782..614288a 100644 --- a/app/components/WhatsNewPopup.tsx +++ b/app/components/WhatsNewPopup.tsx @@ -5,12 +5,32 @@ import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/u import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; import { ScrollArea } from '@/components/ui/scroll-area'; +import { title } from 'process'; // Current app version from package.json -const APP_VERSION = '2025.07.10'; +const APP_VERSION = '2025.07.31'; // Changelog data - add new versions at the top const CHANGELOG = [ + { + version: '2025.07.31', + title: 'July End of Month Update', + changes: [ + 'Native support for moblie devices (using pwa)', + ], + fixes: [ + 'Fixed issue with mobile navigation bar not displaying correctly', + 'Improved performance on mobile devices', + 'Resolved layout issues on smaller screens', + 'Fixed audio player controls not responding on mobile', + 'Improved touch interactions for better usability', + 'Fixed issue with album artwork not loading on mobile', + 'Resolved bug with search functionality on mobile devices', + 'Improved caching for faster load times on mobile', + ], + breaking: [ + ] + }, { version: '2025.07.10', title: 'July Major Update', diff --git a/app/components/ihateserverside.tsx b/app/components/ihateserverside.tsx index 0f9680f..c79f460 100644 --- a/app/components/ihateserverside.tsx +++ b/app/components/ihateserverside.tsx @@ -103,14 +103,14 @@ const Ihateserverside: React.FC = ({ children }) => { {/* Mobile Layout */}
{/* Top Menu */} -
+ {/*
setIsStatusBarVisible(!isStatusBarVisible)} isStatusBarVisible={isStatusBarVisible} /> -
+
*/} {/* Main Content Area with bottom padding for audio player and bottom nav */}
diff --git a/entrypoint.sh b/entrypoint.sh index f7b2116..e76238f 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -15,6 +15,3 @@ printenv | grep NEXT_PUBLIC_ | while read -r line ; do done echo "✅ Environment variable replacement complete" - -# Execute the container's main process (CMD in Dockerfile) -exec "$@"