Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Jun 27, 2023
1 parent 5abda98 commit 5ac4dc9
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.28](#300-beta28---2023-06-28)
- [3.0.0-beta.27](#300-beta27---2023-06-27)
- [3.0.0-beta.26](#300-beta26---2023-05-08)
- [3.0.0-beta.25](#300-beta25---2023-03-09)
Expand Down Expand Up @@ -45,6 +46,13 @@
### Removed
### Fixed

## [3.0.0-beta.28] - 2023-06-28
### Added
### Changed
### Removed
### Fixed
- Wrong property value for 'Duplicates RegExp title matching?.

## [3.0.0-beta.27] - 2023-06-27
### Added
- Global Forced Query: 'Top Rated Tracks from...', 'Most played Tracks from...' and 'Most played Tracks' are now also added to the list of toogable forced query application. This addition should cover all existing tools where the forced query is applicable.
Expand Down Expand Up @@ -923,7 +931,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.27...HEAD
[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.28...HEAD
[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
[3.0.0-beta.26]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.25...v3.0.0-beta.26
[3.0.0-beta.25]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.0.0-beta.24...v3.0.0-beta.25
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.27
v3.0.0-beta.28
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';
//05/04/23
//28/06/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.27', 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.28', 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';
//05/04/23
//28/06/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.27', 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.28', 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 5ac4dc9

Please sign in to comment.