Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Jul 21, 2023
1 parent 37b0165 commit 900a12d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
13 changes: 12 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.30](#300-beta30---2023-07-21)
- [3.0.0-beta.29](#300-beta29---2023-06-29)
- [3.0.0-beta.28](#300-beta28---2023-06-28)
- [3.0.0-beta.27](#300-beta27---2023-06-27)
Expand Down Expand Up @@ -47,6 +48,15 @@
### Removed
### Fixed

## [3.0.0-beta.30] - 2023-07-21
### Added
- Selection manipulation\Shuffle: new sorting bias settings. Key (sorted from 12A to 1B), Key 6A centered (starting from 6A). Using these is like merging Harmonic Mix (consecutive tracks should have similar keys) and Smart Shuffle.
- Selection manipulation\Group: new tool to group tracks by TF without respecting the original sorting. It may be used to listen to all tracks of a random album played in a shuffled order, then all of another album (chosen randomly), ...
### Changed
### Removed
### Fixed
- Selection manipulation\Shuffle: sorting bias setting not being applied on selection manipulation tool (thus always using 'random').

## [3.0.0-beta.29] - 2023-06-29
### Added
### Changed
Expand Down Expand Up @@ -939,7 +949,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.29...HEAD
[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.30...HEAD
[3.0.0-beta.30]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.29...v3.0.0-beta.30
[3.0.0-beta.29]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.28...v3.0.0-beta.29
[3.0.0-beta.28]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.27...v3.0.0-beta.28
[3.0.0-beta.27]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.26...v3.0.0-beta.27
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.29
v3.0.0-beta.30
2 changes: 1 addition & 1 deletion buttons/toolbars/_buttons_toolbar.js
Original file line number Diff line number Diff line change
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.29', 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.30', 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
2 changes: 1 addition & 1 deletion buttons_toolbar.js
Original file line number Diff line number Diff line change
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.29', 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.30', 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 900a12d

Please sign in to comment.