Commit Graph

2168 Commits (de119c66262f41b7de06f7962a349b1ec9b7b38d)
 

Author SHA1 Message Date
NiLuJe de119c6626 Minor startup script tweaks.
Try to SIGSTOP cvm on sysv systems, like kpv
Tweak the wording of the KUAL buttons a bit
11 years ago
NiLuJe 5cab12dfc1 Startup script tweaks.
Make the user's custom fonts available to Koreader.
Handle both SyV & upstart properly
Handle the 'no framework' mode on upstart systems, even through KUAL.
Plug the 'no framework' mode to the KUAL extension.

This is a mix of some stuff I completely forgot I had in my tree, and
what Aeris did for
http://www.mobileread.com/forums/showthread.php?t=223684

Tested on a Touch.
11 years ago
{Qingping, Dave} Hou 92c4d0cd34 Merge pull request #288 from chrox/master
estimate cache size of koptcontext
11 years ago
chrox ffd31613a5 estimate cache size of koptcontext
This should fix #285.
11 years ago
Huang Xin 46e58a4b87 Merge pull request #287 from houqp/houqp-master
readme udpate
11 years ago
Qingping Hou bbd287d264 update readmes 11 years ago
Qingping Hou 89dcd4b2e8 update translation 11 years ago
{Qingping, Dave} Hou c211d19e9c Merge pull request #286 from chrox/master
update mupdf.patch in koreader-base
11 years ago
chrox 6dd9fd97b7 update koreader-base 11 years ago
{Qingping, Dave} Hou a1ce7f1442 Merge pull request #284 from chrox/master
update koreader-base
11 years ago
chrox fd6708adbd update koreader-base 11 years ago
{Qingping, Dave} Hou e8918d8c0b Merge pull request #283 from chrox/master
update mupdf and k2pdfopt to the latest version
11 years ago
chrox b012aa26ba update koreader-base 11 years ago
chrox 9fd9bb17a9 update mupdf and k2pdfopt to the latest version 11 years ago
{Qingping, Dave} Hou b181588735 Merge pull request #277 from chrox/master
update koreader-base
11 years ago
chrox edbab22f4f update koreader-base 11 years ago
{Qingping, Dave} Hou 91c1c69eb9 Merge pull request #273 from chrox/master
add DHINTCOUNT in defaults.lua
11 years ago
chrox 9f0154f7bf fix wrong indentation 11 years ago
chrox 0b7554b1d8 add DSHOWOVERLAP in defaults.lua
Turn off "show overlap" by default since scroll mode can replace it
in most cases where "show overlap" is used. And the dimmed area often
make new users confused. It's better to leave this feature to more
advanced users.
11 years ago
chrox f12869d587 split text string with even finer granularity 11 years ago
chrox f207c285ff set default render quality in reflowing to 1.0
which should be a good tradeoff between speed and quality.
11 years ago
chrox 979d4c5d48 add DHINTCOUNT in defaults.lua
It controls how many number of pages will be hinted in background
after one page has been drawn. Default DHINTCOUNT is 2.
11 years ago
chrox f2cf10a015 refactoring koptcontext creation function 11 years ago
chrox 7fb169660a update koreader-base 11 years ago
Paulo Matias 649fc00f00 Merge pull request #270 from hwhw/master
update koreader-base
11 years ago
HW 101a063fba update koreader-base 11 years ago
HW f16c9e11da Merge pull request #268 from chrox/master
update koreader-base to include new djvulibre repo address
11 years ago
chrox 22c18e5ca0 update koreader-base to include new djvulibre repo address 11 years ago
Huang Xin 326fcbde38 Merge pull request #267 from hwhw/master
update koreader-base to include fixes
11 years ago
Hans-Werner Hilse cf1f8e9736 update koreader-base to include fixes 11 years ago
HW 58a6f4ee97 Merge pull request #263 from houqp/houqp-master
update koreader-base for blitbuffer and ft ffi modules
11 years ago
Qingping Hou 9f1f652cb2 update koreader-base for blitbuffer and ft ffi modules 11 years ago
{Qingping, Dave} Hou 7ba00d4fcb Merge pull request #260 from chrox/master
update k2pdfopt to version 2.00
11 years ago
Huang Xin 265d556032 Merge pull request #261 from hwhw/master
add a UTF8 character iterator
11 years ago
HW 25faf7e1a4 fixed bugs in implementation of utf8Chars() 11 years ago
HW 61c232e0e9 add a UTF8 character iterator
this speeds up font rendering since LuaJIT doesn't have to use
the interpreter for string.gsub(), which was used before
11 years ago
chrox 18eeccbbed update k2pdfopt to version 2.00 11 years ago
Paulo Matias 8b8a8d2d8e Merge pull request #259 from chrox/master
update koreader-base
11 years ago
chrox d5e1f3971f update koreader-base 11 years ago
{Qingping, Dave} Hou 8d45e86581 Merge pull request #258 from giorgio130/master
Solve bug #210.
11 years ago
Giorgio Micotti 45cc6492ab Solve bug #210. 11 years ago
{Qingping, Dave} Hou 6586d55ad3 Merge pull request #254 from chrox/menu_layout
fix widget out-of-bound in bookmark and toc menus
11 years ago
{Qingping, Dave} Hou 8017c7e42e Merge pull request #255 from chrox/dict_unicode
split string with delimiters captured
11 years ago
chrox 094a98b819 split string with delimiters captured 11 years ago
chrox 1c728d6945 fix widget out-of-bound in bookmark and toc menus
The original menu layout needs manual dimension calculations
such as  white padding for displaying page information in
footer as the title, all item contents and footer are stacked
in one VerticalGroup. Out-of-bound error(koreader/koreader-base#43)
will occur in some corner cases if we missed something in
the calculation. The patch sent in this PR invented a new
layout for menu widget in which no manual calculation is needed
for displaying the footer. And the footer will be placed well
inside the menu frame.

   +--------------+
   | +----------+ |
   | |+--------+| |
   | || Header || |
   | |+--------+| |
   | |+--------+| |
   | ||  Item  || |
   | ||  Item  || |
   | |+--------+| |
   | |(Vertical | |
   | |  Group)  | |
   | +----------+ |
   |    Footer    |
   |(OverlapGroup)|
   +--------------+
11 years ago
{Qingping, Dave} Hou 846fb887de Merge pull request #250 from thotypous/master
Update documentation
11 years ago
Paulo Matias b16bad974e Update documentation
Since the build system has changed after modularization. Also,
point out that the project now supports Kobo devices too.
11 years ago
Huang Xin 25a2920716 Merge pull request #240 from houqp/houqp-master
add hidden file toggle for file manager
11 years ago
Qingping Hou 4c40fece74 add hidden file toggle 11 years ago
Huang Xin a1e0ae90ce Merge pull request #238 from thotypous/realpath
Realpath
11 years ago