summaryrefslogtreecommitdiffstats
path: root/src/extension (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Modal should not be active for live-preview (reverse modal)Martin Owens2019-01-241-2/+2
|
* Fix some typos and syntax errorsMattia Rizzolo2019-01-221-1/+1
| | | | | | | | | Some of the typos fixes are in libcroco code. They are already fixed in upstream's git (https://bugzilla.gnome.org/show_bug.cgi?id=776798). Also fix a bunch of "allow to" (with the missing object). Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>
* fix compilation with HAVE_CAIRO_PDF=0Thomas Holder2019-01-185-14/+12
|
* Remove confusing and broken save as PNG optionMarc Jeanmougin2019-01-174-185/+0
|
* run clang tidy modernize passMarc Jeanmougin2019-01-0271-71/+71
|
* protect includes in c fileMarc Jeanmougin2019-01-021-5/+5
|
* modernize: add overridesMarc Jeanmougin2019-01-0237-76/+76
|
* modernize loopsMarc Jeanmougin2019-01-0218-78/+66
|
* Round-trip SVG 2 flowed text with SVG 1.1 backup.Tavmjong Bah2018-12-141-44/+62
|
* DocumentUndo::ScopedInsensitiveThomas Holder2018-12-141-9/+3
|
* Fix license in new filesMarc Jeanmougin2018-12-092-1/+2
|
* fix poppler 0.72.0 buildThomas Holder2018-12-092-1/+4
|
* Add some SVG 2 fallbacks:Tavmjong Bah2018-12-074-5/+1385
| | | | | | * Meshes (fill only) * Markers: auto-start-reverse, context-stroke/fill * Text
* Fix FTBFS with dbusAlexander Valavanis2018-11-182-2/+2
|
* Fix stream class locationsAlexander Valavanis2018-11-183-4/+3
|
* Fix format stringAlexander Valavanis2018-11-161-1/+1
|
* fix compiling on macOSThomas Holder2018-11-103-3/+3
|
* Clarify licensesMax Gaukler2018-11-08236-333/+610
| | | | | | - 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
* fix bug 1793940 ODG image exportThomas Holder2018-11-072-57/+30
| | | | | Fixes handling of relative image URIs and data URIs for OpenDocument drawing (*.odg) export.
* fix clipboard URL rebasingThomas Holder2018-11-075-3/+14
|
* C++ify SVGViewWidget. Remove unused code.Tavmjong Bah2018-11-062-56/+78
|
* fix poppler 0.71.0 build.Bartłomiej Szczepaniak2018-11-061-0/+6
|
* remove Inkscape::URI::toStringThomas Holder2018-11-051-3/+1
|
* cleanup: remove Base64OutputStreamThomas Holder2018-10-291-20/+8
| | | | | It was only used in one place. Use "g_base64_encode" instead, like the rest of the codebase.
* Move contents of document-private.h to document.h.Tavmjong Bah2018-10-291-2/+1
|
* Remove 'document-private.h' where not needed plus some other header cleanup.Tavmjong Bah2018-10-2212-26/+36
|
* Code cleanup and adding comments.Tavmjong Bah2018-10-172-64/+93
|
* Move some files to 'io' directory.Tavmjong Bah2018-10-132-2/+2
|
* Hopefully last fix for e4c44f8b4674b88c0174270f27d61db808f66bc6Eduard Braun2018-10-111-1/+1
|
* Misc. typosluz.paz2018-10-068-11/+11
| | | Found via `codespell`
* CMake: Allow to build with GraphicsMagick instead of ImageMagickEduard Braun2018-10-022-7/+7
| | | | | | | | | For now we still default to ImageMagick, but we can fall-back to GraphicsMagick (e.g. if only ImageMagick 7 is available; add a check for this). To prefer GraphicsMagick despite a compatible version of ImageMagick use -DWITH_IMAGE_MAGICK=OFF when running CMake
* Move macros.h and remove unneeded macrosEduard Braun2018-10-011-4/+0
|
* Remove #include "config.h" wherever possibleEduard Braun2018-10-0158-166/+46
|
* Use _WIN32 instead of WIN32Eduard Braun2018-10-017-12/+12
| | | | | | | | 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
* Improve calls to document_unitsJabier Arraiza2018-09-301-6/+1
|
* use poppler-transition-api instead of ifdefsThomas Holder2018-09-302-702/+208
|
* Purge gunichar from InkscapestreamEduard Braun2018-09-291-2/+2
| | | | | | | | | | None of these functions seems to expect an actual gunichar (which is a 32-bit type and can hold any UTF-32 or UCS-4 character code, also known as a Unicode code point). Instead we want UTF-8 encoded character data (i.e. gchar, which is equivalent to char) that can be output byte-wise to form a valid UTF-8 encoded string.
* fix 1789208 poppler 0.69Thomas Holder2018-09-287-45/+80
|
* SP_ACTIVE_DESKTOP: check for NULL or eliminateThomas Holder2018-09-271-2/+0
|
* Fix PDF bitmap export (inverted y-axis)Thomas Holder2018-09-261-6/+5
| | | | https://bugs.launchpad.net/inkscape/+bug/1794298
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-2411-38/+1
|
* fix .odg and .fx export with inverted y-axisThomas Holder2018-09-232-19/+11
|
* Allow ask for SVG dragged import method. Also split ask question from one to ↵Jabier Arraiza2018-09-222-6/+7
| | | | 2 (Bitmap and SVG)
* Fix problems on dialogs with extensions. TODO: Add dialog on drag&drop a SVGJabier Arraiza2018-09-223-21/+18
|
* 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.