| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Remove unneded asignaments | Jabiertxof | 2019-07-29 | 1 | -2/+0 | |
| | | | ||||||
| * | | fix a clang marked issue | Jabiertxof | 2019-07-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | fix coding style | Jabiertxof | 2019-07-29 | 3 | -13/+10 | |
| | | | ||||||
| * | | Add Patrick improvements to verbs toggle menu items | Jabiertxof | 2019-07-29 | 8 | -37/+43 | |
| | | | ||||||
| * | | Fix for bug https://gitlab.com/inkscape/inbox/issues/699 | Jabiertxof | 2019-07-28 | 2 | -5/+20 | |
| | | | ||||||
| * | | Fix a rendering issue I introduce in previous merge | Jabiertxof | 2019-07-28 | 1 | -2/+0 | |
| | | | ||||||
| * | | Fix coding style | Jabier Arraiza | 2019-07-28 | 1 | -2/+1 | |
| | | | ||||||
| * | | Fix some issues with inverse coordinates pointed by Maren | Jabier Arraiza | 2019-07-28 | 4 | -6/+12 | |
| | | | ||||||
| * | | Fix coding style | Jabier Arraiza | 2019-07-28 | 3 | -13/+11 | |
| | | | ||||||
| * | | Add verbs update checkbuttons in menu. Also do improvements requested in ↵ | Jabier Arraiza | 2019-07-28 | 6 | -29/+110 | |
| | | | | | | | | | https://gitlab.com/inkscape/inkscape/issues/323 and improve XRay rendering | |||||
| * | | Merge branch 'master' of gitlab.com:asiersarasua/inkscape | Marc Jeanmougin | 2019-07-28 | 1 | -11951/+1280 | |
| |\ \ | ||||||
| | * | | Basque translation update | assar | 2019-07-18 | 1 | -11951/+1280 | |
| | | | | ||||||
| * | | | Fix #336 Connector avoid bbox of non-shapes | Thomas Holder | 2019-07-27 | 1 | -4/+13 | |
| | | | | ||||||
| * | | | Make doc2dt a document property | Thomas Holder | 2019-07-27 | 16 | -78/+84 | |
| | | | | | | | | | | | | | Closes #340 | |||||
| * | | | Crashfix for connectors avoid selected items | Nathan Lee | 2019-07-27 | 1 | -3/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | Handle cases where selected item has no points. E.g. Text (grouped) or symbols Address gitlab.com/inkscape/inbox/issues/643 | |||||
| * | | | Merge branch 'lpe-strings' of https://gitlab.com/Moini/inkscape | Marc Jeanmougin | 2019-07-27 | 7 | -69/+69 | |
| |\ \ \ | ||||||
| | * | | | Remove some trailing whitespace. | Moini | 2019-07-20 | 3 | -20/+20 | |
| | | | | | ||||||
| | * | | | Improve some LPE descriptions. | Moini | 2019-07-20 | 7 | -49/+49 | |
| | |\ \ \ | ||||||
| | | * | | | Improve title text for LPE button that pastes a path from the clipboard to ↵ | Moini | 2019-07-20 | 3 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | use with the current LPE | |||||
| | | * | | | Small string fixes in rotate copies and mirror lpe | Maren Hachmann | 2019-04-25 | 2 | -3/+3 | |
| | | | | | | ||||||
| | | * | | | Update lpe-bool.cpp | Maren Hachmann | 2019-04-25 | 1 | -7/+7 | |
| | | | | | | ||||||
| | | * | | | Add missing descriptions (mostly for experimental LPEs) | Maren Hachmann | 2019-04-24 | 1 | -42/+42 | |
| | | | | | | ||||||
| * | | | | | Distribute/Move considers selection order | Nathan Lee | 2019-07-27 | 2 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Only used when objects have same anchor position. Address gitlab.com/inkscape/inbox/issues/665 | |||||
| * | | | | | Fix for bug https://gitlab.com/inkscape/inbox/issues/695 disabled elemets ↵ | Jabiertxof | 2019-07-26 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | | | | not lower color | |||||
| * | | | | | Add logging to help with debugging | René de Hesselle | 2019-07-24 | 11 | -26/+62 | |
| | | | | | | ||||||
| * | | | | | Marks string as translatable. | Marc Jeanmougin | 2019-07-24 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inkscape/issues/349 | |||||
| * | | | | | SelectedColor: Add reminder | Patrick Storz | 2019-07-22 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't properly emit 'signal_changed' after dragging. This was removed to avoid other issues in 401c2f70ce1ffcdf7a041c27df8c06e19f42e847 See also https://gitlab.com/inkscape/inkscape/issues/345 | |||||
| * | | | | | Preferences: add methods to set/get unsigned integers | Patrick Storz | 2019-07-22 | 2 | -10/+101 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Those should be used for RGBA color values, which would overflow the signed type otherwise. Replacement will be seamless and fully backwards-compatible, as we can read the overflowed (i.e. negative) signed integers we used to save and they will be properly unwrapped. Also reading the unsigned ints as signed ints in older versions of Inkscape will still work, as we always depended on the undefined behavior of atoi in case of out of range numbers (which luckily is means overflowing in gcc). | |||||
| * | | | | | Update jhbuild | René de Hesselle | 2019-07-21 | 17 | -198/+272 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a massive internal update due to changes in JHBuild. Update Python to 3.7.4. | |||||
| * | | | | | Make menu icon preference apply to Layers and Objects dialogs | Patrick Storz | 2019-07-21 | 7 | -72/+100 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Also fix "show-icons" attribute inheritance in menus.xml and make it apply to canvas icons. | |||||
| * | | | | | Simplify code for context menu items of Layers and Objects dialogs | Patrick Storz | 2019-07-20 | 4 | -114/+68 | |
| | | | | | | ||||||
| * | | | | | Fix icon positions in context menus of Layers and Objects dialogs | Patrick Storz | 2019-07-20 | 2 | -2/+13 | |
| |/ / / / | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inbox/issues/462 | |||||
| * | | | | Preferences: save shortcut file location relative to INKSCAPE_DATADIR | Patrick Storz | 2019-07-19 | 1 | -3/+18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | This ensures the stored preference stays valid even if the install location of Inkscape changes or the user switches between parallel installations on the same machine. | |||||
| * | | | | Fix coding style | Jabiertxof | 2019-07-19 | 1 | -8/+7 | |
| | | | | | ||||||
| * | | | | Pressure improvements | Jabiertxof | 2019-07-19 | 2 | -126/+123 | |
| | | | | | ||||||
| * | | | | Fix coding style | Jabier Arraiza | 2019-07-19 | 2 | -13/+13 | |
| | | | | | ||||||
| * | | | | Fixes for pressure pencil | Jabier Arraiza | 2019-07-19 | 11 | -138/+178 | |
| | | | | | ||||||
| * | | | | Improvements finish pointed by Maren | Jabier Arraiza | 2019-07-19 | 13 | -94/+157 | |
| | | | | | ||||||
| * | | | | Fix translations and coding style | Jabier Arraiza | 2019-07-19 | 6 | -61/+48 | |
| | | | | | ||||||
| * | | | | Improvemets to power pencil | Jabiertxof | 2019-07-19 | 10 | -192/+213 | |
| | | | | | ||||||
| * | | | | Fix maren pointed bugs | Jabiertxof | 2019-07-19 | 3 | -68/+44 | |
| | | | | | ||||||
| * | | | | Add ruler color customizable | Jabier Arraiza | 2019-07-19 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | icons: clarify eraser icon | Patrick Storz | 2019-07-19 | 1 | -38/+22 | |
| | | | | | ||||||
| * | | | | icons: clarify layer-rename icon | Patrick Storz | 2019-07-19 | 1 | -58/+21 | |
| | | | | | ||||||
| * | | | | icons: do not re-use 'layer-rename' for "Move selection to layer" | Patrick Storz | 2019-07-19 | 5 | -116/+84 | |
| | | | | | ||||||
| * | | | | icons: replace deprecated gtk stock icons | Patrick Storz | 2019-07-19 | 4 | -3/+33 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | They seems to be missing in some environments already... Fixes https://gitlab.com/inkscape/inkscape/issues/335 | |||||
| * | | | | icons: Fix non-symbolic icon that got symbolic by accident | Patrick Storz | 2019-07-19 | 1 | -90/+793 | |
| | | | | | ||||||
| * | | | | Fix broken or incorrect icons in Tango theme | Nathan Lee | 2019-07-19 | 31 | -141/+1039 | |
| | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | - Created draw-ellipse-chord - Take 0.92's transform-rotate, object-rows, object-columns - Take 0.92's guides, grid-axonometric, grid-rectangular - Changed xml-node-delete icon from + to x - Fix transforms in various files - Address gitlab.com/inkscape/inkscape/issues/52 | |||||
| * | | | Avoid code duplication in ConcreteInkscapeApplication<T>::on_open() | Patrick Storz | 2019-07-17 | 2 | -47/+32 | |
| | | | | ||||||
| * | | | Stop End button selecting first swatch in list | Nathan Lee | 2019-07-17 | 2 | -9/+33 | |
| | | | | | | | | | | | | | Fix gitlab.com/inkscape/inbox/issues/659 | |||||
