summaryrefslogtreecommitdiffstats
path: root/src/trace (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-16Actually fix overflowMarc Jeanmougin1-3/+3
2019-09-16Fix overflow in autotrace channel reductionMarc Jeanmougin1-1/+1
2019-08-22remove HAVE_POTRACEMarc Jeanmougin1-4/+0
2019-08-21Fix tracer selection and depixelize colorsMarc Jeanmougin1-23/+8
2019-08-21Fix buildMarc Jeanmougin1-1/+3
2019-08-21Fix centerline traceMarc Jeanmougin2-5/+35
2019-08-21update READMEMarc Jeanmougin1-2/+12
2019-08-21new trace Dialog - initial implementationMarc Jeanmougin5-174/+279
2019-07-03Crashfix SIOX Trace (free memory properly)Nathan Lee1-2/+1
https://gitlab.com/inkscape/inkscape/issues/293
2019-01-02modernize: add overridesMarc Jeanmougin1-2/+2
2019-01-02modernize loopsMarc Jeanmougin4-19/+17
2018-11-08Clarify licensesMax Gaukler19-17/+73
- 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-09-24Remove #include "config.h" from header files where possibleEduard Braun1-4/+0
2018-09-13add autotrace basic supportMarc Jeanmougin4-5/+292
2018-06-20Replace typedef enum with enum in POD type declarations.Emmanuel Gil Peyrot1-2/+2
2018-06-20Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2-4/+4
2018-06-18Run clang-tidy’s modernize-pass-by-value pass.Emmanuel Gil Peyrot1-4/+5
This avoids having to pass variables by reference before copying them when calling a constructor.
2018-06-18Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot8-12/+12
This renames most C <*.h> includes into C++ <c*> includes.
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot4-16/+10
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot11-86/+86
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-18Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2-7/+7
This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin4-17/+17
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin4-17/+17
2018-03-30Add lots of README's.Tavmjong Bah1-0/+8
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah3-6/+9
A lot of header clean-up.
2017-10-19Remove all unused makefile.inStefano Facchini1-17/+0
2017-09-24Remove unused parameter in SPItem::doWriteTransformStefano Facchini1-1/+1
2017-06-15Remove cmake checks for C89 headers.Elliott Sales de Andrade1-2/+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
2017-02-05Fix C++11 errors and warnings with g++-7Alex Valavanis1-4/+0
Fixed bugs: - https://launchpad.net/bugs/1660992 (bzr r15477)
2016-08-08Remove deprecated Autotools and btool files. Please use CMake insteadAlex Valavanis1-23/+0
(bzr r15046)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-1/+1
(bzr r14954.1.10)
2016-04-13Fix a few more pick calls not preceded by updateKrzysztof Kosi??ski1-0/+1
(bzr r14834)
2015-12-07static code analysisKris De Gussem1-1/+1
(bzr r14510)
2015-11-12Fix CMake buildAlex Valavanis1-0/+3
(bzr r14449.1.6)
2015-11-09Enable builds without flood/trace on systems without PotraceAlex Valavanis1-0/+4
(bzr r14449.1.4)
2015-11-09Add CMake check for Potrace from OSP: http://goo.gl/AEzbkQAlex Valavanis1-17/+0
Fixed bugs: - https://launchpad.net/bugs/1156664 (bzr r14449.1.3)
2015-11-08Update Potrace bitmap macros to upstream 1.13Alex Valavanis1-8/+9
(bzr r14449.1.2)
2015-11-08Use external PotraceAlex Valavanis19-4054/+5
(bzr r14449.1.1)
2015-06-22Tracing. Fix for Bug #1456387 (Trace Bitmap: Multiscan > Brightness steps ↵Nicolas Dufour1-1/+1
produces mostly black result). Fixed bugs: - https://launchpad.net/bugs/1456387 (bzr r14209)
2015-06-08cmake: Add some missing header files to CMakeLists.txtBryce Harrington1-0/+1
These were found by running cmake_consistency_check.py (bzr r14198)
2015-05-08fixes a few of jenkins warningsMarc Jeanmougin1-1/+1
(bzr r14126)
2015-03-31Updating Potrace from 1.10 to 1.12, fixing Bug #1438366 (CVE-2013-7437 ↵Nicolas Dufour17-103/+251
vulnerability). Fixed bugs: - https://launchpad.net/bugs/1438366 (bzr r14037)
2015-02-27corrected the casts (hopefully)Marc Jeanmougin1-1/+1
(bzr r13922.1.10)
2015-02-19Put a few std::vector<SPitem*>Marc Jeanmougin1-2/+2
(bzr r13922.1.5)
2015-02-18Just...mc1-3/+3
some... more... lines... (bzr r13922.1.2)
2015-02-17At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin1-4/+4
change that GSList* with a std::list, then resolve the few problems" So, i tried that. And I will continue tomorrow, and the days after, on and on. (bzr r13922.1.1)
2015-02-07Fixing dead assignment and uninitialized argument value.Nicolas Dufour1-4/+4
(bzr r13908)
2014-12-21Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White1-1/+1
(bzr r13820)
2014-12-21Purge sp_desktop_message_stackLiam P. White2-6/+6
(bzr r13817)
2014-12-21Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White1-3/+3
(bzr r13809)