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 "$@"