| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2019-11-19 | Speedup filtering and panning | Jabier Arraiza | 1 | -2/+6 | |
| 2019-11-18 | Selectively disable motion event compression for specific tools | Patrick Storz | 1 | -1/+0 | |
| It was globally disabled in ab71599ea1af1ea5042e35502e9aa722cc4ab51e However most of the time we do not care for intermediate motion events, and forcing to process them only causes unnecessary performance overhead. | |||||
| 2019-11-07 | Fix crash using split canvas with multiple monitors | Jabier Arraiza | 1 | -56/+61 | |
| 2019-10-28 | Fix some blurs iddle large loops | Jabiertxof | 1 | -4/+4 | |
| 2019-10-27 | Remove delay on desktop switch | Jabier Arraiza | 1 | -24/+9 | |
| 2019-10-27 | Fix XRay memory problem by no end iddle | Jabiertxof | 1 | -4/+14 | |
| 2019-10-19 | Add export/import PDF blend modes and add isolation modifier | Jabier Arraiza | 1 | -1/+1 | |
| 2019-10-12 | Move from deprecated GTimeVal to g_get_monotonic_time() | Jabier Arraiza | 1 | -50/+18 | |
| 2019-10-11 | Actualizarsrc/display/sp-canvas.cpp | Jabier Arraiza | 1 | -0/+1 | |
| 2019-10-11 | Fix issue on lagging space panning and resizing canvas pointed br @ede123 in ↵ | Jabier Arraiza | 1 | -16/+39 | |
| RC. Also fix a bug rendering filters with superfast scroll and node tool | |||||
| 2019-10-11 | Canvas profiling improvements. Also changed to a non deprecated measuring ↵ | Jabier Arraiza | 1 | -35/+79 | |
| time pointed by @ede123 in IRC | |||||
| 2019-10-09 | Fix split and xray changes not always toggled | Jabier Arraiza | 1 | -14/+8 | |
| 2019-10-09 | Improve node selection ~x3 removing unneded updateNow() called in non ↵ | Jabier Arraiza | 1 | -7/+26 | |
| necesary places. Also ensure canvas is always redraw | |||||
| 2019-10-07 | Fix remaining # | Jabier Arraiza | 1 | -1/+1 | |
| 2019-10-07 | Add improvements to rendering | Jabier Arraiza | 1 | -5/+7 | |
| 2019-10-07 | Fix issue 931 and also improve a lor rendering on canvas on multiselection, ↵ | Jabier Arraiza | 1 | -3/+14 | |
| maybe in single selection | |||||
| 2019-10-04 | Allow know total process timmed in multiple operations on canvas rendering | Jabiertxof | 1 | -8/+16 | |
| 2019-10-01 | Fix issues pointed by Mc | Jabiertxof | 1 | -9/+10 | |
| 2019-10-01 | Add DEBUG_PERFORMANCE flag to canvas to meassure iddle time and splits procesed | Jabiertxof | 1 | -0/+26 | |
| 2019-09-30 | Reduce memory leaks when dragging shapes | Nathan Lee | 1 | -0/+2 | |
| Remove unnecessary copy per Thomas' suggestion | |||||
| 2019-08-02 | Remove line height code and ficx coding style | Jabiertxof | 1 | -2/+2 | |
| 2019-08-02 | Allow tools sensitive when overflow canvas area also fix a bug i couldent ↵ | Jabiertxof | 1 | -2/+7 | |
| remember about ruberband selection | |||||
| 2019-07-28 | Fix a rendering issue I introduce in previous merge | Jabiertxof | 1 | -2/+0 | |
| 2019-07-28 | Fix some issues with inverse coordinates pointed by Maren | Jabier Arraiza | 1 | -1/+6 | |
| 2019-07-28 | Fix coding style | Jabier Arraiza | 1 | -2/+2 | |
| 2019-07-28 | Add verbs update checkbuttons in menu. Also do improvements requested in ↵ | Jabier Arraiza | 1 | -7/+10 | |
| https://gitlab.com/inkscape/inkscape/issues/323 and improve XRay rendering | |||||
| 2019-05-26 | Rm unused code now Gtk+ >= 3.22 dependency is set | Alexander Valavanis | 1 | -41/+11 | |
| 2019-05-20 | Fix alignment of ruler ticks | Diederik van Lierop | 1 | -6/+2 | |
| 2019-05-12 | Remove support for LCMS 1 | Karl Cheng | 1 | -5/+5 | |
| Now that all platforms (including macOS) now support LCMS 2, we no longer need to support LCMS 1. Fixes: https://bugs.launchpad.net/inkscape/+bug/1133014 | |||||
| 2019-05-04 | Fix GdkMotionEvents under Wayland | Diederik van Lierop | 1 | -1/+1 | |
| 2019-03-20 | Disable GTK3's motion event compression which was making drawing lag. | yale | 1 | -0/+1 | |
| This could be related to https://bugs.launchpad.net/inkscape/+bug/1723247 | |||||
| 2019-02-23 | Make background color affect checkerboard | tim_rawlinson | 1 | -2/+3 | |
| 2019-01-20 | No longer use widget data to store pointer to desktop widget. | Tavmjong Bah | 1 | -2/+3 | |
| 2019-01-07 | Fix bug 1810206: Crash if XRay mode enabled (assertion failed in ↵ | Jabier Arraiza | 1 | -65/+62 | |
| SPCanvas::paintXRayBuffer) and other improvements to XRay | |||||
| 2019-01-02 | modernize loops | Marc Jeanmougin | 1 | -8/+8 | |
| 2018-12-26 | Speed up de-selection by switching to more efficient intrusive list structure | Olli Parviainen | 1 | -38/+45 | |
| De-selection were slow for large path sets because disposal of SPCanvasItems needed to perform linear search through SPCanvasGroup::items linked list for every disposed item separately, meaning O(N^2) operation complexity. For large path sets this became excessively slow. To speed up the disposal operation, changed SPCanvasGroup::items from std::list to boost::intrusive::list that allows getting a linked list position iterator directly from SPCanvasItem pointer in constant time. This reduces the disposal operation complexity from O(N^2) to O(N). Testing with a large path set consisting of >100k items, de-selection became tens of times faster. Signed-off-by: Olli Parviainen <oparviai@iki.fi> | |||||
| 2018-12-09 | Fix toggle rullers in split view and improve speed and rendering to xray | Jabier Arraiza | 1 | -24/+35 | |
| 2018-12-06 | desktop-widget: make rulers private | Alexander Valavanis | 1 | -2/+5 | |
| 2018-12-04 | fix coding style | Jabier Arraiza | 1 | -25/+20 | |
| 2018-12-04 | Ready to review XRay | Jabier Arraiza | 1 | -55/+51 | |
| 2018-12-04 | working on render XRay | Jabier Arraiza | 1 | -15/+94 | |
| 2018-12-04 | Added XRay | Jabier Arraiza | 1 | -27/+60 | |
| 2018-12-01 | Fix coding style | Jabier Arraiza | 1 | -141/+148 | |
| 2018-12-01 | Add scrool insensitive and reset if desktop change size | Jabier Arraiza | 1 | -1/+18 | |
| 2018-12-01 | Move spliter from prefs to SPCanvas to allow multidesktop | Jabiertxof | 1 | -94/+111 | |
| 2018-12-01 | Fixes to contoler position and auto hide | Jabiertxof | 1 | -2/+5 | |
| 2018-12-01 | Allow drag controller on split | Jabiertxof | 1 | -6/+29 | |
| 2018-12-01 | Add some Martin fixes and UX improvements | Jabiertxof | 1 | -92/+38 | |
| 2018-12-01 | Add actions and cleanup cairo draw | Jabier Arraiza | 1 | -119/+148 | |
| 2018-12-01 | Working on split controller | Jabiertxof | 1 | -20/+150 | |
