Skip to content

Commit 2209a97

Browse files
committed
chore: version 0.17.0
- Small fix for bottom bar overflowing at smaller breakpoint
1 parent 458a861 commit 2209a97

8 files changed

Lines changed: 34 additions & 10 deletions

File tree

RELEASE-NOTES.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
### 📦 0.17.0
2+
3+
#### New
4+
5+
- **Equalizer**. Open the new Equalizer from the bottom bar. The equalizer is based on Winamp, along with it's classic presets: Rock, Techno, Classical, Full Bass, Dance, Laptop/Headphones and Large Hall. Use one of the presets or just fiddle with the sliders to create your Custom config. Your settings will be remembered across restarts. When the equalizer is enabled, you'll see an outline around the button.
6+
- **Local LRC lyrics**. Musicat now also looks for a local .lrc file for the lyrics view. The LRC file must be in the same folder as the audio file, and the filename must match.
7+
- **Audio visualizer v2 + new frequency mode**.
8+
- The audio visualizer has been moved to the sidebar, above the track info.
9+
- Click to switch modes between: Oscilloscope (shows waveform slice of time), and the **new Frequency mode** (shows frequency bars)
10+
- **(macOS) Follow system theme**. Toggle this option in settings to follow the system theme, and automatically switch the app theme. Currently this will only use the "Light" and "Dark" themes.
11+
12+
#### Imrovements
13+
14+
- Artwork and track info in the sidebar is now animated when switching tracks
15+
- Track info in sidebar scrolling text is now applied to title, album and artist.
16+
- macOS: Using system vibrancy effect on the window, and displaying native window borders
17+
- macOS: When switching themes, the macOS window theme will switch to match the light/dark mode.
18+
19+
#### Fixes
20+
21+
- Fixed "undefined" smart playlist title when closing editor
22+
- Fixed visualizer sometimes not reconnecting
23+
- Fixed empty placeholder view flashing when navigating to library
24+
125
### 📦 0.16.0
226

327
#### New

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.16.0",
4+
"version": "0.17.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.16.0"
4+
version = "0.17.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.16.0",
57+
"version": "0.17.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.16.0",
46+
"version": "0.17.0",
4747
"identifier": "Musicat",
4848
"plugins": {},
4949
"app": {

src/App.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,13 +299,13 @@
299299
showMiniPlayer ||
300300
(innerHeight >= 650 &&
301301
$isSidebarOpen &&
302-
((!$isWikiOpen && innerWidth >= 660) ||
302+
((!$isWikiOpen && innerWidth >= 690) ||
303303
($isWikiOpen &&
304304
((!showQueue && innerWidth >= 880) ||
305305
(showQueue && innerWidth >= 1000)))));
306306
$: showWiki =
307307
$isWikiOpen &&
308-
((!showQueue && innerWidth >= 500) || (showQueue && innerWidth >= 660));
308+
((!showQueue && innerWidth >= 500) || (showQueue && innerWidth >= 690));
309309
$: isQueueAutoWidth = !showMiniPlayer && innerWidth < 520;
310310
$: isSplitView = showMainPanel && showQueue && innerWidth < 520;
311311
@@ -431,7 +431,7 @@
431431
onClick={() => {
432432
if (
433433
!showMiniPlayer &&
434-
(innerWidth < 660 || innerHeight < 650)
434+
(innerWidth < 690 || innerHeight < 650)
435435
) {
436436
$isSidebarFloating = true;
437437
} else {

0 commit comments

Comments
 (0)