bump crengine: text formatting: fix leading spaces issues (#4008)

Includes:
- text formatting: fix leading spaces issues
- new English US & GB hyph patterns
pull/4009/head
poire-z 6 years ago committed by GitHub
parent 586b42aa20
commit b9141897a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1 +1 @@
Subproject commit 340e809afdfd1354dec1a9577efe33e1ec6d7d94
Subproject commit 40cedfa55726f3f4406d02fc6be1502895a72ef1

@ -67,7 +67,7 @@ describe("Readersearch module", function()
it("should find the last occurrence", function()
-- local logger = require("logger")
-- logger.info("nb of pages", doc:getPageCount())
-- 20180602: currently 200 pages (was 202 before)
-- 20180613: currently 199 pages (20180602 was 200, was 202 before)
for i = 100, 180, 10 do
rolling:onGotoPage(i)
local words = search:searchFromEnd("Verona")

@ -25,7 +25,7 @@ describe("Readertoc module", function()
title = toc:getTocTitleByPage(51)
DEBUG("toc", toc.toc)
assert(title == "SCENE V. A hall in Capulet's house.")
title = toc:getTocTitleByPage(155)
title = toc:getTocTitleByPage(154)
assert(title == "SCENE I. Friar Laurence's cell.")
end)
describe("getTocTicks API", function()

Loading…
Cancel
Save