mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-26 13:00:18 +00:00
Merge pull request #318 from WebTools-NG/#316-Test-all-defined-fields-against-episode-export
Fixed #316
This commit is contained in:
commit
ff83dcc915
4 changed files with 19 additions and 3 deletions
|
@ -8,6 +8,7 @@
|
|||
* [#311 Test all defined fields against movie export](https://github.com/WebTools-NG/WebTools-NG/issues/311)
|
||||
* [#312 IMDB and IMDB link broken](https://github.com/WebTools-NG/WebTools-NG/issues/312)
|
||||
* [#315 Test all defined fields against show export](https://github.com/WebTools-NG/WebTools-NG/issues/315)
|
||||
* [#316 Test all defined fields against episode export](https://github.com/WebTools-NG/WebTools-NG/issues/316)
|
||||
|
||||
## V0.2.02
|
||||
|
||||
|
|
Binary file not shown.
|
@ -38,6 +38,8 @@
|
|||
"Key",
|
||||
"Series Title",
|
||||
"Added",
|
||||
"Art url",
|
||||
"Audience Rating",
|
||||
"Audio Stream Audio Channel Layout",
|
||||
"Audio Stream Bit Depth",
|
||||
"Audio Stream Bitrate Mode",
|
||||
|
@ -57,6 +59,9 @@
|
|||
"Audio Stream Sampling Rate",
|
||||
"Audio Stream Selected",
|
||||
"Audio Stream Title",
|
||||
"Chapter Count",
|
||||
"Chapter Source",
|
||||
"Chapter Title",
|
||||
"Content Rating",
|
||||
"Deleted",
|
||||
"Directors",
|
||||
|
@ -75,6 +80,7 @@
|
|||
"Media Container",
|
||||
"Media Duration",
|
||||
"Media Height",
|
||||
"Media Id",
|
||||
"Media Title",
|
||||
"Media Video Codec",
|
||||
"Media Video FrameRate",
|
||||
|
@ -82,6 +88,7 @@
|
|||
"Media Video Resolution",
|
||||
"Media Width",
|
||||
"MetaData Language",
|
||||
"Original Title",
|
||||
"Part Accessible",
|
||||
"Part Container",
|
||||
"Part Deep Analysis Version",
|
||||
|
@ -90,6 +97,8 @@
|
|||
"Part File Combined",
|
||||
"Part File Path",
|
||||
"Part File",
|
||||
"Part has Thumbnail",
|
||||
"Part Id",
|
||||
"Part Indexed",
|
||||
"Part Optimized for Streaming",
|
||||
"Part Size as Bytes",
|
||||
|
@ -98,11 +107,13 @@
|
|||
"Poster url",
|
||||
"Rating",
|
||||
"Release Date",
|
||||
"Roles",
|
||||
"Part Required Bandwidths",
|
||||
"Season",
|
||||
"Sort title",
|
||||
"Subtitle Stream Codec",
|
||||
"Subtitle Stream Codec ID",
|
||||
"Subtitle Stream Default",
|
||||
"Subtitle Stream Forced",
|
||||
"Subtitle Stream Format",
|
||||
"Subtitle Stream Header Compression",
|
||||
|
@ -115,9 +126,12 @@
|
|||
"Summary",
|
||||
"Title",
|
||||
"TMDB ID",
|
||||
"TMDB Link",
|
||||
"TVDB ID",
|
||||
"Updated",
|
||||
"User Rating",
|
||||
"Video Stream Anamorphic",
|
||||
"Video Stream Pixel Aspect Ratio",
|
||||
"Video Stream Bit Depth",
|
||||
"Video Stream Bitrate",
|
||||
"Video Stream Cabac",
|
||||
|
@ -143,6 +157,7 @@
|
|||
"Video Stream Ref Frames",
|
||||
"Video Stream Required Bandwidths",
|
||||
"Video Stream Scan Type",
|
||||
"Video Stream Stream Identifier",
|
||||
"Video Stream Title",
|
||||
"Video Stream Width",
|
||||
"Writers",
|
||||
|
|
|
@ -731,7 +731,7 @@ const excel2 = new class Excel {
|
|||
break;
|
||||
}
|
||||
strStart = val.substring(start);
|
||||
end = strStart.indexOf("-");
|
||||
end = strStart.indexOf(wtconfig.get('ET.ArraySep'));
|
||||
result = ''
|
||||
if (end == -1)
|
||||
{ result = strStart.substring(7) }
|
||||
|
@ -752,7 +752,7 @@ const excel2 = new class Excel {
|
|||
break;
|
||||
}
|
||||
strStart = val.substring(start);
|
||||
end = strStart.indexOf("-");
|
||||
end = strStart.indexOf(wtconfig.get('ET.ArraySep'));
|
||||
result = ''
|
||||
if (end == -1)
|
||||
{ result = strStart.substring(7) }
|
||||
|
@ -768,7 +768,7 @@ const excel2 = new class Excel {
|
|||
}
|
||||
start = val.indexOf("tmdb://");
|
||||
strStart = val.substring(start);
|
||||
end = strStart.indexOf("-");
|
||||
end = strStart.indexOf(wtconfig.get('ET.ArraySep'));
|
||||
result = ''
|
||||
if (end == -1)
|
||||
{ result = strStart.substring(7) }
|
||||
|
|
Loading…
Reference in a new issue