summaryrefslogtreecommitdiffstats
path: root/src/extension (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bug opening SVG from comand lines related to the DPI changes done. ↵Jabiertxof2018-09-141-2/+2
| | | | Thanks Mark for testing!
* Fix DPI wrong code pointed by McJabiertxof2018-09-131-3/+3
|
* Add per embed/linked SVG a DPI valueJabiertxof2018-09-132-6/+12
|
* fixes and improvementes to power clip and powermaskJabiertxof2018-09-131-15/+0
|
* New option to invert y-axisThomas Holder2018-09-123-14/+11
| | | | | | | | | Replaces all hard coded or implicit desktop coordinate usage with doc2dt multiplication. New global preference: Interface > Origin at upper left https://bugs.launchpad.net/inkscape/+bug/170049
* Modified fix for compatibility with poppler 0.64Eduard Braun2018-09-044-8/+27
| | | | | | | This is slightly uglier than a600c6438fef2f4c06f9a4a7d933d99fb054a973 but avoids duplicating strings (which is unnecessary and leaked memory). It's also closer to what upstream intended with the changes in 0.64.
* Fix opacity of bitmap images in PDF exportEduard Braun2018-08-282-4/+2
| | | | | | | | | | | | This is a follow-up to 1e31c41a0ef4b0f383d4f9d2941f643ae67ca646. As it turns out the same issue also applied to bitmap images embedded in the SVG. Replacing 'cairo_paint_with_alpha()' -> 'cairo_paint()' prevents reducing opacity when rendering the bitmap onto a cairo surface. Opacity should already be properly handled in CairoRenderContext::popLayer()
* Fix opacity of rasterized filters in PDF exportEduard Braun2018-08-281-0/+2
| | | | | | | | | | | | | Opacity was applied thrice: 1. when rendering the filter to a pixbuf (i.e. transparency was baked into the bitmap) 2. when rendering this pixbuf onto a cairo surface 3. when actually rendering the (now doubly opaque) item Avoid 1. and 2. and only apply opacity once. Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/381677
* Fixing coding styleJabier Arraiza2018-08-052-12/+12
|
* Fixes pointed by TavJabier Arraiza2018-08-053-22/+19
|
* Update to trunk and styling fixesJabier Arraiza2018-08-051-10/+10
|
* coding style fixesJabier Arraiza2018-08-054-39/+52
|
* Fixes compiling bugsJabier Arraiza2018-08-052-6/+6
|
* Refactor with Tav helpJabier Arraiza2018-08-057-32/+52
|
* Revert changesJabier Arraiza2018-08-057-222/+40
|
* Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵Jabier Arraiza2018-08-057-40/+222
| | | | pref optional to scale dashes on stroke scale
* Fix codding styleJabier Arraiza2018-06-251-2/+2
|
* Fix for bug 1777530 on masterJabier Arraiza2018-06-253-12/+4
|
* Merge branch 'select-page' of gitlab.com:bobqwatson/inkscapeMarc Jeanmougin2018-06-201-0/+2
|\
| * Add command-line option to select PDF pageJoe Rabinoff2018-06-191-0/+2
| | | | | | | | | | | | The optional argument "--pdf-page N" causes Inkscape to import page number N from the pdf document specified on the command line. This functionality is already available when importing via the GUI, but not when batch processing.
* | Replace typedef enum with enum in POD type declarations.Emmanuel Gil Peyrot2018-06-202-4/+4
| |
* | Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-203-60/+49
| |
* | Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-198-32/+32
| |
* | Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-19106-349/+349
| |
* | Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | | | | | | This reduces the boilerplate required to add a new element to a container.
* | Run clang-tidy’s modernize-use-noexcept pass.Emmanuel Gil Peyrot2018-06-181-6/+6
| | | | | | | | This removes deprecated dynamic exception specifications.
* | Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-188-16/+16
|/ | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call.
* Update pdf-parser.cppMarc Jeanmougin2018-06-181-4/+0
|
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-1820-42/+42
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-1819-30/+25
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-1885-1024/+1024
| | | | | 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 Peyrot2018-06-1860-285/+285
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Fixes to extension system and simplify the codeJabiertxo Arraiza Cenoz2018-06-067-58/+19
|
* Fix compilation with poppler 0.65.0Jan Palus2018-05-251-2/+1
| | | | | | replace unused includes with one that is actually used Signed-off-by: Jan Palus <atler@pld-linux.org>
* Fis maren improvements to embed/importJabier Arraiza2018-05-151-4/+4
|
* Source typosluz.paz2018-05-143-22/+22
|
* Misc. typosluz.paz2018-05-142-2/+2
| | | Found via `codespell` and `grep`
* Fix bug embeding SVG as PNGJabier Arraiza2018-05-131-13/+12
|
* Allow embed on SVG importsJabier Arraiza2018-05-122-37/+55
|
* Fixes bugs: #1770760, #1770761, #1770763, #1770769 related to linked SVGJabier Arraiza2018-05-121-2/+1
|
* Add Maren improvements prepare to mergeJabiertxo Arraiza Cenoz2018-05-101-11/+11
|
* Allow link a SVG as imageJabiertxo Arraiza Cenoz2018-05-101-2/+103
|
* Apply fixedJabier Arraiza2018-05-096-137/+79
|
* Reset old code to reaply fixedJabier Arraiza2018-05-098-80/+141
|
* fix compiling bugsJabier Arraiza2018-05-091-1/+1
|
* fix compiling bugsJabier Arraiza2018-05-092-16/+19
|
* fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60694271Jabier Arraiza2018-05-095-44/+15
|
* Fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60693688Jabier Arraiza2018-05-091-19/+2
|
* Add patch to branch https://inkscape.org/en/paste/10993/Jabier Arraiza2018-05-091-0/+5
|
* Start migrating 0.92 patch to masterJabier Arraiza2018-05-098-138/+115
|