Update app version and changelog for July End of Month Update; remove unused code in entrypoint script

This commit is contained in:
2025-07-25 04:39:30 +00:00
committed by GitHub
parent 57c4070bed
commit 940ed94579
4 changed files with 24 additions and 7 deletions

View File

@@ -1 +1 @@
NEXT_PUBLIC_COMMIT_SHA=3a3c065 NEXT_PUBLIC_COMMIT_SHA=57c4070

View File

@@ -5,12 +5,32 @@ import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/u
import { Button } from '@/components/ui/button'; import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge'; import { Badge } from '@/components/ui/badge';
import { ScrollArea } from '@/components/ui/scroll-area'; import { ScrollArea } from '@/components/ui/scroll-area';
import { title } from 'process';
// Current app version from package.json // 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 // Changelog data - add new versions at the top
const CHANGELOG = [ 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', version: '2025.07.10',
title: 'July Major Update', title: 'July Major Update',

View File

@@ -103,14 +103,14 @@ const Ihateserverside: React.FC<IhateserversideProps> = ({ children }) => {
{/* Mobile Layout */} {/* Mobile Layout */}
<div className="flex md:hidden flex-col h-screen w-screen overflow-hidden"> <div className="flex md:hidden flex-col h-screen w-screen overflow-hidden">
{/* Top Menu */} {/* Top Menu */}
<div className="shrink-0 bg-background border-b w-full"> {/* <div className="shrink-0 bg-background border-b w-full">
<Menu <Menu
toggleSidebar={toggleSidebarVisibility} toggleSidebar={toggleSidebarVisibility}
isSidebarVisible={isSidebarVisible} isSidebarVisible={isSidebarVisible}
toggleStatusBar={() => setIsStatusBarVisible(!isStatusBarVisible)} toggleStatusBar={() => setIsStatusBarVisible(!isStatusBarVisible)}
isStatusBarVisible={isStatusBarVisible} isStatusBarVisible={isStatusBarVisible}
/> />
</div> </div> */}
{/* Main Content Area with bottom padding for audio player and bottom nav */} {/* Main Content Area with bottom padding for audio player and bottom nav */}
<div className="flex-1 overflow-y-auto pb-40"> <div className="flex-1 overflow-y-auto pb-40">

View File

@@ -15,6 +15,3 @@ printenv | grep NEXT_PUBLIC_ | while read -r line ; do
done done
echo "✅ Environment variable replacement complete" echo "✅ Environment variable replacement complete"
# Execute the container's main process (CMD in Dockerfile)
exec "$@"