| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2019-11-21 | fix Glib::Regex::match stack-use-after-scope | Thomas Holder | 1 | -1/+6 | |
| Fixes cursor jumping mentioned by @nathanal: https://gitlab.com/inkscape/inkscape/issues/521#note_247899536 | |||||
| 2019-11-03 | refactor: Eliminate SPIString::value_default | Thomas Holder | 1 | -5/+5 | |
| - eliminate value_default - make value private (-> _value) - add value() method | |||||
| 2019-10-28 | refactor SPIEnum: more type safety | Thomas Holder | 1 | -1/+1 | |
| fixes ungrouping of "font-weight:bolder" fixes "titling-caps" parsing fixes a casting error in CairoRenderContext::renderGlyphtext | |||||
| 2019-10-10 | Fix GC warnings | Marc Jeanmougin | 1 | -0/+1 | |
| 2019-10-05 | Fix various minor code problems | Marc Jeanmougin | 1 | -6/+5 | |
| 2019-10-05 | Fix some memory leaks found by scan-build | Marc Jeanmougin | 1 | -4/+4 | |
| 2019-09-16 | Active SVG2 Flow Text by default | Jabiertxof | 1 | -1/+1 | |
| 2019-09-16 | Allow paste preserving new lines into a flowtext element | Jabiertxof | 1 | -4/+7 | |
| 2019-09-13 | Allow to paste paragraphs in SVG2 Flow then paste overflow the shape | Jabiertxof | 1 | -2/+30 | |
| 2019-09-13 | A value of zero for 'inline-size' should act as if 'inline-size' is not set. ↵ | Tavmjong Bah | 1 | -4/+5 | |
| Fixes #852. | |||||
| 2019-09-07 | Allow transforms in SVG2 flow elements | Jabier Arraiza | 1 | -0/+9 | |
| 2019-09-07 | Prepared for beta. Fixed blocking bug | Jabiertxof | 1 | -1/+0 | |
| 2019-09-07 | Prepare for beta | Jabiertxof | 1 | -4/+1 | |
| 2019-09-07 | fixx flowbox on SVG2 mode using tspans | Jabiertxof | 1 | -2/+10 | |
| 2019-09-07 | Write out 'x' and 'y' attribute values to repr when some text property value ↵ | Tavmjong Bah | 1 | -0/+1 | |
| changes. Changes to property values may cause text to be relayed out, changing 'x' and 'y' attributes on tspans with sodipodi:role="line". Fix for issue 234. | |||||
| 2019-09-06 | Add listeners for when shapes used by text are changed. | Tavmjong Bah | 1 | -27/+21 | |
| 2019-06-06 | Refactoring: call setAttribute() directly. | Shlomi Fish | 1 | -1/+1 | |
| Call this->setAttribute(...) directly instead of this->getRepr()->setAttribute(...). This avoids clutter and mental indirection. See http://wiki.inkscape.org/wiki/index.php?title=Refactoring_projects&oldid=112116 and https://en.wikipedia.org/wiki/Law_of_Demeter . --- I hereby disclaim any implicit or explicit ownership of my changes in this changeset, and put them under a multiple licence consisting of your choice of one of more of: - The CC0 / Public Domain - https://creativecommons.org/choose/zero/ . - The MIT / Expat license - https://en.wikipedia.org/wiki/MIT_License - The default licence of your project - The https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License - version 2.1 or higher - The https://en.wikipedia.org/wiki/GNU_General_Public_License - version 2 or higher - Any licence in the 2018-Aug-27 popular licenses list of https://opensource.org/licenses - The https://en.wikipedia.org/wiki/Apache_License version 2.0 or later - The https://en.wikipedia.org/wiki/Artistic_License version 2.0 or later - The https://en.wikipedia.org/wiki/ISC_license - The https://opensource.org/licenses/BSD-2-Clause Crediting me will be nice, but not mandatory, and you can change the licence of the project without needing my permission. | |||||
| 2019-04-15 | Fix for line positioning in wrapped multi-line text. | Tavmjong Bah | 1 | -0/+5 | |
| Bug introduced in 605ef4a43ea0cf89d19d46679e9e0b5bb9e464b2 which applied line correction to all types of text rather than just multi-line text via sodipodi:role = "line". | |||||
| 2019-03-26 | Misc. typos | luz.paz | 1 | -3/+3 | |
| Found via `codespell` | |||||
| 2019-03-23 | Fix text rendering when Inkscape multi-line text has an empty first line. | Tavmjong Bah | 1 | -3/+43 | |
| Possible fix for GitLab issue #45. | |||||
| 2019-01-02 | modernize loops | Marc Jeanmougin | 1 | -21/+19 | |
| 2018-12-14 | Round-trip SVG 2 flowed text with SVG 1.1 backup. | Tavmjong Bah | 1 | -49/+284 | |
| 2018-11-08 | Clarify licenses | Max Gaukler | 1 | -1/+2 | |
| - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library | |||||
| 2018-10-06 | SPAttributeEnum typed function arguments | Thomas Holder | 1 | -1/+1 | |
| 2018-08-27 | Fix rendering when a <tspan> has a CSS 'display' property with value 'none'. | Tavmjong Bah | 1 | -0/+5 | |
| 2018-06-21 | Ignore 'x' and 'y' attributes on SVG 2 wrapped text (except first for ↵ | Tavmjong Bah | 1 | -179/+222 | |
| 'inline-size'). Some additinal refactoring. | |||||
| 2018-06-18 | Run clang-tidy’s modernize-use-emplace pass. | Emmanuel Gil Peyrot | 1 | -1/+1 | |
| This reduces the boilerplate required to add a new element to a container. | |||||
| 2018-06-18 | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 1 | -2/+1 | |
| This replaces empty constructors and destructors with the default keyword. | |||||
| 2018-06-18 | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 1 | -19/+19 | |
| This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | |||||
| 2018-05-04 | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 1 | -9/+9 | |
| This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | |||||
| 2018-04-29 | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 1 | -9/+9 | |
| 2018-04-23 | Remove some documents updates | Jabier Arraiza | 1 | -2/+0 | |
| 2018-03-28 | a bit more of warning cleanup | Felipe Corrêa da Silva Sanches | 1 | -1/+1 | |
| 2018-03-27 | a few more fixes to build warnings related to libnrtype | Felipe Corrêa da Silva Sanches | 1 | -2/+2 | |
| 2018-03-12 | Fixed more trivial typos | luz.paz | 1 | -1/+1 | |
| Via `codespell` and `grep` | |||||
| 2018-01-30 | Move classes derived from SPObject to own directory. | Tavmjong Bah | 1 | -0/+2 | |
| A lot of header clean-up. | |||||
| 2018-01-08 | Misc. typos | luz.paz | 1 | -1/+1 | |
| Found via `codespell` | |||||
| 2017-11-07 | Misc. typos | Unknown | 1 | -1/+1 | |
| Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ``` | |||||
| 2017-10-19 | Implement rendering for SVG 2 text with 'inline-size'. Work partially from ↵ | Tavmjong Bah | 1 | -0/+91 | |
| Alex Roman. | |||||
| 2017-10-17 | Allow multiple shapes in 'shape-inside' and 'shape-subtract'. Work from Alex ↵ | Tavmjong Bah | 1 | -44/+125 | |
| Roman | |||||
| 2017-10-17 | Remove text 'width' and 'height' attributes. These were replaced by the ↵ | Tavmjong Bah | 1 | -28/+0 | |
| 'inline-size' property. | |||||
| 2017-10-01 | First batch | Marc Jeanmougin | 1 | -26/+11 | |
| 2017-09-21 | Remove useage of GString from sp-text.cpp | Jan Lingscheid | 1 | -3/+3 | |
| 2017-06-10 | libnrtype/Layout-TNG refactoring for better code legibility | Felipe Corrêa da Silva Sanches | 1 | -2/+6 | |
| 2016-08-29 | Don't write out sodipodi:line-spacing. Don't read if 'line-height' already set. | Tavmjong Bah | 1 | -11/+4 | |
| Partial fix for #1590141. (bzr r15085) | |||||
| 2016-08-03 | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 1 | -5/+0 | |
| (bzr r15034) | |||||
| 2016-07-28 | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 1 | -0/+5 | |
| (bzr r15027) | |||||
| 2016-07-28 | Removed unused includes, decrease compilation time | Adrian Boguszewski | 1 | -5/+0 | |
| (bzr r15025) | |||||
| 2016-07-14 | Renamed children list in SPObject | Adrian Boguszewski | 1 | -9/+9 | |
| (bzr r14954.1.21) | |||||
| 2016-07-14 | Last part of new SPObject children list | Adrian Boguszewski | 1 | -6/+6 | |
| (bzr r14954.1.20) | |||||
