summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove gimp ruler.Tavmjong Bah2019-06-299-1613/+24
|
* Make tick color the symbolic icon color if symbolic icons are used.Tavmjong Bah2019-06-292-2/+2
|
* Make ruler tickes line up with other GUI elements (e.g. grids).Tavmjong Bah2019-06-291-1/+1
|
* Fix rendering on high DPI screens.Tavmjong Bah2019-06-292-8/+11
|
* Reimplement ruler in C++.Tavmjong Bah2019-06-295-5/+595
|
* hatch.jsValentin Ionita2019-06-288-11/+12395
| | | | | | Polyfill to render hatches by converting paths to patterns. Used standardjs for linting, but kept the semicolons. Part of 2019 GSoC project.
* mesh.js updateValentin Ionita2019-06-264-821/+1163
| | | | | | | Updated formatting and migrated to ES6 syntax for classes, variable declarations, arrow functions, iterators. Fixed variable redeclarations and undefined getComputedStyle, removed unnecessary escapes from RegEx. Used standardjs for linting, but kept the semicolons.
* Fix coding styleJabiertxof2019-06-242-13/+14
|
* Fixes for scrolling on selectors and style dialogsJabiertxof2019-06-244-33/+160
|
* Update pen tool path instantly on mode changeNathan Lee2019-06-241-0/+2
|
* Minor clean up of pen tool codeNathan Lee2019-06-242-14/+2
|
* Pen tool live update of green BPaths on Alt+MoveNathan Lee2019-06-241-0/+1
| | | | Regression fix gitlab.com/inkscape/inbox/issues/600
* fix mising changes in previous commitJabier Arraiza2019-06-232-5/+6
|
* Fix coding styleJabier Arraiza2019-06-232-9/+6
|
* Remove experimental code to work in MR and fixes for selectorsJabier Arraiza2019-06-2314-103/+126
|
* fix inbox#595 macOS NSApplicationBlockTerminationThomas Holder2019-06-221-14/+27
|
* fix inbox#537 macOS Window menuThomas Holder2019-06-221-0/+1
|
* Merge branch 'fix-bbox-filter' of gitlab.com:octycs/inkscapeMarc Jeanmougin2019-06-201-3/+3
|\
| * Fix bounding box cache invalidation for filtersoctycs2019-06-201-3/+3
| |
* | Ensure arena is released when the WMF failes to saveJames Collier2019-06-201-0/+3
| |
* | Display an error dialog when image is too large for WMFJames Collier2019-06-201-14/+27
| |
* | Fix typo mentioned in #44James Collier2019-06-201-1/+1
| |
* | Merge branch 'gtk3-deprecated' of gitlab.com:Qantas94Heavy/inkscapeMarc Jeanmougin2019-06-2013-64/+45
|\ \
| * | Remove deprecated usage of custom Gtk::IconSizeKarl Cheng2019-06-162-25/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Custom Gtk::IconSize values have been deprecated since GTK 3.10. Also fix incorrect usage of pixel values to the Gtk::IconSize() constructor (introduced in de13793763), these are in fact meant to be enum values. Refs: https://gitlab.com/inkscape/inkscape/commit/de137937630524727b287fb2e03ec470554683a8
| * | Remove custom tab order in Document PropertiesKarl Cheng2019-06-162-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The method for handling custom tab order in GTK (set_focus_chain) has been deprecated since GTK 3.24 with no direct replacement. I've decided to remove this code as the code did not seem to make any difference during testing: the tab order appeared to be the same. Regardless, 'Page -> Custom size' in Document Properties is the only place that it's used, so the impact should be fairly limited anyway.
| * | Replace deprecated Gtk::Main::quit() callKarl Cheng2019-06-161-4/+4
| | | | | | | | | | | | | | | As this should only be called in a console context, we can replace Gtk::Main::quit() with Gio::Application::quit().
| * | Replace deprecated Gtk::Menu::popup() -> popup_at_pointer()Karl Cheng2019-06-162-15/+6
| | |
| * | Remove deprecated gtk_adjustment_changed() callKarl Cheng2019-06-162-3/+0
| | | | | | | | | | | | | | | As of GTK 3.18 this has been deprecated, it is no longer required. Also remove gtkmm equivalent Gtk::Adjustment::changed().
| * | Replace deprecated Gtk::Label numeric align valuesKarl Cheng2019-06-161-3/+5
| | |
| * | Replace deprecated Gtk::Misc functionsKarl Cheng2019-06-162-2/+3
| | |
| * | Remove leftover GTK/gtkmm >= 3.16 checkKarl Cheng2019-06-161-4/+0
| | | | | | | | | | | | | | | | | | This was mostly done in 630be82740, but it seems this file was missed. Refs: https://gitlab.com/inkscape/inkscape/commit/630be8274013c5eef5f19e19a14bc6d759aada5a
* | | Merge branch 'copypasta' of gitlab.com:nathanal/inkscapeMarc Jeanmougin2019-06-201-16/+19
|\ \ \
| * | | Change TextPath to Text positioningNathan Lee2019-06-031-32/+19
| | | | | | | | | | | | | | | | | | | | | | | | Uses originalPath instead of bounding-box. Make positioning consistent with text that is not visible (too long for path).
| * | | Crashfix deleting path with invisible text on pathNathan Lee2019-06-031-5/+21
| | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inbox/issues/491
* | | | Merge branch 'hope' of gitlab.com:nathanal/inkscapeMarc Jeanmougin2019-06-201-0/+2
|\ \ \ \
| * | | | Fix blank toolbar on startup with custom dimensionsNathan Lee2019-05-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Bug occurs with programmatic resize at startup Fixes https://gitlab.com/inkscape/inkscape/issues/125
* | | | | Merge branch 'refactoring' of gitlab.com:shlomif/inkscapeMarc Jeanmougin2019-06-2015-234/+233
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Refactoring: replace funcs with methods.Shlomi Fish2019-06-1214-212/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | Refactor: convert rotate_rel() to a method.Shlomi Fish2019-06-127-22/+21
| | | | |
* | | | | Remove unused code.Tavmjong Bah2019-06-203-308/+0
| | | | |
* | | | | Force the with_gui flag to be false when the pipe flag is true.Tavmjong Bah2019-06-201-1/+2
| | | | |
* | | | | Simplify piping through Inkscape. Reduce code duplication.Tavmjong Bah2019-06-193-88/+56
| | | | |
* | | | | Restore ability to pipe a file into Inkscape.Tavmjong Bah2019-06-194-4/+96
| | | | |
* | | | | fix horizontal palette scrolling for macOSThomas Holder2019-06-191-4/+22
| | | | |
* | | | | Show correct selected font feature for large listsNathan Lee2019-06-181-1/+1
| | | | |
* | | | | Better check for CONTROL_CODENathan Lee2019-06-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Amend my previous commit 795066a6e73505 Based off extra case in _buildSpansForPara
* | | | | Fix a icon bugJabiertxof2019-06-182-4/+5
| | | | |
* | | | | Improving stylingJabiertxof2019-06-184-21/+48
| | | | |
* | | | | Fix compiling issuesJabiertxof2019-06-184-6/+7
| | | | |
* | | | | Base of theming refactorJabiertxof2019-06-186-156/+111
| | | | |