diff --git a/CHANGELOG.md b/CHANGELOG.md index 42baa36..da6537f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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. @@ -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 diff --git a/VERSION b/VERSION index c03b60b..ac47b43 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.6.0 \ No newline at end of file +v3.7.0 \ No newline at end of file diff --git a/buttons/buttons_playlist_tools.js b/buttons/buttons_playlist_tools.js index 4d40547..daca9f4 100644 --- a/buttons/buttons_playlist_tools.js +++ b/buttons/buttons_playlist_tools.js @@ -1,5 +1,5 @@ 'use strict'; -//08/12/23 +//17/12/23 /* Playlist Tools Menu @@ -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