From 49f9af3f535d541b2fa524b6af7fea529bc5d4ca Mon Sep 17 00:00:00 2001 From: Slav Basharov Date: Sun, 8 Sep 2024 16:09:12 +0200 Subject: [PATCH] Version 0.9.0 update + file opened URL handler fix --- RELEASE-NOTES.md | 6 +++--- package.json | 2 +- src-tauri/tauri.conf.json | 2 +- src-tauri/tauri.linux.conf.json | 2 +- src/App.svelte | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 2cebbec..f9576c3 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,11 +1,11 @@ ### 📦 0.9.0 -- **Tag support**. Sometimes playlists just aren't the right tool for the job, so now you can also organize 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 to open up the new Wikipedia article panel. The article view also shows connections to other artists/albums in your library. +- **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 to the start/end of the library. +- **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. diff --git a/package.json b/package.json index 9f00ea7..92a9aa9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "musicat", "private": true, - "version": "0.8.0", + "version": "0.9.0", "type": "module", "scripts": { "dev": "vite --host", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 808add0..77a5b6e 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -50,7 +50,7 @@ } }, "productName": "Musicat", - "version": "0.8.0", + "version": "0.9.0", "identifier": "com.vbapps.musicat", "plugins": {}, "app": { diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json index 808add0..77a5b6e 100644 --- a/src-tauri/tauri.linux.conf.json +++ b/src-tauri/tauri.linux.conf.json @@ -50,7 +50,7 @@ } }, "productName": "Musicat", - "version": "0.8.0", + "version": "0.9.0", "identifier": "com.vbapps.musicat", "plugins": {}, "app": { diff --git a/src/App.svelte b/src/App.svelte index da4a271..974c511 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -126,7 +126,7 @@ window["onFileOpen"] = (urls) => { console.log("onFileOpen: ", urls); - audioPlayer.handleOpenedUrls(window.openedUrls); + audioPlayer.handleOpenedUrls(urls); }; unlistenFileDrop = await appWindow.onDragDropEvent((evt) => {