diff --git a/CHANGELOG.md b/CHANGELOG.md index aaee362..57dc13a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ * [#456 ET Custom levels doesn't use include params](https://github.com/WebTools-NG/WebTools-NG/issues/456) * [#478 Refactor time and status for ET Module](https://github.com/WebTools-NG/WebTools-NG/issues/478) * [#463 plex.tv add friendly name](https://github.com/WebTools-NG/WebTools-NG/issues/463) +* [#468 Add "Last Viewed at" as an available field for TV Show Episode exporting](https://github.com/WebTools-NG/WebTools-NG/issues/468) ## V0.3.15 (20220413) diff --git a/src/components/modules/ExportTools/defs/def-Fields.json b/src/components/modules/ExportTools/defs/def-Fields.json index 6959dac..d9be542 100644 --- a/src/components/modules/ExportTools/defs/def-Fields.json +++ b/src/components/modules/ExportTools/defs/def-Fields.json @@ -1069,6 +1069,12 @@ "call": 1, "type": "string" }, + "Show Title": + { + "key": "$.parentTitle", + "call": 1, + "type": "string" + }, "Similar": { "key": "$.Similar[*]", diff --git a/src/components/modules/ExportTools/defs/def-Show.json b/src/components/modules/ExportTools/defs/def-Show.json index 4c61d9f..aab1a75 100644 --- a/src/components/modules/ExportTools/defs/def-Show.json +++ b/src/components/modules/ExportTools/defs/def-Show.json @@ -48,6 +48,7 @@ "Rating", "Release Date", "Roles", + "Show Title", "Similar", "Sort title", "Studio",