How to know season end episode automatically?
How to know season end episode automatically?
i wanna know is that anyway to add end in last episode of the season automatically?
Re: How to know season end episode automatically?
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?
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?
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?
Thanks for all i remove (-) and its working ....