I want to share some hacks (most of them came from other discussion), some people may like it and use it before they are officially adopted.
Quote:
edit unireader.lua under kindlepdfviewer directory
1. force global refresh
rcount = 5,
rcountmax = 5,
change 5 --> 0
2. make pdf margin white instead of grey
fb.bb aintRect(0, 0, width, height, 8)
8 --> 0
3. Make the bookmarked dialog disappear quicker
showInfoMsgWithDelay("Page marked.", 2000, 1)
showInfoMsgWithDelay("Page already marked!", 2000, 1)
2000 --> 500
edit crereader.lua
4. change epub/mobi default font
default_font = "Droid Sans",
Droid Sans --> any font you like, input name as it showed in book font selection screen(it's different from the file browser font selection screen)
|