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 695aa53 commit 824eef4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 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.9.0](#390---2023-12-17)
- [3.8.0](#380---2023-12-11)
- [3.7.0](#370---2023-12-08)
- [3.6.0](#360---2023-11-28)
Expand Down Expand Up @@ -43,6 +44,12 @@

## [Unreleased][]
### Added
### Changed
### Removed
### Fixed

## [3.9.0] - 2023-12-17
### Added
- UI: added color names to background color settings.
- UI: added transparency settings for map image.
### Changed
Expand Down Expand Up @@ -486,7 +493,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/World-Map-SMP/compare/v3.8.0...HEAD
[Unreleased]: https://github.com/regorxxx/World-Map-SMP/compare/v3.9.0...HEAD
[3.9.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.8.0...v3.9.0
[3.8.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.7.0...v3.8.0
[3.7.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.6.0...v3.7.0
[3.6.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.5.0...v3.6.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.8.0
v3.9.0
6 changes: 3 additions & 3 deletions world_map.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//13/12/23
//17/12/23

/*
World Map (REQUIRES WilB's Biography Mod script for online tags!!!)
Expand Down Expand Up @@ -42,7 +42,7 @@
- helpers\map_xxx.js (arbitrary map object)
*/

if (!window.ScriptInfo.PackageId) {window.DefineScript('World Map', {author:'regorxxx', version: '3.8.0', features: {drag_n_drop: false}});}
if (!window.ScriptInfo.PackageId) {window.DefineScript('World Map', {author:'regorxxx', version: '3.9.0', features: {drag_n_drop: false}});}
include('helpers\\helpers_xxx.js');
include('helpers\\helpers_xxx_prototypes.js');
include('helpers\\helpers_xxx_properties.js');
Expand Down Expand Up @@ -72,7 +72,7 @@ const modifiers = [ // Easily expandable. Used at helpers and menu too
const worldMap_properties = {
mapTag : ['Tag name or TF expression to read artist\'s country', '$meta(LOCALE LAST.FM,$sub($meta_num(LOCALE LAST.FM),1))', {func: isString}, '$meta(locale last.fm,$sub($meta_num(locale last.fm),1))'],
imageMapPath : ['Path to your own world map (mercator projection)', '', {func: isStringWeak}, ''],
imageMapAlpha : ['Map image transparency', 191, {func: isInt, range: [[0, 255]]}, 191],
imageMapAlpha : ['Map image transparency', 217, {func: isInt, range: [[0, 255]]}, 217],
iWriteTags : ['When used along Biography script, tags may be written to files (if not present)', 0, {func: isInt, range: [[0, 2]]}, 0],
writeToTag : ['Tag name to write artist\'s country', 'Locale Last.fm', {func: isString}, 'LOCALE LAST.FM'],
selection : ['Follow selection or playback? (must match Biography script!)', selMode[0], {eq: selMode}, selMode[0]],
Expand Down

0 comments on commit 824eef4

Please sign in to comment.