Letractively / fuuka

Automatically exported from code.google.com/p/fuuka
Other
0 stars 0 forks source link

boards.4chan update #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Check in that shit to your svn homps

Original issue reported on code.google.com by CmdPro...@gmail.com on 4 Feb 2010 at 12:51

GoogleCodeExporter commented 8 years ago
Done, the code in SVN should be functional. Let us know if it doesn't work for 
you.

Original comment by eksopl on 4 Feb 2010 at 2:37

GoogleCodeExporter commented 8 years ago
Awesome, thanks for the quick reply.

My only problem appears to be with thumbnailing, as no thumbnails are being 
saved. I
had that working on the older version, so I'm not sure if it's a configuration 
error
-- I'll do more digging.

Original comment by CmdPro...@gmail.com on 4 Feb 2010 at 3:32

GoogleCodeExporter commented 8 years ago
Are you on Unix? You may need to chmod/chown the directories.

Original comment by eksopl on 4 Feb 2010 at 3:36

GoogleCodeExporter commented 8 years ago
I had media-threads set to 0. Based on the comment and code, this is getting 
the full
pics? However, in board-dump.pl @ 70, you have:
if($settings->{"media-threads"}){   
        $_->{preview} and push @media_preview_updates,shared_clone($_)
            foreach @posts;
    }
when it seems like that should be:
if($settings->{"thumb-threads"}){   
        $_->{preview} and push @media_preview_updates,shared_clone($_)
            foreach @posts;
    }
if($settings->{"media-threads"}){   
        $_->{preview} and push @media_updates,shared_clone($_)
            foreach @posts;
    }

Original comment by CmdPro...@gmail.com on 4 Feb 2010 at 4:15

GoogleCodeExporter commented 8 years ago
Whoops, I deleted too much in r47 and messed up some lines. Thanks for noticing 
it.
svn up and try again.

Original comment by eksopl on 4 Feb 2010 at 4:31