chore: Update version to 2026.01.24 and add changelog for January 2026 release

This commit is contained in:
2026-01-25 00:16:58 +00:00
committed by GitHub
parent 4a110ebf0f
commit 6b0e7f73d4
4 changed files with 33 additions and 6 deletions

View File

@@ -56,8 +56,6 @@ Next, open the new `.env` file and update it with your Navidrome server credenti
NEXT_PUBLIC_NAVIDROME_URL=http://localhost:4533 NEXT_PUBLIC_NAVIDROME_URL=http://localhost:4533
NEXT_PUBLIC_NAVIDROME_USERNAME=your_username NEXT_PUBLIC_NAVIDROME_USERNAME=your_username
NEXT_PUBLIC_NAVIDROME_PASSWORD=your_password NEXT_PUBLIC_NAVIDROME_PASSWORD=your_password
NEXT_PUBLIC_POSTHOG_KEY=phc_XXXXXXXXXXXXXXXXXX
NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
``` ```
> **Tip:** If you dont have your own Navidrome server yet, you can use the public demo credentials: > **Tip:** If you dont have your own Navidrome server yet, you can use the public demo credentials:

View File

@@ -5,10 +5,38 @@ import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge'; import { Badge } from '@/components/ui/badge';
// Current app version from package.json // Current app version from package.json
const APP_VERSION = '2025.07.31'; const APP_VERSION = '2026.01.24';
// Changelog data - add new versions at the top // Changelog data - add new versions at the top
const CHANGELOG = [ const CHANGELOG = [
{
version: '2026.01.24',
title: 'January 2026 Update',
changes: [
'Improved SortableQueueItem component with enhanced click handling and styling',
'Added keyboard shortcuts and queue management features',
'Added ListeningStreakCard component for tracking listening streaks',
'Moved service worker registration to dedicated component for improved client-side handling',
'Enhanced offline download manager with client-side checks',
'Enhanced OfflineManagement component with improved card styling and layout',
'Implemented Auto-Tagging Settings and MusicBrainz integration',
'Enhanced audio settings with ReplayGain, crossfade, and equalizer presets',
'Added AudioSettingsDialog component',
'Updated cover art retrieval to use higher resolution images',
'Enhanced UI with Framer Motion animations for album artwork and artist icons',
'Added page transition animations and notification settings for audio playback',
'Implemented offline library synchronization with IndexedDB',
'Implemented offline library management with IndexedDB support',
'Updated all npm subdependencies to latest minor versions',
],
fixes: [
'Updated README formatting and improved content clarity',
],
breaking: [
'Removed PostHog analytics tracking',
'Removed caching system (replaced with offline library management)',
]
},
{ {
version: '2025.07.31', version: '2025.07.31',
title: 'July End of Month Update', title: 'July End of Month Update',

View File

@@ -1,6 +1,6 @@
{ {
"name": "mice-reworked", "name": "mice-reworked",
"version": "2025.07.10", "version": "2026.01.24",
"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",

View File

@@ -14,7 +14,7 @@
"moduleResolution": "node", "moduleResolution": "node",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "react-jsx",
"incremental": true, "incremental": true,
"plugins": [ "plugins": [
{ {
@@ -32,7 +32,8 @@
"next-env.d.ts", "next-env.d.ts",
"**/*.ts", "**/*.ts",
"**/*.tsx", "**/*.tsx",
".next/types/**/*.ts" ".next/types/**/*.ts",
".next/dev/types/**/*.ts"
], ],
"exclude": [ "exclude": [
"node_modules" "node_modules"