| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | Another pixel alignment fix | Diederik van Lierop | 2019-05-20 | 1 | -7/+17 | |
| | | | | ||||||
| * | | | Fix the alignment of the guideline origin (and other controls), such that it ↵ | Diederik van Lierop | 2019-05-20 | 4 | -43/+58 | |
| | | | | | | | | | | | | | is drawn at exactly the right screen pixel | |||||
| * | | | Improve reading of last LPE offset commit | Jabiertxof | 2019-05-20 | 1 | -2/+3 | |
| | | | | ||||||
| * | | | Improvements to Offset LPE | Jabiertxof | 2019-05-20 | 4 | -167/+150 | |
| | | | | ||||||
| * | | | Remove unwanted file | Jabiertxof | 2019-05-20 | 1 | -0/+0 | |
| | | | | ||||||
| * | | | Add knot ungrabbed event | Jabiertxof | 2019-05-20 | 18 | -1/+63 | |
| | | | | ||||||
| * | | | Improvements to geom-pathstroke and offset LPE. | Jabiertxof | 2019-05-17 | 2 | -44/+27 | |
| | | | | ||||||
| * | | | Ask Python extensions to return UTF-8 data | Karl Cheng | 2019-05-17 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default, Python 2.x will encode output as ASCII to STDOUT/STDERR if the output is piped. This commit explicitly requests UTF-8 output by setting the PYTHONIOENCODING environment variable. Note this will not fix text encoding problems where the extension itself does not support Unicode properly. Refs: https://gitlab.com/inkscape/extensions/merge_requests/90 | |||||
| * | | | Fix a compiling issue and add some improvements | Jabiertxof | 2019-05-16 | 3 | -29/+40 | |
| | | | | ||||||
| * | | | Improve the sync path on clone LPE | Jabiertxof | 2019-05-16 | 2 | -35/+96 | |
| | | | | ||||||
| * | | | Fix a bug on reloading LPE Clone effect | Jabiertxof | 2019-05-16 | 3 | -5/+6 | |
| | | | | ||||||
| * | | | Fork LPE if necesary also in LPEItem childs | Jabiertxof | 2019-05-16 | 2 | -2/+12 | |
| | | | | ||||||
| * | | | Add new mode to Clone LPE to allow custom clones locked. Also fix to handle ↵ | Jabier Arraiza | 2019-05-15 | 2 | -25/+49 | |
| | | | | | | | | | | | | | SP_TEXT | |||||
| * | | | Fix for bug 248:Segmenation fault doing Undo with XML dialog open | Jabier Arraiza | 2019-05-14 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Prevent dialog from becoming super-wide. | Tavmjong Bah | 2019-05-14 | 1 | -8/+10 | |
| | | | | ||||||
| * | | | Support percentage (include default) values for linear and radial gradient ↵ | Tavmjong Bah | 2019-05-14 | 4 | -11/+86 | |
| | | | | | | | | | | | | | | | | | | | attribues. Fix for inbox issue #415. | |||||
| * | | | Remove error message when SVG OpenType table is empty. | Tavmjong Bah | 2019-05-14 | 1 | -2/+7 | |
| | | | | ||||||
| * | | | Regression fix: hide some toolbar icons on startup | Nathan Lee | 2019-05-13 | 5 | -71/+56 | |
| | | | | | | | | | | | | | | | | | | | | | | Pencil toolbar also given some checks for gitlab.com/inkscape/inkscape/issues/92 Fixes gitlab.com/inkscape/inbox/issues/182 | |||||
| * | | | Allow easy apply last LPE used | Jabiertxof | 2019-05-13 | 2 | -10/+12 | |
| | | | | ||||||
| * | | | Remove support for LCMS 1 | Karl Cheng | 2019-05-12 | 20 | -239/+157 | |
| | | | | | | | | | | | | | | | | | | | | | | 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 | |||||
| * | | | rename to avoid name clashes. | Shlomi Fish | 2019-05-12 | 1 | -2/+2 | |
| | | | | ||||||
| * | | | Extract the TagEmitter.append method. | Shlomi Fish | 2019-05-12 | 1 | -41/+39 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is Refactoring / code cleanup. See: * https://refactoring.com/catalog/extractMethod.html * https://en.wikipedia.org/wiki/Code_refactoring * https://www.refactoring.com/ * https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/ Some small optimisations may have slipped in as well. | |||||
| * | | | Extract a common expression into a variable/const. | Shlomi Fish | 2019-05-12 | 1 | -63/+64 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is Refactoring / code cleanup. See: * https://www.refactoring.com/ * https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/ Some small optimisations may have slipped in as well. | |||||
| * | | | Merge branch 'retrieve-pattern-from-id' of gitlab.com:Qantas94Heavy/inkscape | Marc Jeanmougin | 2019-05-12 | 1 | -14/+18 | |
| |\ \ \ | ||||||
| | * | | | Retrieve pattern object from ID before casting | Karl Cheng | 2019-05-12 | 1 | -14/+18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The actual pattern object itself needs to be retrieved before casting as SP_PATTERN(). You can't magically get an SPPattern* out of a gchar*. Also move SP_IS_PATTERN() check to before it is used. Fixes: https://bugs.launchpad.net/inkscape/+bug/1378595 | |||||
| * | | | | Stop crash on newline when entering rtl text | Nathan Lee | 2019-05-12 | 1 | -4/+2 | |
| | | | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inkscape/issues/72 | |||||
| * | | | | Add Delete to Objects Dialog context menu | Nathan Lee | 2019-05-12 | 1 | -2/+3 | |
| |/ / / | | | | | | | | | | Fixes https://gitlab.com/inkscape/inkscape/issues/226 | |||||
| * | | | Fix meassuring problems in meassure LPE | Jabier Arraiza | 2019-05-12 | 2 | -20/+11 | |
| | | | | ||||||
| * | | | Stop Connector tool avoidance crash in flatpak | Nathan Lee | 2019-05-12 | 1 | -2/+6 | |
| | | | | ||||||
| * | | | libcroco: fix 'if' statement missing curly brackets | Karl Cheng | 2019-05-11 | 1 | -1/+2 | |
| | | | | ||||||
| * | | | Merge branch 'use-cmake-install-libdir' of gitlab.com:YuGiOhJCJ/inkscape | Marc Jeanmougin | 2019-05-10 | 1 | -1/+1 | |
| |\ \ \ | ||||||
| | * | | | * CMakeLists.txt: Modified file (use the CMAKE_INSTALL_LIBDIR variable ↵ | YuGiOhJCJ | 2019-04-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | instead of the hard coded "lib" directory). * src/CMakeLists.txt: Modified file (use the CMAKE_INSTALL_LIBDIR variable instead of the hard coded "lib" directory). | |||||
| * | | | | Remove support for saving as JavaFX 1.x script (*.fx) | Karl Cheng | 2019-05-10 | 6 | -1145/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | JavaFX 1.x is long obsolete (since 2012-12-20) and the code for it has not been maintained. There have been no end user comments/reports since 2012 and a few bugs that would be important remain unfixed. Given that this is not an import format, the impact of removing this should be extremely low. Refs: https://www.oracle.com/technetwork/java/javafx/overview/faq-1446554.html#8 Refs: http://web.archive.org/web/20170316051832/http://blogs.oracle.com/javafx/entry/javafx_1_2_and_javafx Refs: https://stackoverflow.com/q/18865774/2074608 | |||||
| * | | | | Fix for inbox issue 467 | Jabiertxof | 2019-05-10 | 1 | -0/+4 | |
| | | | | | ||||||
| * | | | | fix coding style | Jabier Arraiza | 2019-05-09 | 2 | -6/+6 | |
| | | | | | ||||||
| * | | | | Remove unclear function | Jabiertxof | 2019-05-09 | 2 | -15/+0 | |
| | | | | | ||||||
| * | | | | Add styling and options to hangle keyboard on LPE dialog | Jabiertxof | 2019-05-09 | 2 | -38/+92 | |
| | | | | | ||||||
| * | | | | Revert bad fix from previous commit | Jabiertxof | 2019-05-08 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Fix a crashing bug on Fillet Chamfer LPE | Jabiertxof | 2019-05-08 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Add some documentation (Harfbuzz, OpenType SVG). | Tavmjong Bah | 2019-05-07 | 2 | -3/+5 | |
| | | | | | ||||||
| * | | | | Fix rendering for some SVG in OpenType fonts with glyphs that don't have a ↵ | Tavmjong Bah | 2019-05-06 | 2 | -2/+11 | |
| | | | | | | | | | | | | | | | | | viewBox. | |||||
| * | | | | Possibly fix build on Windows. | Tavmjong Bah | 2019-05-06 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Add basic SVG in OpenType support. | Tavmjong Bah | 2019-05-06 | 5 | -3/+186 | |
| | | | | | ||||||
| * | | | | Fix GdkMotionEvents under Wayland | Diederik van Lierop | 2019-05-04 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Fix opening of files on Windows (and possibly elsewhere) | Patrick Storz | 2019-05-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What we pass as "uri" is not an URI, it usually seems to be a file path, so we were lucky it "accidentally" used to work before. Replace Gio::File::create_for_uri with Gio::File::create_for_commandline_arg which should handle both URIs and absolute paths reliably. | |||||
| * | | | | Adds out of bound check for selecting text on path | Nathan Lee | 2019-05-03 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inbox/issues/420 | |||||
| * | | | | Refer to correct array index in chunkAnchorPoint | Nathan Lee | 2019-05-03 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doesn't seem to make a difference in the "usual" use case, but at least for Put on Path with the Objects Dialog open, there is a difference. Fix https://gitlab.com/inkscape/inbox/issues/421 | |||||
| * | | | | Merge branch 'master' of gitlab.com:inkscape/inkscape | Diederik van Lierop | 2019-05-01 | 3 | -39/+43 | |
| |\ \ \ \ | ||||||
| | * | | | | Select filter on each LPE add dialog to easy remove or modify. Also improve ↵ | Jabier Arraiza | 2019-05-01 | 2 | -24/+28 | |
| | | | | | | | | | | | | | | | | | | | | | LPE to match better LPE aloable effect per type of objext and some strings fixes | |||||
| | * | | | | Good redraw of BPaths on trying to close a BSpline | Jabier Arraiza | 2019-05-01 | 1 | -14/+12 | |
| | | | | | | ||||||
