| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Cache preference raw values | Marc Jeanmougin | 2018-09-11 | 2 | -0/+7 |
| | | |||||
| * | Make XML tree a double-linked-list (significant improvement on previous node ↵ | Marc Jeanmougin | 2018-09-11 | 4 | -10/+31 |
| | | | | | lookup) | ||||
| * | Fix bug 1684238 | Jabiertxof | 2018-09-11 | 2 | -52/+63 |
| | | |||||
| * | Remove unneeded sp-marshal.{h,cpp}.mingw | Eduard Braun | 2018-09-11 | 2 | -398/+0 |
| | | |||||
| * | Remove the custom handling of column editability, that is not how to do it. | Martin Owens | 2018-09-11 | 1 | -46/+1 |
| | | |||||
| * | fix nullptr bool warning | Thomas Holder | 2018-09-10 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of gitlab.com:inkscape/inkscape into ↵ | Martin Owens | 2018-09-10 | 7 | -22/+60 |
| |\ | | | | | | | yhoshi/inkscape-bug167900 | ||||
| | * | Minor fix | Marc Jeanmougin | 2018-09-09 | 1 | -1/+1 |
| | | | |||||
| | * | copypaste bugfix | Marc Jeanmougin | 2018-09-09 | 2 | -15/+19 |
| | | | |||||
| | * | Update selection-chemistry.cpp | Samuel Buttigieg | 2018-09-08 | 1 | -13/+13 |
| | | | |||||
| | * | fix Bug #1786269 | Xortex | 2018-09-08 | 1 | -0/+15 |
| | | | |||||
| | * | Modified fix for compatibility with poppler 0.64 | Eduard Braun | 2018-09-04 | 4 | -8/+27 |
| | | | | | | | | | | | | | | | This is slightly uglier than a600c6438fef2f4c06f9a4a7d933d99fb054a973 but avoids duplicating strings (which is unnecessary and leaked memory). It's also closer to what upstream intended with the changes in 0.64. | ||||
| * | | Fix bug #167900 | Yuki Hoshino | 2018-08-30 | 2 | -0/+2 |
| |/ | | | | | | | | | https://bugs.launchpad.net/inkscape/+bug/167900 - Tiled imported bitmap textures have errors, also exported By the default extend mode CAIRO_EXTEND_NONE, draw white on a pattern image edge with CAIRO_FILTER_GOOD. Draw an image with CAIRO_EXTEND_PAD. | ||||
| * | Fix opacity of bitmap images in PDF export | Eduard Braun | 2018-08-28 | 2 | -4/+2 |
| | | | | | | | | | | | | | This is a follow-up to 1e31c41a0ef4b0f383d4f9d2941f643ae67ca646. As it turns out the same issue also applied to bitmap images embedded in the SVG. Replacing 'cairo_paint_with_alpha()' -> 'cairo_paint()' prevents reducing opacity when rendering the bitmap onto a cairo surface. Opacity should already be properly handled in CairoRenderContext::popLayer() | ||||
| * | Fix opacity of rasterized filters in PDF export | Eduard Braun | 2018-08-28 | 2 | -0/+5 |
| | | | | | | | | | | | | | | Opacity was applied thrice: 1. when rendering the filter to a pixbuf (i.e. transparency was baked into the bitmap) 2. when rendering this pixbuf onto a cairo surface 3. when actually rendering the (now doubly opaque) item Avoid 1. and 2. and only apply opacity once. Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/381677 | ||||
| * | Fix rendering when a <tspan> has a CSS 'display' property with value 'none'. | Tavmjong Bah | 2018-08-27 | 1 | -0/+5 |
| | | |||||
| * | Fix bug 1789010 - Sanitize template's file name | Christophe Lebras | 2018-08-27 | 1 | -5/+4 |
| | | |||||
| * | Enable autosaves by default, puts them in user cache dir | Marc Jeanmougin | 2018-08-21 | 3 | -6/+9 |
| | | |||||
| * | use user-specific cache dir for clipboard temp file | Marc Jeanmougin | 2018-08-21 | 1 | -4/+4 |
| | | |||||
| * | Fix bug pointed by suv in ↵ | Jabiertxof | 2018-08-17 | 1 | -1/+1 |
| | | | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_95077426 | ||||
| * | Fix tiny size of layer visibility/lock icons | Eduard Braun | 2018-08-16 | 1 | -1/+1 |
| | | |||||
| * | Fix wrong initial glyph size with native pango_win32 font backend | Eduard Braun | 2018-08-16 | 1 | -0/+10 |
| | | | | | | | | | | Turns out somebody (likely cairo or pango) calls SetWorldTransform() during initialization without resetting it. This resulted in the font selected on startup having a wrong (tiny) glyph size. Work around this by explicitly setting the "WorldTransform" again when subsequently selecting the font. | ||||
| * | Relative values for strokes: | Tavmjong Bah | 2018-08-15 | 4 | -18/+47 |
| | | | | | | | Fix segmenation fault on reading dashes with % values. Fix computed value for dashes with % values (use viewport diagonal length). Support % values for stroke width. | ||||
| * | fix a typo | Jabier Arraiza | 2018-08-14 | 1 | -1/+1 |
| | | |||||
| * | Fix 'stroke-dashoffset' with absolute units. | Tavmjong Bah | 2018-08-13 | 1 | -1/+1 |
| | | |||||
| * | fix for bug 1786605 | Jabier Arraiza | 2018-08-12 | 2 | -5/+5 |
| | | |||||
| * | Add a label to apply theme sugested by Christoffer Holmstedt on mailing list | Jabier Arraiza | 2018-08-10 | 3 | -4/+6 |
| | | |||||
| * | Fix bug pointed by moini in ↵ | Jabiertxof | 2018-08-09 | 3 | -2/+3 |
| | | | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_93146271 | ||||
| * | Fixing coding style | Jabier Arraiza | 2018-08-05 | 4 | -69/+69 |
| | | |||||
| * | Fixes pointed by Tav | Jabier Arraiza | 2018-08-05 | 8 | -151/+100 |
| | | |||||
| * | Update to trunk and styling fixes | Jabier Arraiza | 2018-08-05 | 2 | -14/+14 |
| | | |||||
| * | coding style fixes | Jabier Arraiza | 2018-08-05 | 10 | -76/+93 |
| | | |||||
| * | Fixes compiling bugs | Jabier Arraiza | 2018-08-05 | 6 | -22/+30 |
| | | |||||
| * | Refactor with Tav help | Jabier Arraiza | 2018-08-05 | 17 | -65/+175 |
| | | |||||
| * | Revert changes | Jabier Arraiza | 2018-08-05 | 21 | -619/+288 |
| | | |||||
| * | Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵ | Jabier Arraiza | 2018-08-05 | 21 | -288/+619 |
| | | | | | pref optional to scale dashes on stroke scale | ||||
| * | Fixing coding style | Jabiertxo Arraiza Cenoz | 2018-08-04 | 2 | -5/+7 |
| | | |||||
| * | Fix missing icons and warning on ico size in symbols | Jabiertxo Arraiza Cenoz | 2018-08-04 | 6 | -14/+14 |
| | | |||||
| * | Fix coding style | Jabier Arraiza | 2018-08-03 | 1 | -4/+8 |
| | | |||||
| * | Add Maren string improvements | Jabier Arraiza | 2018-08-03 | 1 | -11/+11 |
| | | |||||
| * | Add inkscape app icon to themes | Jabier Arraiza | 2018-08-03 | 1 | -30/+30 |
| | | |||||
| * | Fix test compiling bug | Jabier Arraiza | 2018-08-02 | 1 | -24/+26 |
| | | |||||
| * | Fix test compiling bug | Jabier Arraiza | 2018-08-02 | 1 | -2/+2 |
| | | |||||
| * | Move themes to user system folders | Jabier Arraiza | 2018-08-02 | 1 | -7/+1 |
| | | |||||
| * | Fixing coding style | Jabier Arraiza | 2018-07-31 | 1 | -1/+1 |
| | | |||||
| * | Remove XGD_DATA_DIR as sugestion of su_v | Jabier Arraiza | 2018-07-31 | 6 | -30/+16 |
| | | |||||
| * | Fixing coding style | Jabier Arraiza | 2018-07-31 | 1 | -10/+12 |
| | | |||||
| * | Fixing enviroments in win | Jabier Arraiza | 2018-07-31 | 1 | -3/+1 |
| | | |||||
| * | Fixing enviroments in win | Jabier Arraiza | 2018-07-31 | 1 | -7/+10 |
| | | |||||
| * | Fixing compiling bug in win | Jabier Arraiza | 2018-07-31 | 1 | -2/+6 |
| | | |||||
