Search found 2 matches

by n0xew
01 Aug 2015, 15:48
Forum: Scripting and Automation
Topic: SxE to Absolute in Groovy
Replies: 3
Views: 3441

Re: SxE to Absolute in Groovy

Thanks for the quick answer! 1) Well I did this, quite dirty but I think it should work for most of my needs : def episode_number = parseEpisodeNumber(it).toString().replaceAll('x', 'E') if (episode_number.length() < 5){ episode_number = 'S0' + episode_number }else{ episode_number = 'S' + episode ...
by n0xew
01 Aug 2015, 13:41
Forum: Scripting and Automation
Topic: SxE to Absolute in Groovy
Replies: 3
Views: 3441

SxE to Absolute in Groovy

Hi! First thing, thanks for this amazing software and all support that come with it! I now come to ask for some help, just a minor thing not really an issue. I wrote a simplified script based on your renall script, to renall files (even if I call it after every downloads completed) and after send a ...