Skip to content

Commit 387095f

Browse files
committed
chore: Release 1.10.0, introducing UI/UX enhancements, performance improvements, and bug fixes.
1 parent 7d715d4 commit 387095f

File tree

7 files changed

+63
-7
lines changed

7 files changed

+63
-7
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
---
1111

12+
## [1.10.0] - 2026-03-20
13+
14+
### Added
15+
- Remove 'Random Picker' feature from README
16+
- Update Condition Grading feature note in README
17+
- Add multi-language support with initial translations
18+
- feat: Introduce a dedicated layout for shared collection pages, enabling dynamic rendering based on user authentication, and expose MongoDB port in the dev environment.
19+
- feat: Add direct format selection buttons on release page with confirmation modal and styling.
20+
- feat: Add manual album creation translations and update search mode labels across all supported languages.
21+
- style: Apply dynamic styling and border to album format and description badges.
22+
- feat: Make album tracklist collapsible, simplify "Add to collection" text, add modal blur styling, and remove About page footer.
23+
- feat: Add a loading placeholder with a music icon and a fade-in effect for album cover images in the collection grid view.
24+
- style: Improve tracklist summary icon size, color, and alignment on the album detail page.
25+
- feat: Add album search/filter functionality to the ArtistAlbumsPage.
26+
- feat: Redesign format selection buttons with hover effects and images, add a new informational alert, and improve confirmation modal layout.
27+
- feat: add 'black' color definition to color utility.
28+
- feat: Redesign artist album display from a grid of cards to a list-like layout with enhanced styling and hover effects.
29+
30+
### Changed
31+
- refactor: group master versions by common attributes for improved display and import Plus icon.
32+
- perf: Add lazy loading to image elements in collection views and album cards.
33+
34+
### Fixed
35+
- fix: Improve text wrapping and layout for format details within buttons and modal content, and refactor modal styling.
36+
37+
---
38+
1239
## [1.9.0] - 2026-01-17
1340

1441
### Added
@@ -283,7 +310,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
283310

284311
---
285312

286-
[Unreleased]: https://github.com/Jeanball/Musivault/compare/v1.9.0...HEAD
313+
[Unreleased]: https://github.com/Jeanball/Musivault/compare/v1.10.0...HEAD
314+
[1.10.0]: https://github.com/Jeanball/Musivault/compare/v1.9.0...v1.10.0
287315
[1.9.0]: https://github.com/Jeanball/Musivault/compare/v1.8.0...v1.9.0
288316
[1.8.0]: https://github.com/Jeanball/Musivault/compare/v1.7.2...v1.8.0
289317
[1.7.2]: https://github.com/Jeanball/Musivault/compare/v1.7.1...v1.7.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.0
1+
1.10.0

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backend",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"main": "src/server.ts",
55
"scripts": {
66
"dev": "nodemon",

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "1.9.0",
4+
"version": "1.10.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --host",

frontend/public/CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
---
1111

12+
## [1.10.0] - 2026-03-20
13+
14+
### Added
15+
- Remove 'Random Picker' feature from README
16+
- Update Condition Grading feature note in README
17+
- Add multi-language support with initial translations
18+
- feat: Introduce a dedicated layout for shared collection pages, enabling dynamic rendering based on user authentication, and expose MongoDB port in the dev environment.
19+
- feat: Add direct format selection buttons on release page with confirmation modal and styling.
20+
- feat: Add manual album creation translations and update search mode labels across all supported languages.
21+
- style: Apply dynamic styling and border to album format and description badges.
22+
- feat: Make album tracklist collapsible, simplify "Add to collection" text, add modal blur styling, and remove About page footer.
23+
- feat: Add a loading placeholder with a music icon and a fade-in effect for album cover images in the collection grid view.
24+
- style: Improve tracklist summary icon size, color, and alignment on the album detail page.
25+
- feat: Add album search/filter functionality to the ArtistAlbumsPage.
26+
- feat: Redesign format selection buttons with hover effects and images, add a new informational alert, and improve confirmation modal layout.
27+
- feat: add 'black' color definition to color utility.
28+
- feat: Redesign artist album display from a grid of cards to a list-like layout with enhanced styling and hover effects.
29+
30+
### Changed
31+
- refactor: group master versions by common attributes for improved display and import Plus icon.
32+
- perf: Add lazy loading to image elements in collection views and album cards.
33+
34+
### Fixed
35+
- fix: Improve text wrapping and layout for format details within buttons and modal content, and refactor modal styling.
36+
37+
---
38+
1239
## [1.9.0] - 2026-01-17
1340

1441
### Added
@@ -283,7 +310,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
283310

284311
---
285312

286-
[Unreleased]: https://github.com/Jeanball/Musivault/compare/v1.9.0...HEAD
313+
[Unreleased]: https://github.com/Jeanball/Musivault/compare/v1.10.0...HEAD
314+
[1.10.0]: https://github.com/Jeanball/Musivault/compare/v1.9.0...v1.10.0
287315
[1.9.0]: https://github.com/Jeanball/Musivault/compare/v1.8.0...v1.9.0
288316
[1.8.0]: https://github.com/Jeanball/Musivault/compare/v1.7.2...v1.8.0
289317
[1.7.2]: https://github.com/Jeanball/Musivault/compare/v1.7.1...v1.7.2

frontend/public/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.0
1+
1.10.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "musivault",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "A beautiful web application to manage and explore your music collection",
55
"private": true,
66
"devDependencies": {

0 commit comments

Comments
 (0)