| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix non-standard type | Eduard Braun | 2018-07-03 | 1 | -1/+1 |
| | | |||||
| * | Reduce width of Transform dialog by making spinbuttons narrower | Geoff Lankow | 2018-07-02 | 3 | -0/+17 |
| | | |||||
| * | Merge branch 'sp_print' of gitlab.com:linkmauve/inkscape | Marc Jeanmougin | 2018-06-21 | 2 | -2/+2 |
| |\ | |||||
| | * | Move global functions into SPGradient methods. | Emmanuel Gil Peyrot | 2018-06-21 | 2 | -2/+2 |
| | | | |||||
| * | | Move pixmaps to ui/pixmaps, and update the README accordingly. | Emmanuel Gil Peyrot | 2018-06-21 | 76 | -52/+2102 |
| |/ | |||||
| * | Replace typedef enum with enum in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 6 | -18/+18 |
| | | |||||
| * | Replace typedef struct with struct in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 3 | -8/+9 |
| | | |||||
| * | Replace functions with methods in SPColor. | Emmanuel Gil Peyrot | 2018-06-19 | 7 | -63/+63 |
| | | |||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 22 | -115/+115 |
| | | |||||
| * | Run clang-tidy’s modernize-use-emplace pass. | Emmanuel Gil Peyrot | 2018-06-18 | 22 | -226/+226 |
| | | | | | | This reduces the boilerplate required to add a new element to a container. | ||||
| * | Run clang-tidy’s modernize-use-bool-literals pass. | Emmanuel Gil Peyrot | 2018-06-18 | 17 | -73/+73 |
| | | | | | | 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 | 11 | -19/+33 |
| | | | | | | 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 | 25 | -25/+25 |
| | | | | | 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 | 73 | -151/+110 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 174 | -1935/+1935 |
| | | | | | | 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 | 152 | -740/+740 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | ZoomToolbar: C++ify and GtkAction migration | Alexander Valavanis | 2018-06-17 | 5 | -10/+178 |
| | | |||||
| * | Move toolbars to ui/toolbar | Alexander Valavanis | 2018-06-17 | 44 | -4/+13467 |
| | | |||||
| * | Increase allowed precision for filter "offset" primitive. | Tavmjong Bah | 2018-06-15 | 1 | -2/+2 |
| | | |||||
| * | Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape | Marc Jeanmougin | 2018-06-14 | 40 | -86/+86 |
| |\ | |||||
| | * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 40 | -86/+86 |
| | | | | | | | | | | | 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 | 5 | -27/+23 |
| |\ \ | |||||
| | * | | Replace all deprecated gdk_keymap_get_default() with ↵ | Emmanuel Gil Peyrot | 2018-06-12 | 3 | -5/+8 |
| | | | | | | | | | | | | | Gdk::Display::get_default()->get_keymap(). | ||||
| | * | | Make ToolBase::cursor use gdkmm and smart pointers. | Emmanuel Gil Peyrot | 2018-06-12 | 3 | -22/+15 |
| | |/ | |||||
| * | | Merge branch 'fontselection' of gitlab.com:darktrojan/inkscape | Marc Jeanmougin | 2018-06-14 | 2 | -5/+12 |
| |\ \ | |||||
| | * | | In font list, don't change selection if current font is already selected; ↵ | Geoff Lankow | 2018-05-31 | 2 | -5/+12 |
| | | | | | | | | | | | | | other minor fixes | ||||
| * | | | Merge branch 'fontmarkup' of gitlab.com:darktrojan/inkscape | Marc Jeanmougin | 2018-06-14 | 1 | -2/+3 |
| |\ \ \ | |||||
| | * | | | Fix three more instances of incorrectly escaped markup | Geoff Lankow | 2018-05-31 | 1 | -2/+3 |
| | |/ / | |||||
| * | | | Merge branch 'patch-1' of gitlab.com:Moini/inkscape | Marc Jeanmougin | 2018-06-14 | 1 | -1/+1 |
| |\ \ \ | |||||
| | * | | | Incorporate some of Mihaela's suggestions. | Maren Hachmann | 2018-05-11 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Try a different tool tip that hopefully can help users determine what to ↵ | Maren Hachmann | 2018-03-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | expect on change of the rendering tile multiplicator parameter. | ||||
| | * | | | Try to clarify what the new tile size option is for. | Maren Hachmann | 2018-03-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | Might still need improvement. | ||||
| * | | | | Create at least two radio buttons for a table. | Tavmjong Bah | 2018-06-14 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | | | | | | Calculation of number of radio buttons to create could be "wrong" due to script and language tags of tables. | ||||
| * | | | | Limit style alternatives label width. | Tavmjong Bah | 2018-06-14 | 1 | -0/+7 |
| | | | | | |||||
| * | | | | Add radio buttons for font style alternates. | Tavmjong Bah | 2018-06-14 | 2 | -63/+163 |
| | | | | | |||||
| * | | | | Improvements to the Font Features dialog. Better OpenType coverage. | Tavmjong Bah | 2018-06-11 | 1 | -55/+147 |
| | |_|/ |/| | | |||||
| * | | | Add GUI support for 'font-variant-east-asian' property. | Tavmjong Bah | 2018-06-07 | 2 | -2/+270 |
| | | | | |||||
| * | | | Remove tables that should not be exposed to user from OpenType table list. | Tavmjong Bah | 2018-06-05 | 1 | -0/+19 |
| | | | | |||||
| * | | | Use all available space for Ordinal label. | Tavmjong Bah | 2018-06-05 | 1 | -1/+1 |
| | | | | |||||
| * | | | Prevent widget from getting too big. | Tavmjong Bah | 2018-06-05 | 2 | -14/+41 |
| | | | | |||||
| * | | | Keep Features tab in sync with font in Font tab. | Tavmjong Bah | 2018-06-03 | 3 | -0/+12 |
| | | | | |||||
| * | | | Add preview to Font Features tab of Text and Font dialog. | Tavmjong Bah | 2018-06-02 | 4 | -53/+119 |
| | |/ |/| | |||||
| * | | Merge branch 'fix-undefined-references-without-lcms' of ↵ | Marc Jeanmougin | 2018-05-22 | 2 | -33/+33 |
| |\ \ | | | | | | | | | | gitlab.com:libiquity/inkscape | ||||
| | * | | colorspace::Component: Fix undefined references without lcms | Patrick McDermott | 2018-05-20 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | colorspace::Component's constructors are unconditionally referenced but were defined only if either HAVE_LIBLCMS1 or HAVE_LIBLCMS2 is defined. | ||||
| | * | | DocumentProperties: Fix undefined references without lcms | Patrick McDermott | 2018-05-20 | 1 | -24/+24 |
| | | | | | | | | | | | | | | | | | | | | | | Inkscape::UI::Dialog::DocumentProperties::create_guides_around_page() and Inkscape::UI::Dialog::DocumentProperties::delete_all_guides() are unconditionally referenced but were defined only if either HAVE_LIBLCMS1 or HAVE_LIBLCMS2 is defined. | ||||
| * | | | Print: Match document size against known paper sizes | Patrick McDermott | 2018-05-20 | 1 | -8/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Custom paper sizes work with some printer drivers but not others. EPSON's ESC/P-R CUPS driver for example scales a custom-sized document to ISO A4. (It apparently used to just bail on unknown page sizes.) Matching the document size against a known paper size in Inkscape prevents the driver from scaling to the wrong paper size. Fixes an issue discussed in comments 3, 4, 5, and 6 of <https://bugs.launchpad.net/inkscape/+bug/630635>. | ||||
| * | | | Print: C++ify | Patrick McDermott | 2018-05-20 | 2 | -77/+71 |
| |/ / | |||||
| * | | Fis maren improvements to embed/import | Jabier Arraiza | 2018-05-15 | 1 | -2/+2 |
| | | | |||||
| * | | Misc. typos | luz.paz | 2018-05-14 | 7 | -7/+7 |
| | | | | | | | Found via `codespell` and `grep` | ||||
| * | | Fix bug embeding SVG as PNG | Jabier Arraiza | 2018-05-13 | 2 | -0/+8 |
| | | | |||||
