| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fixing a win compiling bug and coding style | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -9/+2 | |
| | | ||||||
| * | Fix a win compiling bug and coding style | Jabiertxo Arraiza Cenoz | 2018-07-25 | 4 | -66/+72 | |
| | | ||||||
| * | Working on open folders on WIN | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -1/+7 | |
| | | ||||||
| * | Fix codding style | Jabiertxo Arraiza Cenoz | 2018-07-25 | 2 | -43/+42 | |
| | | ||||||
| * | Fix a compiling bug | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -1/+1 | |
| | | ||||||
| * | Add some Marting sugestions about main.cpp in MR | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -3/+4 | |
| | | ||||||
| * | Improve tooltip for open button in preferences | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -8/+8 | |
| | | ||||||
| * | Improve string for open button in preferences II | Jabiertxo Arraiza Cenoz | 2018-07-25 | 1 | -1/+1 | |
| | | ||||||
| * | Improve string for open button in preferences | Jabiertxo Arraiza Cenoz | 2018-07-25 | 2 | -3/+3 | |
| | | ||||||
| * | Improve the look of prefs buttons | Jabier Arraiza | 2018-07-24 | 2 | -5/+13 | |
| | | ||||||
| * | Fix buttons strings | Jabier Arraiza | 2018-07-24 | 1 | -2/+2 | |
| | | ||||||
| * | Fix buttons strings | Jabier Arraiza | 2018-07-24 | 1 | -2/+2 | |
| | | ||||||
| * | Add buttons to open folders as sugestion of Maren | Jabier Arraiza | 2018-07-24 | 4 | -8/+66 | |
| | | ||||||
| * | Fix a wrongy commit | Jabier Arraiza | 2018-07-24 | 4 | -13/+3 | |
| | | ||||||
| * | Remove pointer | Jabiertxo Arraiza Cenoz | 2018-07-24 | 4 | -6/+16 | |
| | | ||||||
| * | Add themes inkscape folder abailable by the app | Jabiertxo Arraiza Cenoz | 2018-07-24 | 1 | -2/+5 | |
| | | ||||||
| * | Toggle symbolic icons staff depending the theme has it or not | Jabiertxo Arraiza Cenoz | 2018-07-22 | 2 | -8/+41 | |
| | | ||||||
| * | Fixing coding style | Jabier Arraiza | 2018-07-21 | 7 | -115/+105 | |
| | | ||||||
| * | Fixing some icons dont redraw | Jabier Arraiza | 2018-07-21 | 1 | -7/+3 | |
| | | ||||||
| * | Working on themes | Jabier Arraiza | 2018-07-21 | 3 | -9/+7 | |
| | | ||||||
| * | adding gtk-theme | Jabier Arraiza | 2018-07-21 | 35 | -218/+437 | |
| | | ||||||
| * | 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 | |
| |\ \ \ | ||||||
