-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump crengine: text typography by language (#1082)
Includes: - Fix a few clang-tidy warnings - Add support for <img src="data:image/png;base64,...> - XML parsing: add more HTML5 named entities, optimize search - Text: fix standalone BR not making an empty line - Fix BR with "display: block" not making an empty line - Fix hyphens from soft-hyphens not part of highlighted segments - Use libunibreak for line breaking - Adds TextLangMan for text typography by language
- Loading branch information
Showing
4 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule crengine
updated
17 files
+47 −20 | crengine/include/hyphman.h | |
+13 −4 | crengine/include/lvdocviewprops.h | |
+12 −4 | crengine/include/lvfntman.h | |
+4 −2 | crengine/include/lvrend.h | |
+15 −12 | crengine/include/lvstyles.h | |
+8 −1 | crengine/include/lvtextfm.h | |
+2 −0 | crengine/include/lvtinydom.h | |
+44 −0 | crengine/include/lvxml.h | |
+152 −0 | crengine/include/textlang.h | |
+125 −11 | crengine/src/hyphman.cpp | |
+34 −3 | crengine/src/lvdocview.cpp | |
+44 −17 | crengine/src/lvfntman.cpp | |
+221 −72 | crengine/src/lvrend.cpp | |
+166 −10 | crengine/src/lvtextfm.cpp | |
+60 −15 | crengine/src/lvtinydom.cpp | |
+2,314 −450 | crengine/src/lvxml.cpp | |
+467 −0 | crengine/src/textlang.cpp |