e.g. highest episode number:
Format: Select all
{ episodelist.absolute.max() }
e.g. series years from the airdate of the first episode to the airdate of the last episode:
Format: Select all
{ episodelist.airdate.year.bounds().join('-') }
e.g. primaryTitle (i.e. AniDB x-jat series name for Anime; different seasons may have different AniDB series names) of the first episode / first season:
Format: Select all
{ episodelist[0].primaryTitle }
e.g. use {episodelist} to mark the final episode in each season:
Format: Select all
{ plex % { episode == episodelist.findAll{ s == it.s }.episode.last() ? ' [END OF SEASON]' : null } }
e.g. use {episodelist} and {model} to mark the series folder as complete if all known episodes of a given show are being processed in the current batch:
Format: Select all
{ plex * { model.episode.containsAll(episodelist.episode) ? ' [complete]' : ' [incomplete]' } }