pnyheim / torrentwatch-x

Automatically exported from code.google.com/p/torrentwatch-x
GNU General Public License v2.0
0 stars 1 forks source link

Directory format when using deep directories #216

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Is it possible to create "Season" directories with a leading zero if the number 
is only one-digit?
For example "Show Name/Season 3" will be "Show Name/Season 03".
The reason for this is better directory sorting on some OSs.

Original issue reported on code.google.com by freeekb...@gmail.com on 5 May 2012 at 8:56

GoogleCodeExporter commented 9 years ago
This is not yet possible.
Since there are not much shows that have more then 10 seasons it never came to 
mind.
I will think on how to implement this in the future.

Original comment by jo...@vandalon.nl on 5 May 2012 at 2:31

GoogleCodeExporter commented 9 years ago
I discovered how personalize deep directory. In my case translated season 
(English) to Temporada (portuguese). you can try change it. just edit line 120 
of file tor_client.php
change entire line for that:
$dest = $dest."/".ucwords(strtolower($guess['key']))."/".$Season[1]." 
Temporada";

instead Dexter/Season 7
its creating folder structure: Dexter/7 Temporada 
its 98% ok, but i was not able to put º (example: Dexter/7º Temporada). i 
tried this:
$dest = $dest."/".ucwords(strtolower($guess['key']))."/".$Season[1]."º 
Temporada";
When i add º, torrentwatch not conect to transmission and not work. i dont 
know why, somebody know how fix it ? should be simple..
Thanks

Original comment by felipesa...@gmail.com on 31 Jan 2013 at 2:21