View Single Post
Old 07-06-2015, 02:27 PM   #414
tshering
Wizard
tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.
 
Posts: 3,489
Karma: 2914715
Join Date: Jun 2012
Device: kobo touch
Quote:
Originally Posted by Kobo1 View Post
but when I go to start koreader it seems like it want to work but just goes to a screen with some files(can't remember) but it does not show my book or pdf files at all.
You are seeing directories and files (directories have "/" at the end). Poke the names of directories in order to navigate through the directory system until you find your books. In case you get lost, remember that what you know as the root directory of the user partition is actually /mnt/onboard/.

If poking on file or directory names does not yield the wished result, and you have also problems poking the menu items, open the file ...koreader\frontend\device\input.lu, search for

Code:
-- For single-touch events (ABS.code).
local ABS_X = 00
local ABS_Y = 01
and exchange the values of ABS_X and ABS_Y:
Code:
Code:
-- For single-touch events (ABS.code).
local ABS_X = 01
local ABS_Y = 00
This is necessary on some Kobo Touch devices.

Last edited by tshering; 07-06-2015 at 02:34 PM.
tshering is offline   Reply With Quote