Skip to content

Commit 0734802

Browse files
committed
chore: version 0.16.0
- added release notes
1 parent 3b31343 commit 0734802

File tree

8 files changed

+41
-46
lines changed

8 files changed

+41
-46
lines changed

RELEASE-NOTES.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
### 📦 0.16.0
2+
3+
#### New
4+
5+
- **New UI for Track Info**. The track info and tagger is less cluttered with the fresh tabbed interface (File Info | Metadata | Artwork | Enrichment).
6+
- Artwork can now be saved independenty of the tags, with better controls over embed vs. folder art.
7+
- In the Metadata tab, any pending changes are shown in a detailed summary when hovering over the "Save" button.
8+
- **Beets support**. You can point Musicat to your local [Beets](https://beets.io/) database, and it will use that instead of the built-in database. Songs, albums and map view will use data from Beets. At the moment this is read-only.
9+
- **New 3D globe view in Map view**. Map view is now available in both 2D and 3D views. The globe view can be shown as wireframe (country outlines) or Earth texture. Hovering over countries and playing works just like on the 2D map. There is also a new legend in the bottom right corner. More reason to add country data to your library!
10+
- **Chinese (Simplified) translation**. Also much improved coverage of other languages. Thanks [@Kwensiu](https://github.com/Kwensiu) for the contribution.
11+
- Artwork in sidebar is now collapsible, giving more vertical sidebar space. This setting is remembered across restarts.
12+
- **New Stats view**. The stats view is now composed of three panels - Summary, Genre Map, and Album Timeline. Both the genre map and timeline match the selected theme, and can be used to play music.
13+
14+
#### Improvements
15+
16+
- "New Smart Playlist" button in the sidebar
17+
- Added built-in "with stems" smart playlist
18+
19+
#### Fixes
20+
21+
- Fixed issues with resizing columns in the library
22+
- Fixed crash when playing playlist if a song is missing from db.
23+
- Fixed library highlight when typing into search box.
24+
- Fixed incorrect song playing in favourites tab #177. Thanks [s1dny](https://github.com/s1dny) for the contribution.
25+
126
### 📦 0.15.1
227

328
#### Fixes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "musicat",
33
"private": true,
4-
"version": "0.15.2",
4+
"version": "0.16.0",
55
"type": "module",
66
"scripts": {
77
"build": "vite build",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "Musicat"
4-
version = "0.15.2"
4+
version = "0.16.0"
55
description = "Musicat music player"
66
authors = ["you"]
77
license = "GPL-3.0-or-later"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
}
5555
},
5656
"productName": "Musicat",
57-
"version": "0.15.2",
57+
"version": "0.16.0",
5858
"identifier": "Musicat",
5959
"app": {
6060
"macOSPrivateApi": true,

src-tauri/tauri.linux.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444
},
4545
"productName": "Musicat",
46-
"version": "0.15.2",
46+
"version": "0.16.0",
4747
"identifier": "Musicat",
4848
"plugins": {},
4949
"app": {

src/lib/settings/ReleaseNotes.svelte

Lines changed: 9 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,19 @@
1919
div {
2020
height: auto;
2121
text-align: left;
22-
padding: 1em;
22+
padding: 1em 2em;
2323
color: rgb(218, 215, 215);
2424
position: relative;
2525
letter-spacing: 0.6px;
26+
:global(ul) {
27+
list-style-type: disc;
28+
padding-inline-start: 1.5em; // This creates the indent for every level
2629
30+
:global(ul) {
31+
list-style-type: circle; // Different bullet for sub-items
32+
margin-top: 0.5em;
33+
}
34+
}
2735
:global(li) {
2836
font-size: 1em;
2937
}
@@ -40,42 +48,4 @@
4048
letter-spacing: 0.7px;
4149
}
4250
}
43-
ul {
44-
/* border-radius: 5px; */
45-
/* max-height: 200px; */
46-
width: 100%;
47-
height: fit-content;
48-
color: rgb(225, 222, 222);
49-
font-size: 1em;
50-
padding: 0;
51-
margin: 0;
52-
53-
> h3 {
54-
position: sticky;
55-
top: 0;
56-
background-color: #333333;
57-
padding: 0.2em;
58-
margin: 0;
59-
z-index: 5;
60-
}
61-
section {
62-
padding: 1em 2em;
63-
i {
64-
opacity: 0.3;
65-
margin-left: 0.2em;
66-
font-size: 14px;
67-
}
68-
li,
69-
h3 {
70-
width: fit-content;
71-
text-align: left;
72-
}
73-
74-
li {
75-
margin-inline-start: 1em;
76-
text-align: left;
77-
margin-top: 0.6em;
78-
}
79-
}
80-
}
8151
</style>

0 commit comments

Comments
 (0)