diff --git a/CHANGELOG.md b/CHANGELOG.md index 86aea4b..4a2ce2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ # ![Logo](https://github.com/WebTools-NG/WebTools-NG/blob/master/src/assets/WebTools-48x48.png) WebTools-ng Change log +## V0.3.4 + +* [#306 Export posters and Art](https://github.com/WebTools-NG/WebTools-NG/issues/306) + ## V0.3.3 **Note**: This version is an Beta version -* [#306 Export posters and Art](https://github.com/WebTools-NG/WebTools-NG/issues/306) - +* [#338 Config file is missing entries for playlist and info export](https://github.com/WebTools-NG/WebTools-NG/issues/338) ## V0.3.2 diff --git a/package.json b/package.json index 83b3e94..817c5fc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "webtools-ng", "productName": "WebTools-NG", - "version": "0.3.3", + "version": "0.3.4", "description": "WebTools Next Generation 4 Plex", "author": "dane22 & CPSO", "license": "MPL-2.0", diff --git a/src/components/modules/General/wtutils.js b/src/components/modules/General/wtutils.js index 78f4efe..fbc73b5 100644 --- a/src/components/modules/General/wtutils.js +++ b/src/components/modules/General/wtutils.js @@ -280,6 +280,15 @@ const wtutils = new class WTUtils { if ( wtconfig.get('PMS.ContainerSize.album', 'N/A') == 'N/A' ){ wtconfig.set('PMS.ContainerSize.album', 20) } + if ( wtconfig.get('PMS.ContainerSize.playlist', 'N/A') == 'N/A' ){ + wtconfig.set('PMS.ContainerSize.playlist', 20) + } + if ( wtconfig.get('PMS.ContainerSize.libraryInfo', 'N/A') == 'N/A' ){ + wtconfig.set('PMS.ContainerSize.libraryInfo', 20) + } + if ( wtconfig.get('PMS.ContainerSize.playlistInfo', 'N/A') == 'N/A' ){ + wtconfig.set('PMS.ContainerSize.playlistInfo', 20) + } // ET Settings if ( wtconfig.get('ET.ArraySep', 'N/A') == 'N/A' ){ wtconfig.set('ET.ArraySep', '-')