Skip to content

Commit

Permalink
Version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
basharovV committed Oct 23, 2024
1 parent af52617 commit 99b4508
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
14 changes: 13 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
### 📦 0.10.0

- **Artist's toolkit v2 (WIP)**. The songbook and scrapbook are now linked to user folders (configurable in settings). The Lyrics editor now includes chord support via the ChordMark format. Click on the lyrics view to toggle edit mode. Read more [here](https://slavbasharov.com/blog/musicat-progress-update).
- **macOS Now Playing (WIP)**. Playback info now shows up in the macOS now playing info center (only play/pause and track info works for now)
- **Mini-player updates (macOS)**. The mini-player is now shown on all workspaces (macOS). Also fixed issue where window controls on macOS were floating above the window after toggling miniplayer off.
- **Delete files from library**. You can now delete (move to trash/recycle bin) the original files on disk from the right-click track menu.
- **Album view options are now persisted**
- **Fixed playback when using a device with a smaller max buffer size than sample buffer**
- **Fixed compatibility with audio devices that have the same name but one is for input and another for output**
- **Fixed Wikipedia article mistmatch**. When opening the Wiki panel, you're less likely to see the wrong article now.
- **Fixed Memory leak**. There was an issue with rapidly climbing memory usage. Sorry about that!

### 📦 0.9.0

- **Tag support**. Sometimes playlists just aren't the right tool for the job, so now you can also organize and search your library by tags. Right click a track (or multiple) to edit tags. Click on any tag in the library to open up the new tag cloud. Select between AND/OR as the filter condition.
- **Wiki view**. Click on the artist name in the sidebar, or use the right-click track menu to open up the new Wikipedia article panel for an artist. The article view also shows connections to other artists/albums in your library.
- **Theme support**. Musicat now comes with some built-in themes! You can switch between them in settings. If you'd like to contribute a theme, please submit a PR with an updated [themes.ts](src/theming/themes.ts).
- **Collapsible sidebar / bottom bar mode**. You can now collapse the sidebar, which reveals the transport controls at the bottom in a new horizontal bar.
- **Switch audio device**. By default, Musicat follows the default system output device, but you can now select a different device to send the audio to. Note: This is still wonky on macOS.
- **Performance improvements**. Reduced RAM usage during import, and better scrolling response when jumping quickly in the library view.
- **Performance improvements**. Reduced RAM usage during import, and better scrolling response when jumping quickly in the library view.
- **Open audio file with Musicat (file association)**. You can now open any audio file on your system with Musicat, straight from your file explorer.
- **Tauri v2**. Migrated to Tauri v2.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "musicat",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "app"
version = "0.9.0"
version = "0.10.0"
description = "Musicat music player"
authors = ["you"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
}
},
"productName": "Musicat",
"version": "0.9.0",
"version": "0.10.0",
"identifier": "com.vbapps.musicat",
"plugins": {},
"app": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.linux.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
}
},
"productName": "Musicat",
"version": "0.9.0",
"version": "0.10.0",
"identifier": "com.vbapps.musicat",
"plugins": {},
"app": {
Expand Down

0 comments on commit 99b4508

Please sign in to comment.