| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
As suggested in
http://wiki.inkscape.org/wiki/index.php?title=Refactoring_projects&oldid=112116
.
Needs review but seems to work well.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/Code_refactoring
Some small optimisations may have slipped in as well.
----
I hereby disclaim any implicit or explicit ownership of my changes in this
changeset, and put them under a multiple licence consisting of your choice of
one of more of:
- The CC0 / Public Domain - https://creativecommons.org/choose/zero/ .
- The MIT / Expat license - https://en.wikipedia.org/wiki/MIT_License
- The default licence of your project
- The https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License - version
2.1 or higher
- The https://en.wikipedia.org/wiki/GNU_General_Public_License - version 2 or
higher
- Any licence in the 2018-Aug-27 popular licenses list of
https://opensource.org/licenses
- The https://en.wikipedia.org/wiki/Apache_License version 2.0 or later
- The https://en.wikipedia.org/wiki/Artistic_License version 2.0 or later
- The https://en.wikipedia.org/wiki/ISC_license
- The https://opensource.org/licenses/BSD-2-Clause
Crediting me will be nice, but not mandatory, and you can change the licence
of the project without needing my permission.
|
| | |
|
| |
|
|
| |
This silences a deprecated warning on clang.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
controls have an odd-integer size (measured in pixels)
|
| | |
|
| |
|
|
| |
is drawn at exactly the right screen pixel
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
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
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
SP_TEXT
|
| | |
|
| | |
|
| |
|
|
|
|
| |
attribues.
Fix for inbox issue #415.
|
| | |
|
| |
|
|
|
|
|
| |
Pencil toolbar also given some checks for
gitlab.com/inkscape/inkscape/issues/92
Fixes gitlab.com/inkscape/inbox/issues/182
|
| | |
|
| |
|
|
|
|
|
| |
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
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| | |
| |
| |
| | |
Fixes https://gitlab.com/inkscape/inkscape/issues/72
|
| |/
|
|
| |
Fixes https://gitlab.com/inkscape/inkscape/issues/226
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | |
| |
| |
| |
| |
| | |
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).
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|