Hi ChaoticXSinZ!
I finally was able to test your app (v0.1a3). It was very stable with a phat PSP! Now I would like to test the latest version. Could you compile your updates once in a while? In your github pages, the pre-compiled packages are not downloadable.
I checked your commit history and image scaling -feature sounds interesting. I don't know how it's done, but do you think that resizing an image could be done using css's width: i% and max-width: i% properties? As for other features, I would still hope you to implement the reverse-L/R option when reading manga. It could be just a boolean selection in the options menu (if menu is implemented yet?). And bookmarking would be nice like in the old app.
- Pseudo Code for reverse L/R
-
IF (KEY == R)
{
IF (!reverse)
nextPage();
ELSE
prevPage();
}
ELSE IF (KEY == L)
{
IF (!reverse)
prevPage();
ELSE
nextPage();
Thanks and hopefully you're still following the forum.
EDIT: As a note, I tried to compile myself on Windows with 'make'. Building the externals will fail due to used '|' (so I removed the rest of the line). In addition, I had to create the external folders manually into the build directory. After building, the menu is blank (black screen). However, I can move to the image and see it by clicking x. On the other hand compiling with Ubuntu succeeded immediately, but the end result is same.
