Merge branch 'master' of github.com:WebTools-NG/WebTools-NG

This commit is contained in:
ukdtom 2021-01-15 22:09:05 +01:00
commit 71fd0b049a
8 changed files with 20 additions and 120 deletions

View file

@ -1,5 +1,11 @@
# ![Logo](https://github.com/WebTools-NG/WebTools-NG/blob/master/src/assets/WebTools-48x48.png) WebTools-ng Change log
## V0.1.11
**Note**: This version is an Alpha version, that is not made public
* [#214 Adv. Settings doesn't report correct settings](https://github.com/WebTools-NG/WebTools-NG/issues/214)
## V0.1.10
**Note**: This version is an Alpha version, that is not made public

View file

@ -1,7 +1,7 @@
{
"name": "webtools-ng",
"productName": "WebTools-NG",
"version": "0.1.10",
"version": "0.1.11",
"description": "WebTools Next Generation 4 Plex",
"author": "dane22 & CPSO",
"license": "MPL-2.0",

View file

@ -1,56 +0,0 @@
{
"ratingKey":"2148",
"key":"/library/metadata/2148",
"parentRatingKey":"2097",
"grandparentRatingKey":"2096",
"guid":"com.plexapp.agents.thetvdb://296762/3/8?lang=en",
"parentGuid":"com.plexapp.agents.thetvdb://296762/3?lang=en",
"grandparentGuid":"com.plexapp.agents.thetvdb://296762?lang=en",
"type":"episode",
"title":"Crisis Theory",
"grandparentKey":"/library/metadata/2096",
"parentKey":"/library/metadata/2097",
"grandparentTitle":"Westworld",
"parentTitle":"Season 3",
"contentRating":"TV-MA",
"summary":"Time to face the music.",
"index":8,
"parentIndex":3,
"year":2020,
"thumb":"/library/metadata/2148/thumb/1588809708",
"art":"/library/metadata/2096/art/1588809708",
"parentThumb":"/library/metadata/2097/thumb/1588809708",
"grandparentThumb":"/library/metadata/2096/thumb/1588809708",
"grandparentArt":"/library/metadata/2096/art/1588809708",
"grandparentTheme":"/library/metadata/2096/theme/1588809708",
"duration":4634642,
"originallyAvailableAt":"2020-05-03",
"addedAt":1588809667,
"updatedAt":1588809708,
"deletedAt":1590192212,
"Media":[
{
"id":1980,"duration":4634642,"bitrate":5602,"width":1280,
"height":720,"aspectRatio":1.78,"audioChannels":6,
"audioCodec":"eac3","videoCodec":"h264",
"videoResolution":"720","container":"mkv",
"videoFrameRate":"24p","videoProfile":"high",
"deletedAt":1590192212,
"Part":[
{
"id":1990,
"key":"/library/parts/1990/1588792405/file.mkv",
"duration":4634642,
"file":"/share/CACHEDEV1_DATA/video/new/shows/Westworld (2016)/Season 3/Westworld.S03E08.WEBDL-720p.mkv",
"size":3245323033,
"container":"mkv",
"videoProfile":"high"
}
]
}
],
"Writer":[
{"tag":"Denise Thé"},
{"tag":"Jonathan Nolan"}
]
}

View file

@ -1,50 +0,0 @@
{
"ratingKey":"1653",
"key":"/library/metadata/1653",
"parentRatingKey":"1643",
"grandparentRatingKey":"1642",
"guid":"com.plexapp.agents.thetvdb://356202/1/10?lang=en",
"parentGuid":"com.plexapp.agents.thetvdb://356202/1?lang=en",
"grandparentGuid":"com.plexapp.agents.thetvdb://356202?lang=en",
"type":"episode","title":"A City Upon a Hill",
"titleSort":"City Upon a Hill",
"grandparentKey":"/library/metadata/1642",
"parentKey":"/library/metadata/1643",
"grandparentTitle":"For All Mankind",
"parentTitle":"Season 1",
"contentRating":"TV-MA",
"summary":"Ed handles a trespasser. Ellen and Deke chart a new course without Mission Control.",
"index":10,
"parentIndex":1,
"year":2019,
"thumb":"/library/metadata/1653/thumb/1577660763",
"art":"/library/metadata/1642/art/1577660764",
"parentThumb":"/library/metadata/1643/thumb/1577660764",
"grandparentThumb":"/library/metadata/1642/thumb/1577660764",
"grandparentArt":"/library/metadata/1642/art/1577660764",
"duration":4563104,
"originallyAvailableAt":"2019-12-20",
"addedAt":1577227543,
"updatedAt":1577660763,
"Media":[
{
"id":1506,"duration":4563104,"bitrate":4698,"width":1356,"height":678,
"aspectRatio":1.85,"audioChannels":6,"audioCodec":"eac3",
"videoCodec":"h264","videoResolution":"720","container":"mkv",
"videoFrameRate":"24p","videoProfile":"high",
"Part":[
{
"id":1516,"key":"/library/parts/1516/1577227543/file.mkv",
"duration":4563104,
"file":"/share/CACHEDEV1_DATA/video/shows/For All Mankind/Season 01/For.All.Mankind.S01E10.iNTERNAL.720p.WEB.H264-AMRAP.mkv",
"size":2679942218,"container":"mkv","indexes":"sd",
"videoProfile":"high"
}
]
}
],
"Writer":[
{"tag":"Ben Nedivi"},
{"tag":"Matt Wolpert"}
]
}

View file

@ -153,26 +153,25 @@
},
tblRowClicked(record) {
// Edit Setting
log.debug(`Edit Setting: ${record.name}`);
log.debug(`Edit Setting: ${record.name} with a def. setting of ${record.default} and current setting as ${record.value}`);
this.defSetting = record.default;
this.curSetting = record.value;
if (!record.default)
{
this.defSetting = 'false';
}
else if (record.value)
{
this.curSetting = 'true';
}
this.defSetting = '';
}
else{
this.defSetting = record.default;
}
if (!record.value)
{
this.curSetting = 'false';
}
else if (record.value)
{
this.curSetting = 'true';
}
if (record.type == 'bool'){
this.curSetting = 'false'
}
else {
this.curSetting = '';
}
}
else{
this.curSetting = record.value;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1 @@