| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | cleanup: remove most of uristream.cpp | Thomas Holder | 2018-10-29 | 1 | -6/+3 |
| | | | | | | | | | | | Replace UriInputStream -> FileInputStream Replace UriOutputStream -> FileOutputStream Remove UriReader Remove UriWriter UriReader, UriWriter, and the acutal URI-based API of UriInputStream and UriOutputStream was all unused/dead code. | ||||
| * | fix vi modelines: encoding -> fileencoding | Thomas Holder | 2018-10-15 | 2 | -2/+2 |
| | | |||||
| * | Move some files to 'io' directory. | Tavmjong Bah | 2018-10-13 | 1 | -1/+1 |
| | | |||||
| * | Misc. typos | luz.paz | 2018-10-06 | 2 | -2/+2 |
| | | | | Found via `codespell` | ||||
| * | Remove #include "config.h" wherever possible | Eduard Braun | 2018-10-01 | 3 | -13/+2 |
| | | |||||
| * | Use _WIN32 instead of WIN32 | Eduard Braun | 2018-10-01 | 1 | -2/+2 |
| | | | | | | | | | The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system | ||||
| * | Clean up stream output in repr-io.cpp | Eduard Braun | 2018-09-29 | 1 | -19/+10 |
| | | | | | | | | - remove workaround that was necessary because of broken writeString (and consequently printf) functions of BasicWriter - use writeChar() where appropriate as it's slightly more efficient than writeString() | ||||
| * | Make XML tree a double-linked-list (significant improvement on previous node ↵ | Marc Jeanmougin | 2018-09-11 | 4 | -10/+31 |
| | | | | | lookup) | ||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 1 | -1/+1 |
| | | |||||
| * | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 2018-06-18 | 3 | -5/+5 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 16 | -198/+198 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Run clang-tidy’s modernize-use-override pass. | Emmanuel Gil Peyrot | 2018-06-18 | 13 | -113/+113 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Improve sort handling in XML | Jabiertxo Arraiza Cenoz | 2018-05-10 | 1 | -5/+2 |
| | | |||||
| * | Apply fixed | Jabier Arraiza | 2018-05-09 | 4 | -6/+112 |
| | | |||||
| * | Reset old code to reaply fixed | Jabier Arraiza | 2018-05-09 | 4 | -113/+7 |
| | | |||||
| * | Fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60693688 | Jabier Arraiza | 2018-05-09 | 1 | -1/+4 |
| | | |||||
| * | Start migrating 0.92 patch to master | Jabier Arraiza | 2018-05-09 | 3 | -6/+109 |
| | | |||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 14 | -34/+34 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 14 | -34/+34 |
| | | |||||
| * | moved libcroco, libuemf, libdepixelize to 3rdparty folder | Marc Jeanmougin | 2018-04-29 | 2 | -2/+2 |
| | | |||||
| * | Add lots of README's. | Tavmjong Bah | 2018-03-30 | 1 | -0/+12 |
| | | |||||
| * | Removing sample meson build files. | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -67/+0 |
| | | | | | | | | | | | These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY | ||||
| * | [meson-build] libio + zlib | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -1/+2 |
| | | |||||
| * | [meson-build] libutil | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -1/+2 |
| | | |||||
| * | [meson-build] libdebug | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -1/+2 |
| | | |||||
| * | [meson-build] xml | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -0/+64 |
| | | |||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 4 | -9/+21 |
| | | | | | A lot of header clean-up. | ||||
| * | Misc. typos | luz.paz | 2018-01-08 | 2 | -2/+2 |
| | | | | Found via `codespell` | ||||
| * | Misc. typos | Unknown | 2017-11-07 | 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 ``` | ||||
| * | Fix XML text parsing bug. | Tavmjong Bah | 2017-10-28 | 1 | -1/+4 |
| | | | | | | Since xml2 2.9.0, xmlNodeGetSpacePreserve() only checks element nodes, thus we need to check text node parent for xml:space value. | ||||
| * | Merge branch 'smartpointer_refactor' of gitlab.com:jali/inkscape | Marc Jeanmougin | 2017-10-20 | 19 | -69/+69 |
| |\ | |||||
| | * | Refactor Util::ptr_shared | Jan Lingscheid | 2017-10-18 | 19 | -69/+69 |
| | | | | | | | | | | | Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway. | ||||
| * | | Remove all unused makefile.in | Stefano Facchini | 2017-10-19 | 1 | -17/+0 |
| | | | |||||
| * | | Remove a useless conditional | Stefano Facchini | 2017-10-19 | 1 | -24/+19 |
| | | | | | | | | | Since "doc" is initialized to 0, the test is always true... | ||||
| * | | Delete dead code | Stefano Facchini | 2017-10-19 | 1 | -15/+1 |
| |/ | |||||
| * | Add GUI and code to implement "Line Spacing Modes". | Tavmjong Bah | 2017-08-05 | 2 | -1/+12 |
| | | | | | | Selecting a Line Spacing Mode allows a user to quickly pick an algorithm for consistant line spacing. | ||||
| * | Remove cmake checks for C89 headers. | Elliott Sales de Andrade | 2017-06-15 | 1 | -4/+0 |
| | | | | | | | | | | | These are roughly equivalent to autoconf's AC_HEADER_STDC and even they say that macro is obsolescent. strings.h is not really a C89 header, but it defined some things that are no longer needed [1]. And no file actually #includes it. [1] https://stackoverflow.com/a/4291328 | ||||
| * | Relax any hardcoded limit from the libxml2 parser when creating documents ↵ | Eduard Braun | 2017-04-30 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | from memory This fixes many bugs (mostly caused by very long image data URIs) Fixed bugs: - https://launchpad.net/bugs/1572280 - https://launchpad.net/bugs/1412912 - https://launchpad.net/bugs/1373322 - https://launchpad.net/bugs/1243011 - https://launchpad.net/bugs/1627004 - https://launchpad.net/bugs/1627004 (bzr r15654) | ||||
| * | Merged. | Shlomi Fish | 2017-02-06 | 1 | -1/+1 |
| |\ | | | | | (bzr r15369.1.18) | ||||
| | * | [Bug #1659347] Windows: '/' in relative image links rewritten as '\' on save. | Nicolas Dufour | 2017-01-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1659347 (bzr r15459) | ||||
| * | | Remove some code that doesn't do anything. | Shlomi Fish | 2017-01-04 | 1 | -22/+0 |
| |/ | | | | | There was a comment to this effect there. (bzr r15369.1.13) | ||||
| * | Remove deprecated Autotools and btool files. Please use CMake instead | Alex Valavanis | 2016-08-08 | 1 | -51/+0 |
| | | | | (bzr r15046) | ||||
| * | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 2016-08-03 | 7 | -14/+2 |
| | | | | (bzr r15034) | ||||
| * | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 2016-07-28 | 8 | -3/+15 |
| | | | | (bzr r15027) | ||||
| * | Removed unused includes, decrease compilation time | Adrian Boguszewski | 2016-07-28 | 8 | -15/+3 |
| | | | | (bzr r15025) | ||||
| * | Comment out unused enum. | Tavmjong Bah | 2016-07-10 | 1 | -7/+7 |
| | | | | (bzr r15015) | ||||
| * | Optionally sort attributes and properties into a canonical order. | Tavmjong Bah | 2016-06-12 | 1 | -0/+5 |
| | | | | | | Useful for comparing different versions of an SVG file. (bzr r14980) | ||||
| * | Fix regression: restore order in resources (e.g. pattern list) | Marc Jeanmougin | 2016-05-21 | 1 | -2/+2 |
| | | | | (bzr r14907) | ||||
| * | replaced remaining GHashTable with std::map | Marc Jeanmougin | 2015-12-09 | 1 | -11/+7 |
| | | | | (bzr r14504.1.16) | ||||
| * | cppification : GHashMaps replaced by stl maps. getResouceList now gives a ↵ | Marc Jeanmougin | 2015-12-07 | 1 | -3/+3 |
| | | | | | | | | std::set<SPObject *>. Should give some performance improvements (quite a few linear lookups are now logarithmic) (bzr r14504.1.6) | ||||
