Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
regorxxx committed Jul 24, 2024
1 parent b8e920b commit 7aa6ab8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Table of Contents]
- [Unreleased](#unreleased)
- [3.14.0](#3130---2024-07-24)
- [3.13.0](#3130---2024-03-21)
- [3.12.0](#3120---2024-03-15)
- [3.11.0](#3110---2024-03-04)
Expand Down Expand Up @@ -48,6 +49,12 @@

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

## [3.14.0] - 2024-07-24
### Added
- UI: header color is now configurable.
- UI: header size is now configurable (full panel/map size).
- UI: added album art caching for panel background whenever selecting/playing track changes but belongs to the same album. It checks for same album name and parent directory.
Expand All @@ -63,7 +70,6 @@
- UI: locale tag not retrieved in some cases from bio panel due to tag name case not matching.
- UI: minor UI refresh fixes.
- Configuration: .json files at 'foobar2000\js_data\presets\global' not being saved with the calculated properties based on user values from other files.

## [3.13.0] - 2024-03-21
### Added
### Changed
Expand Down Expand Up @@ -552,7 +558,8 @@
### Removed
### Fixed

[Unreleased]: https://github.com/regorxxx/World-Map-SMP/compare/v3.13.0...HEAD
[Unreleased]: https://github.com/regorxxx/World-Map-SMP/compare/v3.14.0...HEAD
[3.14.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.13.0...v3.14.0
[3.13.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.12.0...v3.13.0
[3.12.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.11.0...v3.12.0
[3.11.0]: https://github.com/regorxxx/World-Map-SMP/compare/v3.10.0...v3.11.0
Expand Down
4 changes: 2 additions & 2 deletions world_map.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
//09/06/24
//27/07/24

/*
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.13.0', features: { drag_n_drop: false } }); }
if (!window.ScriptInfo.PackageId) { window.DefineScript('World Map', { author: 'regorxxx', version: '3.14.0', features: { drag_n_drop: false } }); }

include('helpers\\helpers_xxx.js');
/* global checkCompatible:readable, globQuery:readable, folders:readable, globFonts:readable, globSettings:readable, clone:readable, isPortable:readable, checkUpdate:readable, debounce:readable */
Expand Down

0 comments on commit 7aa6ab8

Please sign in to comment.