Merge branch 'master' into #306

This commit is contained in:
UKDTOM 2021-04-04 22:52:25 +02:00
commit f8f0f4c667
3 changed files with 15 additions and 3 deletions

View file

@ -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

View file

@ -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",

View file

@ -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', '-')