| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use monospace digits font in messages and spinbuttons | Jabier Arraiza | 2018-11-03 | 1 | -4/+6 |
| | | |||||
| * | Remove 'document-private.h' where not needed plus some other header cleanup. | Tavmjong Bah | 2018-10-22 | 5 | -5/+0 |
| | | |||||
| * | Renamed "Outline thin strokes" to "visible hairlines" to make the intent ↵ | Rick Yorgason | 2018-10-18 | 1 | -2/+2 |
| | | | | | clearer. | ||||
| * | New "Outline thin strokes" view mode which draws thin strokes in outline ↵ | Rick Yorgason | 2018-10-18 | 1 | -0/+2 |
| | | | | | mode so they're easier to see, while still drawing everything else normally. Very useful for making hairline strokes (0.001") for laser cutters. | ||||
| * | Removal of code but breaks gradients | Martin Owens | 2018-10-05 | 2 | -6/+8 |
| | | |||||
| * | Move macros.h and remove unneeded macros | Eduard Braun | 2018-10-01 | 3 | -3/+2 |
| | | |||||
| * | Remove #include "config.h" wherever possible | Eduard Braun | 2018-10-01 | 15 | -52/+1 |
| | | |||||
| * | Move GTKMM_CHECK_VERSION from config.h to it's own header | Eduard Braun | 2018-10-01 | 2 | -0/+4 |
| | | | | | | Avoids having to recompile most of the Inkscape codebase whenever gtkmm is updated. | ||||
| * | Remove #include "config.h" from header files where possible | Eduard Braun | 2018-09-24 | 9 | -32/+4 |
| | | |||||
| * | Fix window resize canvas orientation interference | Thomas Holder | 2018-09-21 | 1 | -1/+4 |
| | | | | | https://bugs.launchpad.net/inkscape/+bug/1792514 | ||||
| * | Remove sp-xmlview-attr with attrdialog (C++) and improve interface | Martin Owens | 2018-09-14 | 3 | -339/+0 |
| | | |||||
| * | Remove colors from gtklistview | Martin Owens | 2018-09-12 | 2 | -7/+6 |
| | | |||||
| * | Allow adding new properties | Martin Owens | 2018-09-12 | 2 | -12/+68 |
| | | |||||
| * | New option to invert y-axis | Thomas Holder | 2018-09-12 | 1 | -2/+6 |
| | | | | | | | | | | 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 | ||||
| * | Refactor xml editor, improve UI and prepare for future additions | Martin Owens | 2018-09-11 | 5 | -230/+93 |
| | | |||||
| * | Fix bug pointed by suv in ↵ | Jabiertxof | 2018-08-17 | 1 | -1/+1 |
| | | | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_95077426 | ||||
| * | Fix bug pointed by moini in ↵ | Jabiertxof | 2018-08-09 | 3 | -2/+3 |
| | | | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_93146271 | ||||
| * | Fixes pointed by Tav | Jabier Arraiza | 2018-08-05 | 1 | -9/+2 |
| | | |||||
| * | coding style fixes | Jabier Arraiza | 2018-08-05 | 2 | -5/+7 |
| | | |||||
| * | Fixes compiling bugs | Jabier Arraiza | 2018-08-05 | 1 | -3/+9 |
| | | |||||
| * | Refactor with Tav help | Jabier Arraiza | 2018-08-05 | 2 | -6/+18 |
| | | |||||
| * | Revert changes | Jabier Arraiza | 2018-08-05 | 2 | -44/+9 |
| | | |||||
| * | Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵ | Jabier Arraiza | 2018-08-05 | 2 | -9/+44 |
| | | | | | pref optional to scale dashes on stroke scale | ||||
| * | DropperToolbar: GtkAction migration | Alexander Valavanis | 2018-07-29 | 3 | -1/+19 |
| | | |||||
| * | Fixing coding style | Jabier Arraiza | 2018-07-21 | 2 | -37/+20 |
| | | |||||
| * | adding gtk-theme | Jabier Arraiza | 2018-07-21 | 11 | -46/+65 |
| | | |||||
| * | Move global functions into SPImage methods. | Emmanuel Gil Peyrot | 2018-06-21 | 1 | -1/+1 |
| | | |||||
| * | Move global functions into SPGradient methods. | Emmanuel Gil Peyrot | 2018-06-21 | 1 | -3/+3 |
| | | |||||
| * | Replace typedef enum with enum in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 2 | -12/+12 |
| | | |||||
| * | Replace typedef struct with struct in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 1 | -2/+2 |
| | | |||||
| * | Replace functions with methods in SPColor. | Emmanuel Gil Peyrot | 2018-06-19 | 1 | -1/+1 |
| | | |||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 18 | -28/+28 |
| | | |||||
| * | Run clang-tidy’s modernize-use-bool-literals pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+1 |
| | | | | | | 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/+4 |
| | | | | | | 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 | 7 | -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 | 6 | -10/+6 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 34 | -500/+500 |
| | | | | | | 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 | 11 | -55/+55 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Fix build issue caused by f09962028d017896279b717a6621a4de772d1b4f on GTK+ ↵ | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+5 |
| | | | | | <3.18. | ||||
| * | ZoomToolbar: C++ify and GtkAction migration | Alexander Valavanis | 2018-06-17 | 1 | -1/+1 |
| | | |||||
| * | Move toolbars to ui/toolbar | Alexander Valavanis | 2018-06-17 | 44 | -13503/+21 |
| | | |||||
| * | Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape | Marc Jeanmougin | 2018-06-14 | 2 | -3/+3 |
| |\ | |||||
| | * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 2 | -3/+3 |
| | | | | | | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will. | ||||
| * | | Merge branch 'gdkmm' of gitlab.com:linkmauve/inkscape | Marc Jeanmougin | 2018-06-14 | 3 | -78/+60 |
| |\ \ | |||||
| | * | | Make shutdown dialogs use gtkmm. | Emmanuel Gil Peyrot | 2018-06-13 | 1 | -56/+37 |
| | | | | | | | | | | | | | | | | Fixes a FIXME, by using g_markup_printf_escaped() we can make sure the filename won’t conflict with Pango markup and be wrongly interpreted. | ||||
| | * | | Make info dialog use gtkmm. | Emmanuel Gil Peyrot | 2018-06-13 | 1 | -11/+6 |
| | | | | |||||
| | * | | Replace all deprecated gdk_keymap_get_default() with ↵ | Emmanuel Gil Peyrot | 2018-06-12 | 2 | -2/+4 |
| | | | | | | | | | | | | | Gdk::Display::get_default()->get_keymap(). | ||||
| | * | | Make SPDesktopWidget::window_get_pointer() use gdkmm. | Emmanuel Gil Peyrot | 2018-06-12 | 1 | -9/+13 |
| | |/ | |||||
| * | | Merge branch 'patch-1' of gitlab.com:Moini/inkscape | Marc Jeanmougin | 2018-06-14 | 1 | -1/+1 |
| |\ \ | |/ |/| | |||||
| | * | Incorporate Eduard's suggestion for Ellipse Undo entry. | Maren Hachmann | 2018-03-08 | 1 | -1/+1 |
| | | | |||||
