| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix various minor typos | Yuri Chornoivan | 2019-07-01 | 1 | -1/+1 |
| | | |||||
| * | Remove support for saving as JavaFX 1.x script (*.fx) | Karl Cheng | 2019-05-10 | 1 | -1/+12 |
| | | | | | | | | | | | | | | 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 | ||||
| * | More document.h cleanup. | Tavmjong Bah | 2019-04-06 | 1 | -1/+1 |
| | | |||||
| * | script.cpp: more cleanup | Patrick Storz | 2019-03-29 | 1 | -32/+19 |
| | | |||||
| * | script.cpp: Glib::spawn_async_with_pipes actually wants UTF-8 | Patrick Storz | 2019-03-29 | 1 | -7/+0 |
| | | |||||
| * | Drop "RegistryTool" which is no longer in use. | Patrick Storz | 2019-03-29 | 1 | -1/+0 |
| | | |||||
| * | Extensions: Use wperl as default perl interpreter on Windows | Patrick Storz | 2019-02-26 | 1 | -1/+2 |
| | | | | | | | | | | | | This is the "GUI" version of the executable that does not have a console attached to itself and therefore doesn't flash a terminal whenever it's called by an extension. Functionality should be identical otherwise. Fixed issues: - https://gitlab.com/inkscape/inkscape/issues/66 | ||||
| * | Give more descriptive names to document file related variables and functions. | Tavmjong Bah | 2019-02-20 | 2 | -2/+2 |
| | | | | | Makes searching through code for them easier. | ||||
| * | modernize loops | Marc Jeanmougin | 2019-01-02 | 2 | -6/+6 |
| | | |||||
| * | Clarify licenses | Max Gaukler | 2018-11-08 | 6 | -7/+13 |
| | | | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library | ||||
| * | fix clipboard URL rebasing | Thomas Holder | 2018-11-07 | 1 | -0/+5 |
| | | |||||
| * | Move some files to 'io' directory. | Tavmjong Bah | 2018-10-13 | 1 | -1/+1 |
| | | |||||
| * | Remove #include "config.h" wherever possible | Eduard Braun | 2018-10-01 | 2 | -7/+0 |
| | | |||||
| * | Use _WIN32 instead of WIN32 | Eduard Braun | 2018-10-01 | 1 | -2/+2 |
| | | | | | | | | | The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system | ||||
| * | Fix for bug 1777530 on master | Jabier Arraiza | 2018-06-25 | 1 | -12/+0 |
| | | |||||
| * | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 2018-06-19 | 4 | -8/+8 |
| | | |||||
| * | Run clang-tidy’s modernize-deprecated-headers pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+1 |
| | | | | | This renames most C <*.h> includes into C++ <c*> includes. | ||||
| * | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 2018-06-18 | 2 | -4/+3 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 4 | -54/+54 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Run clang-tidy’s modernize-use-override pass. | Emmanuel Gil Peyrot | 2018-06-18 | 3 | -19/+19 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Fixes to extension system and simplify the code | Jabiertxo Arraiza Cenoz | 2018-06-06 | 3 | -25/+12 |
| | | |||||
| * | Source typos | luz.paz | 2018-05-14 | 1 | -11/+11 |
| | | |||||
| * | Apply fixed | Jabier Arraiza | 2018-05-09 | 3 | -104/+39 |
| | | |||||
| * | Reset old code to reaply fixed | Jabier Arraiza | 2018-05-09 | 3 | -39/+107 |
| | | |||||
| * | fix compiling bugs | Jabier Arraiza | 2018-05-09 | 1 | -1/+1 |
| | | |||||
| * | fix compiling bugs | Jabier Arraiza | 2018-05-09 | 2 | -16/+19 |
| | | |||||
| * | fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60694271 | Jabier Arraiza | 2018-05-09 | 1 | -0/+11 |
| | | |||||
| * | Fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60693688 | Jabier Arraiza | 2018-05-09 | 1 | -19/+2 |
| | | |||||
| * | Start migrating 0.92 patch to master | Jabier Arraiza | 2018-05-09 | 1 | -101/+36 |
| | | |||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 3 | -22/+22 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 3 | -22/+22 |
| | | |||||
| * | Improve/fix error reporting when executing script extensions | Eduard Braun | 2018-02-04 | 1 | -9/+28 |
| | | | | | | | | | | | It could happen that we attempted to spawn "", see https://bugs.launchpad.net/inkscape/+bug/1747103 which obviously failed but did not explain why. While extensions still fail silently (UI-wise) if the interpreter can not be located a useful error message should now be output on console. | ||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 1 | -1/+2 |
| | | | | | A lot of header clean-up. | ||||
| * | Make script warnings transient for "Working..." dialog | Eduard Braun | 2017-12-20 | 2 | -5/+22 |
| | | | | | | | | | | | | This turned out to be a bit of a mess due to the interplay between the classes Script / ExecutionEnv / Effect / PrefDialog. (Basically they don't talk to each other much but all want to contribute to the GUI) Likely "Script" (and possibly "ExecutionEnv") should be refactored to let the other classes handle UI exclusively and throw errors where suitable. | ||||
| * | Add a warning dialog for previous commit | Eduard Braun | 2017-11-30 | 1 | -1/+5 |
| | | |||||
| * | Extensions: Don't crash on invalid effect extension output | Eduard Braun | 2017-11-30 | 1 | -3/+8 |
| | | |||||
| * | Misc. typos | Unknown | 2017-11-07 | 1 | -4/+4 |
| | | | | | | | | | | | | | Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ``` | ||||
| * | Drop obsolete wrapper around Glib::file_open_tmp | Stefano Facchini | 2017-10-19 | 2 | -13/+12 |
| | | |||||
| * | Remove all unused makefile.in | Stefano Facchini | 2017-10-19 | 1 | -17/+0 |
| | | |||||
| * | Move directory scanners to new get_filenames(...) calls | Martin Owens | 2017-07-02 | 2 | -38/+6 |
| | | |||||
| * | fix two memory leaks | peregrine | 2017-02-07 | 1 | -0/+3 |
| | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1662686 - https://launchpad.net/bugs/1662683 (bzr r15493) | ||||
| * | Merged trunk | Adrian Boguszewski | 2016-08-09 | 2 | -14/+1 |
| |\ | | | | | (bzr r14954.1.30) | ||||
| | * | Remove deprecated Autotools and btool files. Please use CMake instead | Alex Valavanis | 2016-08-08 | 1 | -9/+0 |
| | | | | | | | (bzr r15046) | ||||
| | * | End GTK+ 2 support and remove GDL fork | Alex Valavanis | 2016-08-04 | 1 | -5/+1 |
| | |\ | | | | | | | (bzr r15038) | ||||
| | | * | extensions: Drop GTKMM2 fallbacks | Alex Valavanis | 2016-07-28 | 1 | -5/+1 |
| | | | | | | | | | | (bzr r15023.2.5) | ||||
| * | | | Merged trunk | Adrian Boguszewski | 2016-08-03 | 2 | -5/+2 |
| |\| | | | | | | | | (bzr r14954.1.29) | ||||
| | * | | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 2016-08-03 | 2 | -5/+2 |
| | | | | | | | | | | (bzr r15034) | ||||
| | * | | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 2016-07-28 | 2 | -2/+5 |
| | | | | | | | | | | (bzr r15027) | ||||
| | * | | Removed unused includes, decrease compilation time | Adrian Boguszewski | 2016-07-28 | 2 | -5/+2 |
| | |/ | | | | | (bzr r15025) | ||||
| * | | Added items as a range function | Adrian Boguszewski | 2016-07-03 | 2 | -4/+4 |
| |\| | | | | | (bzr r14954.1.13) | ||||
