GL Manga Reader Code
GL Manga Reader allows you to read manga and comics on your computer.
Brought to you by:
scrat-forever
File | Date | Author | Commit |
---|---|---|---|
doc | 2012-09-14 |
![]() |
[7a7c1b] Setup the goto page widget for navigation |
res | 2013-02-07 |
![]() |
[08ffa5] Linux shell scripts |
scripts | 2013-02-07 |
![]() |
[b33f63] Linux packaging script |
src | 2013-07-10 |
![]() |
[11b760] Add an error message on drop of an unsupported ... |
thirdparty | 2013-02-07 |
![]() |
[ad68d2] Linux libs |
tr | 2013-06-03 |
![]() |
[656a98] Translation |
.hgignore | 2012-09-06 |
![]() |
[658ebe] Add the packaging script |
.hgtags | 2013-07-10 |
![]() |
[f24b6f] Added tag 0.7.0 for changeset 656a98fcbfa3 |
GL Manga Reader.pro | 2013-02-03 |
![]() |
[aaeeb9] Enable rar for windows |
LICENCE.txt | 2012-09-06 |
![]() |
[8060c5] Initial commit |
README.txt | 2013-05-21 |
![]() |
[1a0f19] write session informations |
TODO.txt | 2013-02-03 |
![]() |
[ca342a] Disable rar support for linux |
Version 0.7.0 - NEW: remember the last opened files and ask if the user want to continue with this session or start a new one Version 0.6.0 - NEW: linux version (without rar/cbr support) - NEW: activate antialiasing by default Version 0.5.0 - NEW: add zip/cbz/jar archive support - NEW: add rar/cbr archive support - NEW: open archives inside other archives - NEW: display a smart file name whith archives Version 0.4.0 - NEW: add a zoom widget - NEW: zoom shortuts keys : + - - NEW: add a confirm dialog on exit - NEW: add support for low definition screen (starting with 1366x768 in window mode) - NEW: display the current page number (ex: [42/128]) - NEW: remember the toolbar position (top/bottom/right/left) - NEW: add space between two pages to make read easier - NEW: add definition of the image in metadata - CHG: Stretch images as much as possible by default - CHG: Escape key exit from fullscreen first, and then exit from application - CHG: rewrite of the application launcher - CHG: New arrow design (previous was too large) - BUG : sort becomes case insensitive like windows sort - BUG : the next arrow is still displayed in two-pages mode when the last screen display two pages - BUG : auto-remove unsupported files frome the list on load failure Version 0.3.0 - NEW: save/restore software state on exit/start (QSettings) - NEW: html help tab - NEW : support of more image file types ("bmp", "gif", "ico", "jpeg", "jpg", "mng", "pbm", "pgm", "png", "ppm", "svg", "svgz", "tga", "tif", "tiff", "xbm", "xpm") - BUG : fail to load images when the extension is wrong Version 0.2.0 - setup a human-like sort - NEW: setup unit test module - NEW: setup the goto page widget for navigation - NEW: french translation of the goto page widget - CHG: Do not display "begin" and "end" when there is one page in the list - CHG: Do not display arrows when there is no next or previous in the list Version 0.1.0 - NEW: finish the toolbar - NEW: landscape & portrait mode - NEW: fit to heigh (portrait) - NEW: fit to heigh (landscape) - NEW: one page / two page mode - NEW: about button - NEW: arrows button overlay - NEW: setup the open button - NEW: zoom - NEW: shortut tab - NEW: design final background NEW/BUG/CHG --------------------------------------------- How to build GL Manga Reader Requires: - QT 4.8.2 library (see the "How to build QT library from source" section) http://qt.digia.com/ - quazip 0.5 (you need the sources in the include path, but you don't need to compile it) http://quazip.sourceforge.net/ - UnRARDLL (you need the sources in the include path, but you don't need to compile it) http://www.rarlab.com/rar_add.htm Build GL Manga Reader with debug informations : qmake nmake Build GL Manga Reader without debug informations for a release and make a nice zip package : qmake nmake release nmake package --------------------------------------------- GL Manga Reader End User Requirements : Windows : If the error message occurs at startup : "MSVCP100.DLL cannot be found", Download and install the "Package redistribuable Microsoft Visual C++ 2010 (x86)" from Microsoft website Linux : ubuntu 12.10 (i386) => nothing to do, all is already ok fedora 18 (i386) with default desktop install => nothing to do, all is already ok debian 6.0.6 with default desktop install => GLIBC 2.15 not found (stable package still not available now, feb 2013) --------------------------------------------- How to build QT library from source (3 or 4 hours) The QT lib must be compiled with the QT_NO_DEBUG flag (this flag is set in release mode but not in debug). If not, we won't be able to detect the texture upload failures. http://www.siteduzero.com/tutoriel-3-36553-utiliser-qt-avec-visual-studio-2010.html # Windows : cd %QTDIR% configure -debug-and-release -opensource (answer : y) nmake # Linux : cd $QTDIR ./configure -debug-and-release -opensource (answer : y) make sudo make install ( => /usr/local/Trolltech/Qt-4.8.4 ) ---------------------------------------------