feat: update app version to 2025.07.02 and add changelog entries for July Mini Update
This commit is contained in:
@@ -7,10 +7,21 @@ import { Badge } from '@/components/ui/badge';
|
|||||||
import { ScrollArea } from '@/components/ui/scroll-area';
|
import { ScrollArea } from '@/components/ui/scroll-area';
|
||||||
|
|
||||||
// Current app version from package.json
|
// Current app version from package.json
|
||||||
const APP_VERSION = '2025.07.01';
|
const APP_VERSION = '2025.07.02';
|
||||||
|
|
||||||
// Changelog data - add new versions at the top
|
// Changelog data - add new versions at the top
|
||||||
const CHANGELOG = [
|
const CHANGELOG = [
|
||||||
|
{
|
||||||
|
version: '2025.07.02',
|
||||||
|
title: 'July Mini Update',
|
||||||
|
changes: [
|
||||||
|
'New Favorites inside of the Home Page',
|
||||||
|
'Server Status Indicator removed for better performance',
|
||||||
|
'New Album Artwork component for consistency (along with the artists)'
|
||||||
|
],
|
||||||
|
breaking: [],
|
||||||
|
fixes: []
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: '2025.07.01',
|
version: '2025.07.01',
|
||||||
title: 'July New Month Update',
|
title: 'July New Month Update',
|
||||||
@@ -25,6 +36,8 @@ const CHANGELOG = [
|
|||||||
'Introduced Whats New popup for version updates',
|
'Introduced Whats New popup for version updates',
|
||||||
'Improved UI consistency with new Badge component',
|
'Improved UI consistency with new Badge component',
|
||||||
'New Favorites page with album, song, and artist sections',
|
'New Favorites page with album, song, and artist sections',
|
||||||
|
'New Favortites inside of the Home Page',
|
||||||
|
'Server Status Indicator removed for better performance',
|
||||||
],
|
],
|
||||||
breaking: [],
|
breaking: [],
|
||||||
fixes: [
|
fixes: [
|
||||||
@@ -154,6 +167,7 @@ export function WhatsNewPopup() {
|
|||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
|
|
||||||
{/* Tabs */}
|
{/* Tabs */}
|
||||||
|
<>
|
||||||
<div className="flex gap-2 mb-4">
|
<div className="flex gap-2 mb-4">
|
||||||
<Button
|
<Button
|
||||||
variant={tab === 'latest' ? 'default' : 'outline'}
|
variant={tab === 'latest' ? 'default' : 'outline'}
|
||||||
@@ -184,7 +198,6 @@ export function WhatsNewPopup() {
|
|||||||
</select>
|
</select>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ScrollArea className="max-h-[60vh] pr-4">
|
<ScrollArea className="max-h-[60vh] pr-4">
|
||||||
{tab === 'latest'
|
{tab === 'latest'
|
||||||
? renderChangelog(currentVersionChangelog)
|
? renderChangelog(currentVersionChangelog)
|
||||||
@@ -196,7 +209,9 @@ export function WhatsNewPopup() {
|
|||||||
Got it!
|
Got it!
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mice-reworked",
|
"name": "mice-reworked",
|
||||||
"version": "1.0.0",
|
"version": "2025.07.02",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"predev": "echo NEXT_PUBLIC_COMMIT_SHA=$(git rev-parse --short HEAD) > .env.local",
|
"predev": "echo NEXT_PUBLIC_COMMIT_SHA=$(git rev-parse --short HEAD) > .env.local",
|
||||||
|
|||||||
Reference in New Issue
Block a user