Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Mar 6, 2023
1 parent dcb5309 commit 216d7e3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Table of Contents]
- [Unreleased](#unreleased)
- [3.0.0-beta.22](#300-beta22---2023-03-05)
- [3.0.0-beta.21](#300-beta21---2023-03-04)
- [3.0.0-beta.20](#300-beta20---2023-03-04)
- [3.0.0-beta.19](#300-beta19---2023-02-22)
Expand Down Expand Up @@ -35,12 +36,19 @@

## [Unreleased][]
### Added
### Changed
### Removed
### Fixed

## [3.0.0-beta.22] - 2023-03-05
### Added
- Last.fm: supports -full- tag retrieval from [WilB's Biography script](https://github.com/Wil-B/Biography). i.e. genres, styles, locale tags, etc. are added to the file tags on the submenus as available values. Bio tags state is displayed at tooltip, warning when tags are not found (usually requires some seconds).
- Last.fm: supports 'locale' tag retrieval from [World-Map-SMP](https://github.com/regorxxx/World-Map-SMP), independently of Bio panel. i.e. it looks at the local database for matches by artist (so it works even for artists not found by Bio panel, multi-value artists tags and artists manually tagged by user on the panel). Bio and World Map tag retrieval can coexist, duplicates are removed in any case.
- Last.fm: new similar artists sub-menu, to retrieve top tracks by a single selected similar artist. This is different to using the 'Current similar artists to' entry, which creates a playlist mixing all similar artists. Therefore, it's equivalent to using the 'Custom...\By Artist' entry for every single similar artist found.
- Last.fm: supports 'LASTFM_SIMILAR_ARTIST' tag retrieval from [foo_uie_biography](https://foobar2000.xrea.jp/?User+interface/UI+extension#kbe7a3bd), independently of Bio panel. Bio and foo_uie_biography tag retrieval can coexist, duplicates are removed in any case.
- Last.fm: supports 'SIMILAR ARTISTS SEARCHBYDISTANCE' tag retrieval from [Search by Distance-SMP](https://github.com/regorxxx/Search-by-Distance-SMP), independently of Bio panel. Duplicates are removed in any case when merged with other similar artists tags. This tag must be pre-calculated, since it's retrieved from files or database, and its based on similar artists from your library (instead of charts/popularity/other people's listening habits).
### Changed
- Last.fm: updated support for foo-last-list-smp v1.1 (previous version will not work).
- Last.fm: sub-menu tag lists are now split on columns by 8 items.
### Removed
### Fixed
Expand Down Expand Up @@ -812,7 +820,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.21...HEAD
[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.22...HEAD
[3.0.0-beta.22]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.21...v3.0.0-beta.22
[3.0.0-beta.21]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.20...v3.0.0-beta.21
[3.0.0-beta.20]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.19...v3.0.0-beta.20
[3.0.0-beta.19]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.18...v3.0.0-beta.19
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.0.0-beta.21
v3.0.0-beta.22
4 changes: 2 additions & 2 deletions buttons/toolbars/_buttons_toolbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//04/03/23
//05/03/23

/* Playlist Tools: Buttons Toolbar
Loads any button found on the buttons folder. Just load this file and add your desired buttons via R. Click.
Expand Down Expand Up @@ -40,7 +40,7 @@ var bLoadTags = true; // Note this must be added before loading helpers! See but
else {dependencies.forEach((file) => {include('buttons\\' + file);});}
}

try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0-beta.21', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons
try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0-beta.22', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons

let barProperties = {
name: ['Name of config json file', 'buttons_' + randomString(5)],
Expand Down
4 changes: 2 additions & 2 deletions buttons_toolbar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//04/03/23
//05/03/23

/* Playlist Tools: Buttons Toolbar
Loads any button found on the buttons folder. Just load this file and add your desired buttons via R. Click.
Expand Down Expand Up @@ -40,7 +40,7 @@ var bLoadTags = true; // Note this must be added before loading helpers! See but
else {dependencies.forEach((file) => {include('buttons\\' + file);});}
}

try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0-beta.21', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons
try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0-beta.22', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons

let barProperties = {
name: ['Name of config json file', 'buttons_' + randomString(5)],
Expand Down

0 comments on commit 216d7e3

Please sign in to comment.