diff --git a/README.md b/README.md index 4c1876a..42452d9 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ In the suggestion list you can jump back and forth between categories by pressin To play a suggestion immediately (not navigating to it), hold `ctrl` (windows/linux) or `cmd` (macOs) when selecting the suggestion. +It's also possible to navigate using a Spotify URI. Simply paste it in the power-bar and press enter to navigate to the URI destination. + ## Settings Settings for the power bar can be found on spotify's settings page. There are settings for the following things: * **Activation key combo**. Defaults are `alt+space` on MacOs, and `ctrl+space` on other operating systems. Can be changed to anything in to following format: `modifier+key`. A modifier key is one of the following: diff --git a/package.json b/package.json index cf5903f..a25b9ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "power-bar", - "version": "1.6.5", + "version": "1.7.0", "author": { "name": "jeroentvb", "url": "https://github.com/jeroentvb" diff --git a/src/constants/change-notes.ts b/src/constants/change-notes.ts index ca56f3f..8f33df6 100644 --- a/src/constants/change-notes.ts +++ b/src/constants/change-notes.ts @@ -1,5 +1,5 @@ const CHANGE_NOTES = ` -Handle adding other suggestion types to queue better. Supported types are tracks and albums. +You can now use a Spotify URI to navigate using power-bar. Paste a URI in the power-bar and press enter to navigate. `; export default CHANGE_NOTES;