| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add filter rendering improvements by caching | Jabier Arraiza | 2018-11-05 | 1 | -2/+6 |
| | | |||||
| * | Image HTTP support | Thomas Holder | 2018-11-04 | 2 | -4/+28 |
| | | | | | | Uses Gio::File::load_contents (via URI::getContents) to load images from non-file/non-data URIs. Depends on GVfs. | ||||
| * | Finish to convert SPFilter and SPFilterPrimitive to proper classes. | Emmanuel Gil Peyrot | 2018-10-19 | 1 | -2/+2 |
| | | |||||
| * | Renamed "Outline thin strokes" to "visible hairlines" to make the intent ↵ | Rick Yorgason | 2018-10-18 | 5 | -25/+26 |
| | | | | | clearer. | ||||
| * | New "Outline thin strokes" view mode which draws thin strokes in outline ↵ | Rick Yorgason | 2018-10-18 | 6 | -2/+43 |
| | | | | | mode so they're easier to see, while still drawing everything else normally. Very useful for making hairline strokes (0.001") for laser cutters. | ||||
| * | Fix crash when changing grid that was created with document | Marc Jeanmougin | 2018-10-07 | 1 | -0/+3 |
| | | |||||
| * | Remove #include "config.h" wherever possible | Eduard Braun | 2018-10-01 | 22 | -59/+16 |
| | | |||||
| * | Remove #include "config.h" from header files where possible | Eduard Braun | 2018-09-24 | 13 | -16/+36 |
| | | |||||
| * | fix CTRL+button2 rotation direction | Thomas Holder | 2018-09-21 | 1 | -0/+1 |
| | | | | | CTRL+button2 canvas rotation was inverted with flipped canvas or desktop y-axis down. | ||||
| * | Merge branch 'misc-typos' of gitlab.com:luzpaz/inkscape | Marc Jeanmougin | 2018-09-13 | 2 | -2/+2 |
| |\ | |||||
| | * | Several more typos | luz.paz | 2018-09-11 | 2 | -2/+2 |
| | | | |||||
| * | | Fix DPI wrong code pointed by Mc | Jabiertxof | 2018-09-13 | 2 | -8/+8 |
| | | | |||||
| * | | Add per embed/linked SVG a DPI value | Jabiertxof | 2018-09-13 | 2 | -8/+15 |
| | | | |||||
| * | | New option to invert y-axis | Thomas Holder | 2018-09-12 | 2 | -14/+26 |
| | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | | Support smooth scrolling (part 1) | Eduard Braun | 2018-09-11 | 1 | -0/+1 |
| |/ | | | | Allows panning / zooming / rotating the canvas smoothly. | ||||
| * | Fix bug #167900 | Yuki Hoshino | 2018-08-30 | 2 | -0/+2 |
| | | | | | | | | | | https://bugs.launchpad.net/inkscape/+bug/167900 - Tiled imported bitmap textures have errors, also exported By the default extend mode CAIRO_EXTEND_NONE, draw white on a pattern image edge with CAIRO_FILTER_GOOD. Draw an image with CAIRO_EXTEND_PAD. | ||||
| * | Relative values for strokes: | Tavmjong Bah | 2018-08-15 | 1 | -1/+1 |
| | | | | | | | Fix segmenation fault on reading dashes with % values. Fix computed value for dashes with % values (use viewport diagonal length). Support % values for stroke width. | ||||
| * | Fix 'stroke-dashoffset' with absolute units. | Tavmjong Bah | 2018-08-13 | 1 | -1/+1 |
| | | |||||
| * | Refactor with Tav help | Jabier Arraiza | 2018-08-05 | 1 | -1/+1 |
| | | |||||
| * | Revert changes | Jabier Arraiza | 2018-08-05 | 1 | -24/+2 |
| | | |||||
| * | Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵ | Jabier Arraiza | 2018-08-05 | 1 | -2/+24 |
| | | | | | pref optional to scale dashes on stroke scale | ||||
| * | Replace typedef enum with enum in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 2 | -10/+10 |
| | | |||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 11 | -11/+11 |
| | | |||||
| * | Run clang-tidy’s modernize-use-noexcept pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+1 |
| | | | | | This removes deprecated dynamic exception specifications. | ||||
| * | Run clang-tidy’s modernize-use-bool-literals pass. | Emmanuel Gil Peyrot | 2018-06-18 | 3 | -6/+6 |
| | | | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call. | ||||
| * | Run clang-tidy’s modernize-pass-by-value pass. | Emmanuel Gil Peyrot | 2018-06-18 | 2 | -3/+5 |
| | | | | | | This avoids having to pass variables by reference before copying them when calling a constructor. | ||||
| * | Run clang-tidy’s modernize-deprecated-headers pass. | Emmanuel Gil Peyrot | 2018-06-18 | 8 | -9/+9 |
| | | | | | This renames most C <*.h> includes into C++ <c*> includes. | ||||
| * | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 2018-06-18 | 17 | -42/+26 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 41 | -343/+343 |
| | | | | | | 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 | 26 | -163/+163 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 6 | -14/+14 |
| | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will. | ||||
| * | Misc. typos | luz.paz | 2018-05-14 | 1 | -1/+1 |
| | | | | Found via `codespell` and `grep` | ||||
| * | Fix bug embeding SVG as PNG | Jabier Arraiza | 2018-05-13 | 1 | -1/+47 |
| | | |||||
| * | Allow link a SVG as image | Jabiertxo Arraiza Cenoz | 2018-05-10 | 1 | -23/+73 |
| | | |||||
| * | Create stateless alignment selector and use it instead | Geoff Lankow | 2018-05-09 | 2 | -10/+9 |
| | | |||||
| * | Add buttons to align grids to page | Geoff Lankow | 2018-05-09 | 3 | -145/+53 |
| | | |||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 48 | -134/+134 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 48 | -134/+134 |
| | | |||||
| * | Merge branch 'updategridwidgets' of gitlab.com:darktrojan/inkscape | Marc Jeanmougin | 2018-04-10 | 4 | -86/+113 |
| |\ | |||||
| | * | Re-enable CanvasXYGrid::updateWidgets and CanvasAxonomGrid::updateWidgets | Geoff Lankow | 2018-03-22 | 4 | -86/+113 |
| | | | |||||
| * | | Add lots of README's. | Tavmjong Bah | 2018-03-30 | 1 | -0/+17 |
| |/ | |||||
| * | Removing sample meson build files. | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -142/+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] display | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -0/+142 |
| | | |||||
| * | Speed up removing items from SPCanvasGroup | Eduard Braun | 2018-03-12 | 1 | -2/+5 |
| | | | | | | | | | | | | | This shortcut is possible as there are no duplicate items in SPCanvasGroup. It reverts to the behavior before ab7cc89c4f9f938575e777530c31312cde116208 which introduced a severe performance regression when deselecting paths with many nodes while the node tool is active. Fixed bugs: - https://bugs.launchpad.net/inkscape/+bug/1652100 - https://bugs.launchpad.net/inkscape/+bug/1745763 | ||||
| * | Add error output when file loading fails. | Tavmjong Bah | 2018-01-30 | 1 | -3/+26 |
| | | |||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 15 | -30/+29 |
| | | | | | A lot of header clean-up. | ||||
| * | Minor include file cleanup. | Tavmjong Bah | 2018-01-23 | 10 | -17/+8 |
| | | |||||
| * | Misc. typos | luz.paz | 2018-01-08 | 3 | -3/+3 |
| | | | | Found via `codespell` | ||||
| * | Merge branch 'hidpi_canvas' | Tavmjong Bah | 2017-12-11 | 19 | -230/+472 |
| |\ | | | | | | | Fixes for rendering canvas and controls on high DPI monitors. | ||||
| | * | Fix rendering of controls that don't invert color. | Tavmjong Bah | 2017-12-11 | 1 | -2/+3 |
| | | | |||||
