summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | Fix Inkscape crashing on Windows (and possibly other OSs) if $LANG is set to ↵Eduard Braun2017-03-061-12/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | anything but "C". The crash was caused by a call to "std::locale("")" which threw an error because std::locale support is not fully implemented in libstdc++ yet (see linked bug for details). Fixed bugs: - https://launchpad.net/bugs/1666314 (bzr r15572)
* | | | | | | | Fixes bug Envelope Deformation LPE makes Inkscape fail to undo properlyJabiertxof2017-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1668003 (bzr r15571)
* | | | | | | | Fix bug pointed by suv on IRC bad using of unicode degree signJabiertxof2017-03-061-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15570)
* | | | | | | | Fixes bug 1663952Jabiertxof2017-03-061-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Title: Selection tool: transformation handles vanish temporarily When happends: When selecting a object and moving it in a distance less than dragtolerance value, the handles of the item disapear. How fix: Internal code deprecate transforms if the transform is empty, so if the transform is empty I force show handles Fixed bugs: - https://launchpad.net/bugs/1663952 (bzr r15569)
* | | | | | | | EMF/WFM export: Fix crash when selecting "Convert gradients to colored ↵Eduard Braun2017-03-062-6/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | polygon series" The problem where calls of "sprintf()" to format SVG path data. Unfortunately depending on the locale set at this point via "setlocale()" the output could contain commas (,) instead of dots (.) as decimal spearator resulting in invalid path data. Fixed bugs: - https://launchpad.net/bugs/1549015 (bzr r15568)
* | | | | | | | Fix ACLsEduard Braun2017-03-0525-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15567)
* | | | | | | | CMake: python2-numpy was missing dependenciesEduard Braun2017-03-051-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15566)
* | | | | | | | CMake: This should obviously have been an environment variable instead of a ↵Eduard Braun2017-03-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMake variablle (thanks su_v!) (bzr r15565)
* | | | | | | | Support for building with MSYS2Eduard Braun2017-03-045-57/+385
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See Wiki for build instructions: http://wiki.inkscape.org/wiki/index.php/Compiling_Inkscape_on_Windows_with_MSYS2 (bzr r15564)
* | | | | | | | re-commit rev 15003. (Bug 1668853)Alvin Penner2017-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1668853 (bzr r15563)
* | | | | | | | https://bugs.launchpad.net/inkscape/+bug/1496836Alexandru-Daniel Roman2017-03-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A simple change to selection tool status message. (bzr r15562)
* | | | | | | | Implement arc "chord" type. (Matches Krita "chord" arc type.)Tavmjong Bah2017-03-027-66/+139
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15561)
* | | | | | | | Add units (px) to size being shown in native Windows file open dialog and ↵Eduard Braun2017-03-021-12/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix wrong size being shown for EMF/WMF files (bzr r15560)
* | | | | | | | Fix for native Windows file open dialog only showing the first character of ↵Eduard Braun2017-03-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the file name below the preview. There seems to be some confusion wheter the type specifier "%s" means char or wchar and the behavior even changes between different versions of MinGW (bzr r15559)
* | | | | | | | Fix SVG file preview in Windows native file open dialog.Eduard Braun2017-03-011-103/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/802904 (bzr r15558)
* | | | | | | | Fix encoding issues with title field in native Windows file save dialog.Eduard Braun2017-02-281-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were neither using Unicode versions of the WinAPI function nor properly converting character encodings which resultet in garbled output in the title field in the best case and invalid SVG output in the worst case. Fixed bugs: - https://launchpad.net/bugs/576126 - https://launchpad.net/bugs/1627551 (bzr r15557)
* | | | | | | | Makes selection complexity linear in the number of selected objects instead ↵Marc Jeanmougin2017-02-282-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of quadratic due to too many signals sent Fixed bugs: - https://launchpad.net/bugs/1666714 (bzr r15556)
* | | | | | | | merge minor refactoringShlomi Fish2017-02-2812-274/+230
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | (bzr r15555)
| * \ \ \ \ \ \ \ Merged.Shlomi Fish2017-02-2387-8413/+8654
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.19)
| * \ \ \ \ \ \ \ \ Merged.Shlomi Fish2017-02-06182-6795/+27033
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.18)
| * \ \ \ \ \ \ \ \ \ Merged.Shlomi Fish2017-01-28112-18974/+15386
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.17)
| * \ \ \ \ \ \ \ \ \ \ Merged.Shlomi Fish2017-01-10199-11494/+27023
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.16)
| * \ \ \ \ \ \ \ \ \ \ \ Merged.Shlomi Fish2017-01-0656-23073/+34315
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.15)
| * | | | | | | | | | | | | Remove an old comment which I don't understand.Shlomi Fish2017-01-061-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems like a todo which may or may not have been followed. (bzr r15369.1.14)
| * | | | | | | | | | | | | Remove some code that doesn't do anything.Shlomi Fish2017-01-041-22/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was a comment to this effect there. (bzr r15369.1.13)
| * | | | | | | | | | | | | Remove an unused local .cpp enum.Shlomi Fish2017-01-041-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.12)
| * | | | | | | | | | | | | Correct/rephrase a comment. Remove trailing space.Shlomi Fish2017-01-041-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.11)
| * | | | | | | | | | | | | Cleanup: remove an unused local enum declaration.Shlomi Fish2017-01-041-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.10)
| * | | | | | | | | | | | | Merged.Shlomi Fish2017-01-041-6/+18
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.9)
| * | | | | | | | | | | | | | Extract some common code into a routine.Shlomi Fish2017-01-043-18/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.8)
| * | | | | | | | | | | | | | Rename id in comment to make it more according to the code.Shlomi Fish2017-01-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.7)
| * | | | | | | | | | | | | | Convert source files from latin1 to utf-8.Shlomi Fish2017-01-042-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is the path of least surprise and doesn't break my scripts. (bzr r15369.1.6)
| * | | | | | | | | | | | | | Merged.Shlomi Fish2017-01-03409-19016/+6971
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.5)
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merged.Shlomi Fish2016-12-317-8052/+7357
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.4)
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merged.Shlomi Fish2016-12-3013-6054/+15019
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15369.1.3)
| * | | | | | | | | | | | | | | | | Refactor vanishing-point.cpp .Shlomi Fish2016-12-281-25/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Convert varvarname to an array (see http://perl.plover.com/varvarname.html ). (bzr r15369.1.2)
| * | | | | | | | | | | | | | | | | Pass vanishing-point.cpp thru clang-format.Shlomi Fish2016-12-281-188/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It rendered wrongly in gvim (see: http://www.shlomifish.org/Files/files/images/vanishing-point--cpp--gvim.png ) and had other mis-stylings. (bzr r15369.1.1)
* | | | | | | | | | | | | | | | | | Add some comment. Comment out unused signals.Tavmjong Bah2017-02-283-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15554)
* | | | | | | | | | | | | | | | | | This patch adds the copy-paste formated text functionality to the text tool.Alexandru-Daniel Roman2017-02-283-2/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't retain the font-size and font-style properties. (bzr r15553)
* | | | | | | | | | | | | | | | | | More consistent naming scheme.Tavmjong Bah2017-02-282-17/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15552)
* | | | | | | | | | | | | | | | | | Add a very simple prototype dialog as an example and test of deriving from ↵Tavmjong Bah2017-02-277-0/+259
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Panel. To be disabled for releases. (bzr r15551)
* | | | | | | | | | | | | | | | | | Fix desktop/document tracking.Tavmjong Bah2017-02-272-76/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15550)
* | | | | | | | | | | | | | | | | | CMake: Purge GS_PATH and GS_BINEduard Braun2017-02-264-39/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They're only defined on Windows while not being used anywhere (bzr r15549)
* | | | | | | | | | | | | | | | | | sp-canvas: Migrate to seat_grabAlex Valavanis2017-02-261-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15548)
* | | | | | | | | | | | | | | | | | Gtk+ 3 deprecation fixesAlex Valavanis2017-02-263-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15547)
* | | | | | | | | | | | | | | | | | Don't block data entry into the text-tool font-size entry widget after an ↵Tavmjong Bah2017-02-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | empty entry. (bzr r15546)
* | | | | | | | | | | | | | | | | | Display both style sheet and style attribute property values in CSS pane.Tavmjong Bah2017-02-244-37/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15545)
* | | | | | | | | | | | | | | | | | [Bug #1464987] --export-latex crashes with a svg file.sian-ht2017-02-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1464987 (bzr r15544)
* | | | | | | | | | | | | | | | | | [Bug #980527] Gcodetools: Unlocalized messages.Nicolas Dufour2017-02-2412-1699/+1813
| |_|_|_|_|_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/980527 (bzr r15543)
* | | | | | | | | | | | | | | | | Display style attribute properties when object row selected. Allow their ↵Tavmjong Bah2017-02-232-20/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | deletion. (bzr r15542)