| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Reduce width of Transform dialog by making spinbuttons narrower | Geoff Lankow | 2018-07-02 | 1 | -0/+6 |
| | | |||||
| * | Move global functions into SPGradient methods. | Emmanuel Gil Peyrot | 2018-06-21 | 2 | -2/+2 |
| | | |||||
| * | Replace typedef enum with enum in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 2 | -8/+8 |
| | | |||||
| * | Replace typedef struct with struct in POD type declarations. | Emmanuel Gil Peyrot | 2018-06-20 | 1 | -2/+3 |
| | | |||||
| * | Replace functions with methods in SPColor. | Emmanuel Gil Peyrot | 2018-06-19 | 1 | -3/+3 |
| | | |||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 15 | -23/+23 |
| | | |||||
| * | Run clang-tidy’s modernize-use-emplace pass. | Emmanuel Gil Peyrot | 2018-06-18 | 12 | -189/+189 |
| | | | | | | 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 | 10 | -22/+22 |
| | | | | | | 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 | 7 | -11/+20 |
| | | | | | | 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 | 5 | -5/+5 |
| | | | | | 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 | 38 | -75/+57 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 55 | -643/+643 |
| | | | | | | 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 | 65 | -248/+248 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | 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 | 30 | -66/+66 |
| |\ | |||||
| | * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 30 | -66/+66 |
| | | | | | | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will. | ||||
| * | | Merge branch 'fontselection' of gitlab.com:darktrojan/inkscape | Marc Jeanmougin | 2018-06-14 | 1 | -1/+5 |
| |\ \ | |||||
| | * | | In font list, don't change selection if current font is already selected; ↵ | Geoff Lankow | 2018-05-31 | 1 | -1/+5 |
| | | | | | | | | | | | | | other minor fixes | ||||
| * | | | 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. | ||||
| * | | | Keep Features tab in sync with font in Font tab. | Tavmjong Bah | 2018-06-03 | 1 | -0/+1 |
| | | | | |||||
| * | | | Add preview to Font Features tab of Text and Font dialog. | Tavmjong Bah | 2018-06-02 | 2 | -46/+45 |
| | |/ |/| | |||||
| * | | Merge branch 'fix-undefined-references-without-lcms' of ↵ | Marc Jeanmougin | 2018-05-22 | 1 | -24/+24 |
| |\ \ | | | | | | | | | | gitlab.com:libiquity/inkscape | ||||
| | * | | 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 | 3 | -3/+3 |
| | | | | | | | Found via `codespell` and `grep` | ||||
| * | | Fix bug embeding SVG as PNG | Jabier Arraiza | 2018-05-13 | 2 | -0/+8 |
| | | | |||||
| * | | Fixes bugs: #1770760, #1770761, #1770763, #1770769 related to linked SVG | Jabier Arraiza | 2018-05-12 | 2 | -5/+8 |
| | | | |||||
| * | | Allow link a SVG as image | Jabiertxo Arraiza Cenoz | 2018-05-10 | 1 | -1/+1 |
| | | | |||||
| * | | Merge branch 'guidespanel' of gitlab.com:darktrojan/inkscape | Marc Jeanmougin | 2018-05-09 | 2 | -1/+42 |
| |\ \ | |||||
| | * | | Add global guide controls to guides panel | Geoff Lankow | 2018-05-04 | 2 | -1/+42 |
| | | | | |||||
| * | | | Create and use LabelledColorPicker widget | Geoff Lankow | 2018-05-09 | 2 | -11/+5 |
| | | | | |||||
| * | | | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 44 | -149/+149 |
| | | | | | | | | | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | | | Rename "Glyphs" dialog to "Unicode Characters" dialog to better reflect what ↵ | Tavmjong Bah | 2018-05-03 | 2 | -7/+5 |
| | | | | | | | | | | | | | | | | | | | it does. Minor UI tweaks and bug fixes. | ||||
| * | | | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 44 | -149/+149 |
| | | | | |||||
| * | | | moved libcroco, libuemf, libdepixelize to 3rdparty folder | Marc Jeanmougin | 2018-04-29 | 1 | -1/+1 |
| | | | | |||||
| * | | | More progress on variable fonts support. | Tavmjong Bah | 2018-04-28 | 2 | -3/+0 |
| | | | | |||||
| * | | | Add start of 'font-variations' widget. | Tavmjong Bah | 2018-04-26 | 2 | -0/+5 |
| | | | | | | | | | | | | | Some code cleanup. | ||||
| * | | | Implement FontSelectorToolbar. | Tavmjong Bah | 2018-04-25 | 2 | -11/+8 |
| |/ / | | | | | | | | | | | | | A version of FontSelector designed for the text toolbar. This is meant as a replacement for Ink_ComboBoxEntry_Action. It is not ready for use. Also includes some code cleanup. | ||||
| * | | Replace C FontSelector by C++ FontSelector. | Tavmjong Bah | 2018-04-13 | 4 | -87/+71 |
| | | | | | | | | | | | | | Fix synchonization problems between users of FontLister (FontSelector/Text toolbar). Hide unused size widget in Glyphs dialog. Display style names in FontSelector using own style. | ||||
| * | | Cleanup Text and Font dialog. | Tavmjong Bah | 2018-04-07 | 2 | -274/+62 |
| | | | | | | | | | | | | | Includes removal of unused buttons. These buttons were redundant with those in the Text toolbar except for TextPath offset... which will need to be added to the toolbar. | ||||
| * | | a bit more of warning cleanup | Felipe Corrêa da Silva Sanches | 2018-03-28 | 1 | -1/+2 |
| | | | |||||
| * | | a few more fixes to build warnings related to libnrtype | Felipe Corrêa da Silva Sanches | 2018-03-27 | 1 | -4/+2 |
| | | | |||||
| * | | Base LPE refactor | Jabier Arraiza | 2018-03-26 | 1 | -29/+14 |
| |/ | |||||
| * | Allow to align multiple objects as group relatively to a single object | Eduard Braun | 2018-02-28 | 1 | -2/+11 |
| | | | | | | | | This makes "treat selection as group" useful with the selections "Last selected / First selected / Biggest object / Smallest object" in which case all elements will be moved as a group relative to the "focused" element which will be kept fixed. | ||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 39 | -357/+450 |
| | | | | | A lot of header clean-up. | ||||
