Page 1 of 1

How to know season end episode automatically?

Posted: 21 Aug 2022, 04:43
by blackbht
i wanna know is that anyway to add end in last episode of the season automatically?

Re: How to know season end episode automatically?

Posted: 22 Aug 2022, 10:39
by rednoah
e.g. if the episode at hand is the last episode of the season at hand, then add [END OF SEASON] to the file name via your custom format:

Code: Select all

{ if (episode == episodelist.findAll{ s == it.season }.last()) ' [END OF SEASON]' }

Re: How to know season end episode automatically?

Posted: 23 Aug 2022, 12:30
by kim
e.g.
[ENDED]

Code: Select all

{ if (info.status != 'Continuing' && info.status != 'Returning Series') " [${info.status.upper()}]"}

Re: How to know season end episode automatically?

Posted: 26 Aug 2022, 07:07
by blackbht

Code: Select all

{ny} - {genres} - {country} - {rating} - {vf} - {hd} - { if (info.status != 'Continuing' && info.status != 'Returning Series') " [${info.status.upper()}]"}

Code: Select all

{ny} - {genres} - {country} - {rating} - {vf} - {hd} - { if (episode == episodelist.findAll{ s == it.season }.last()) ' [END OF SEASON]' }

i am using like this and nothing shown in last episode of the season ..

Re: How to know season end episode automatically?

Posted: 26 Aug 2022, 07:24
by blackbht
Thanks for all i remove (-) and its working ....