You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
chrox b3c2a7e3fd switch license to AGPLv3 10 years ago
extensions/koreader adjust nice value of reader.lua process to -2 10 years ago
fmon Safer installing process for Kobos 11 years ago
frontend The last code changes resulted in crashes. Now they don't and it the fine tuning is improved. 10 years ago
koreader-base@142191e17c switch license to AGPLv3 10 years ago
l10n update pot file 10 years ago
launchpad adapted wrapper script and launcher configurations 11 years ago
resources rescale font size when fallbacks to fallback fonts 11 years ago
test test file for djvu format 12 years ago
.gitignore update gitignore file to ignore files in test directory 11 years ago
.gitmodules changed submodule koreader-base to its new URI 11 years ago
COPYING switch license to AGPLv3 10 years ago
Makefile strip unnecessary parts in update packages 10 years ago
README.md switch license to AGPLv3 10 years ago
defaults.lua cleanup: expand tab to 4 spaces 10 years ago
kobo_suspend.sh Split suspend-resume logic 11 years ago
koreader.sh Minor startup script tweaks. 11 years ago
koreader_kobo.sh fix kobo frozen when exiting koreader 10 years ago
reader.lua cleanup: expand tab to 4 spaces 10 years ago
wtest.lua cleanup: expand tab to 4 spaces 10 years ago

README.md

KOReader Build Status Bitdeli Badge

This is a document viewer application, originally created for usage on the Kindle e-ink reader. It currently supports Kindle 5 (Touch), Kindle Paperwhite and Kobo devices. Kindles need to be jailbroken in order to install the application. Also, a kind of external launcher is needed.

KOReader started as the KindlePDFViewer application, but it supports much more formats than PDF now. Among them are DJVU, FB2, EPUB, TXT, CBZ, HTML.

KOReader is a frontend written in Lua and uses the API presented by the KOReader-base framework. KOReader implements a GUI and is currently targeted at Touch-based devices - for the classic user interface for button-driven e-ink devices (like the Kindle 2, Kindle DX, Kindle 3, Kindle 4) see the KindlePDFviewer legacy project or - especially for the Kindle 4 - have a look at its fork Librerator.

This application is distributed under the GNU AGPL v3 license (read the COPYING file).

Prerequisites

Instructions about how to get and compile the source are intended for a *nix OS. Windows users are suggested to develop in a Linux VM or use andLinux, Wubi.

To get and compile the source you must have patch, wget, unzip, git, svn, autoconf and cmake installed.

Version of autoconf need to be greater than 2.64.

Cross toolchains are available to Ubuntu users through these commands:

# building for Kindle
sudo apt-get install gcc-arm-linux-gnueabi g++-arm-linux-gnueabi
# building for Kobo
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf

You might also need SDL library packages if you want to compile and run Koreader on PC. Fedora users can install SDL and SDL-devel. Ubuntu users can install libsdl1.2-dev.

Getting the source

git clone https://github.com/koreader/koreader.git
cd koreader
make fetchthirdparty

Building & Running

For real eink devices

If you already done an emulator build, you must do:

make clean

To build for the Kindle:

make customupdate

To build for the Kobo:

make TARGET_DEVICE=KOBO koboupdate

To run, you must call the script reader.lua. Run it without arguments to see usage notes. Note that the script and the koreader-base binary currently must be in the same directory.

You may checkout our nightlybuild script to see how to build a package from scratch.

For emulating

If you already done a real device build, you must do:

make clean

To build:

EMULATE_READER=1 make

To run:

cd koreader-*/koreader && ./reader.lua -d ./

You can also specify size of emulator's screen via environment variables. For more information, please refer to koreader-base's README.

To use your own koreader-base repo instead of the default one change KOR_BASE environment variable:

EMULATE_READER=1 make KOR_BASE=../koreader-base

This will be handy if you are developing koreader-base and want to test your modifications with kroeader frontend. NOTE: only support relative path for now.

Use ccache

Ccache can speed up recompilation by caching previous compilations and detecting when the same compilation is being done again. In other words, it will decrease build time when the source have been built. Ccache support has been added to KOReader's build system. Before using it, you need to install a ccache in your system.

  • in ubuntu use:sudo apt-get install ccache
  • in fedora use:sudo yum install ccache
  • install from source:
  • after using ccache, make a clean build will only take 15sec. Enjoy!
  • to disable ccache, use export USE_NO_CCACHE=1 before make.
  • for more detail about ccache. visit:

http://ccache.samba.org