Skip to content
This repository was archived by the owner on Nov 29, 2025. It is now read-only.

Commit 0ecf33e

Browse files
committed
Bump version.
1 parent d056147 commit 0ecf33e

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [Table of Contents]
44
- [Unreleased](#unreleased)
5+
- [1.0.0](#100---2023-07-28)
56
- [1.0.0-beta.11](#100-beta11---2023-06-29)
67
- [1.0.0-beta.10](#100-beta10---2023-06-27)
78
- [1.0.0-beta.9](#100-beta9---2023-05-08)
@@ -17,8 +18,15 @@
1718
## [Unreleased][]
1819
### Added
1920
### Changed
21+
### Removed
22+
### Fixed
23+
24+
## [1.0.0] - 2023-07-28
25+
### Added
26+
### Changed
2027
- Configuration: ALBUM ARTIST is now used instead of ARTIST by default (on new installations). This ensures better compatibility with classical music, where the artist is the actual performer but the album artist is the original composer/artist. To apply the change on existing installations, delete '[foobar_profile]\js_data\presets\global\globQuery.json' and '[foobar_profile]\foobar2000\js_data\presets\global\globTags.json' files. Further configuration may be needed via menus.
2128
- Helpers: updated helpers.
29+
- Console: remove unnecessary logging retrieving user response.
2230
### Removed
2331
### Fixed
2432
- Crash using recommended recordings by user.
@@ -157,7 +165,8 @@
157165
### Removed
158166
### Fixed
159167

160-
[Unreleased]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0-beta.110...HEAD
168+
[Unreleased]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0...HEAD
169+
[1.0.0]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0-beta.11...v1.0.0
161170
[1.0.0-beta.11]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0-beta.10...v1.0.0-beta.11
162171
[1.0.0-beta.10]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0-beta.9...v1.0.0-beta.10
163172
[1.0.0-beta.9]: https://github.com/regorxxx/ListenBrainz-SMP/compare/v1.0.0-beta.8...v1.0.0-beta.9

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.0-beta.11
1+
v1.0.0

buttons/toolbars/_buttons_toolbar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
//29/06/23
2+
//28/07/23
33

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

43-
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
43+
try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons
4444

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

buttons_toolbar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
//29/06/23
2+
//28/07/23
33

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

43-
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
43+
try {window.DefineScript('Playlist Tools: Buttons Bar', {author:'XXX', version: '3.0.0', features: {drag_n_drop: false}});} catch (e) {} //May be loaded along other buttons
4444

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

0 commit comments

Comments
 (0)