Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Dec 17, 2023
1 parent ba2cc24 commit ba8cf80
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 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.7.0](#370---2023-12-17)
- [3.6.0](#360---2023-12-08)
- [3.5.0](#350---2023-11-28)
- [3.4.1](#341---2023-11-26)
Expand Down Expand Up @@ -57,6 +58,12 @@
## [Unreleased][]
### Added
### Changed
### Removed
### Fixed

## [3.7.0] - 2023-12-17
### Added
### Changed
- Macros: changed implementation to don't record entries called by other macros, just the parent; this ensures any action run by other macros is always run and up to date with any change at a later point. Also no double processing (due to recording of both the parent and child items).
- Macros: added a limit on the recursion within macros, not allowing infinite loops due to Macro A calling Macro B and Macro B calling Macro A at the same time.
- Helpers: updated helpers.
Expand Down Expand Up @@ -1138,7 +1145,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.6.0...HEAD
[Unreleased]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.7.0...HEAD
[3.7.0]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.6.0...v3.7.0
[3.6.0]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.5.0...v3.6.0
[3.5.0]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.4.1...v3.5.0
[3.4.1]: https://github.com/regorxxx/Playlist-Tools-SMP/compare/v3.4.0...v3.4.1
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.6.0
v3.7.0
4 changes: 2 additions & 2 deletions buttons/buttons_playlist_tools.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//08/12/23
//17/12/23

/*
Playlist Tools Menu
Expand All @@ -11,7 +11,7 @@
NOTE: 'on_mouse_lbtn_up(x, y)' is simply replaced with a button to call the menu.
*/

var version = '3.6.0';
var version = '3.7.0';

try {include('..\\helpers\\buttons_xxx.js');} catch (e) {include('helpers\\buttons_xxx.js');}
try {window.DefineScript('Playlist Tools: Button', {author:'regorxxx', version, features: {drag_n_drop: false}});} catch (e) {/* console.log('Playlist Tools Menu Button loaded.'); */} //May be loaded along other buttons
Expand Down

0 comments on commit ba8cf80

Please sign in to comment.