summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Translations: Drop Amharic (am) translationPatrick Storz2019-03-073-39799/+2
| | | | | | | | | | | | | | | | | | It's completely empty... Actually something went wrong in 5a46d516222e06023ecef9c76f605d14fb30e165 which removed all (fuzzy) strings that had ever been translated, but there seems to be no point in retrieving them anymore.
* | Drop "org.inkscape.Inkscape.desktop.in" from POTFILES.inPatrick Storz2019-03-072-3/+1
| | | | | | | | | | | | The file was removed in a6d9645ac2743a85aad1d763e7a5db1e65cefdfa. Apparently we don't translate the .desktop file any longer...
* | CI: Work around https://gitlab.com/gitlab-org/gitlab-ce/issues/20731Patrick Storz2019-03-071-2/+2
| | | | | | | | even script commands like "false && ..." would never fail a build...
* | Merge: Avoid the “using std::*;” or “using namespace std;” constructMartin Owens2019-03-0631-152/+116
|\ \
| * | Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot2019-03-0631-152/+116
| | | | | | | | | | | | This makes the code a lot less readable and greppable for no reason.
* | | Merge: Correct text for enabling gridMartin Owens2019-03-061-1/+1
|\ \ \
| * | | Correct text for enabling document gridsNathan Lee2019-03-051-1/+1
| | | | | | | | | | | | | | | | From discussion at https://gitlab.com/inkscape/inkscape/issues/110
* | | | Merge: Fix crash on opening file with text on path...Martin Owens2019-03-061-11/+9
|\ \ \ \
| * | | | Stop crash on loading text on pathNathan Lee2019-03-061-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If path is below text in xml, early attempt to get text path leads to call to nullptr. Fixes https://gitlab.com/inkscape/inbox/issues/134
* | | | | Merge: fix toggling snap with key shortcut breaks historyMartin Owens2019-03-061-0/+3
|\ \ \ \ \
| * | | | | fix toggling snap with key shortcut breaks historyYosshi9992019-03-061-0/+3
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Toggling snap must not be undo-able, but keyboard shortcut '%' didn't turn undo-sensitivity off. See <https://bugs.launchpad.net/inkscape/+bug/1064858>.
* | | | | Merge: Fix: crash on launch with old pencil tool settingsMartin Owens2019-03-061-1/+1
|\ \ \ \ \
| * | | | | Error handling for reading pencil preferencesNathan Lee2019-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inkscape/issues/92
* | | | | | Merge: Update strings for Measure Segments LPEMartin Owens2019-03-061-38/+40
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Update strings for Measure Segments LPEMaren Hachmann2019-03-051-38/+40
| | |/ / / | |/| | |
* | | | | Merge: Fix icon location in Linux desktop fileMartin Owens2019-03-062-23/+1
|\ \ \ \ \
| * | | | | Fix icon location in Linux desktop fileKarl Cheng2019-02-202-23/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was meant to be fixed by deeb288f but it seems this was overlooked. Also remove .desktop.in file which appears to be unused.
* | | | | | Merge: Update background-color tooltips in document-properties.cppMartin Owens2019-03-061-2/+2
|\ \ \ \ \ \
| * | | | | | Update background-color tooltips in document-properties.cpp (#101)Tim Rawlinson2019-02-281-2/+2
| | | | | | |
* | | | | | | Remember dialog visibility with the floating dialog behaviourNathan Lee2019-03-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes https://bugs.launchpad.net/inkscape/+bug/1674155
* | | | | | | Fix wmf/emf file opening and embed missing font config data.Martin Owens2019-03-064-65/+25
| | | | | | |
* | | | | | | Merge: Fix use of uninitialized variableMartin Owens2019-03-061-0/+1
|\ \ \ \ \ \ \
| * | | | | | | Fix use of uninitialized variableKarl Cheng2019-02-201-0/+1
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems this was introduced in ce3c5920 through a copy/paste typo (bg_color_active -> bg_color). The whole line was then mistakenly removed in 0ee0c59c as it appeared to be redundant.
* | | | | | | Merge in Rescue code for restoring last used window geometry MR !534Martin Owens2019-03-063-12/+41
|\ \ \ \ \ \ \
| * | | | | | | Fix query for monitor dimensionsPatrick Storz2019-02-202-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The call to Gdk::Display::get_monitor_at_window() in Inkscape::UI::get_monitor_geometry_at_window() requires the underlying GdkWindow to be fully initialized. This is achieved by calling "realize()" before attempting to read that information. Previously we used to show the window first (which implies realizing it) which worked around the issue. However it required us to hide and show it once again later if we wanted to move it in order for the window manager's routines to sanitize the position to kick in.
| * | | | | | | Rescue code for restoring last used window geometryPatrick Storz2019-02-203-9/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was accidentally dropped in 8b1840f9507f10911f63fc00b9885354ead99d53 Also show window *after* setting position/size. This gives the window manager the chance to move an off-screen window back into the visible desktop bounds (e.g. after a monitor was disconnected).
* | | | | | | | fix ci: appimage remove gtk2 themesThomas Holder2019-03-061-6/+0
| | | | | | | |
* | | | | | | | fix ci: exclude some stuff from artifactsThomas Holder2019-03-061-0/+1
| | | | | | | |
* | | | | | | | Merge branch 'DontRotateCustomPaper' of gitlab.com:Skrapion/inkscapeMartin Owens2019-03-061-14/+19
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix bug #630635: Print page size is incorrect: ↵Rick Yorgason2018-11-041-14/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://bugs.launchpad.net/inkscape/+bug/630635 Don't rotate the page if using a custom page size, because it confuses simpler printers which don't understand landscape mode, like laser cutters. (Note: comments #3-7 in that bug report are a different issue, which affects printers which don't understand custom page sizes; this issue was fixed in commit eaa134e8ea9e71489af1b5090bdee122d5b8d659)
* | | | | | | | | Improve Debug buildingThomas Holder2019-03-062-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add -O1 to make FORTIFY_SOURCE happy (eliminate compiler warnings) - canonicalize CMAKE_CXX_FLAGS_DEBUG to avoid unnecessary recompilation Both issues were introduced with f7fc3d3a7f8f51a01cd1dfb261c3e234617e092e
* | | | | | | | | Do partial convert flowed text to tspan if possibleNathan Lee2019-03-061-5/+9
| |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Fixes https://gitlab.com/inkscape/inbox/issues/193
* | | | | | | | Ignore more stuffTed Gould2019-03-061-0/+19
| | | | | | | |
* | | | | | | | Merge branch 'master' of gitlab.com:inkscape/inkscapeMartin Owens2019-03-061-24/+33
|\ \ \ \ \ \ \ \
| * | | | | | | | Allows 'none' palette to be drag and dropped onto Selected StyleNathan Lee2019-03-061-24/+33
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switches drag_target from x_color to x_oswb_color x_color only accepts RGB, while x_oswb_color has None and Clear as distinct types. Fixes https://gitlab.com/inkscape/inbox/issues/79
* | | | | | | | Merge addition of center on page buttonMartin Owens2019-03-0613-3/+361
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Changed tabs to spacesWizardOhio242019-02-114-4/+4
| | | | | | | |
| * | | | | | | Updated inkscape.pot to include Center page in windowWizardOhio242019-02-112-2/+6
| | | | | | | |
| * | | | | | | Added Feature: Recenter page in window, Ctrl+4 shortcutWizardOhio242019-02-1112-1/+355
| | | | | | | |
* | | | | | | | Revert modal fix to fix #108Martin Owens2019-03-051-2/+2
| | | | | | | |
* | | | | | | | Fix inverted direction with on canvas align handlesMartin Owens2019-03-052-5/+31
| | | | | | | |
* | | | | | | | Restore set_extensions_env()Thomas Holder2019-03-052-1/+8
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Function got lost in 408cb49b Fixes #60
* | | | | | | Update Catalan translationJordi Mas2019-03-041-1013/+968
| | | | | | |
* | | | | | | Fixes for Hindi LanguageAbhay Raj Singh2019-03-041-49/+33
| | | | | | |
* | | | | | | Update Italian translationFiras Hanife2019-03-041-31/+21
| | | | | | |
* | | | | | | Object Properties "Preserve Ratio" fixesThomas Holder2019-03-031-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fix crash (strcmp -> g_strcmp0) - fix "true" -> "xMidYMid" - fix locked - fix typo (Pereserve -> Preserve)
* | | | | | | CI: Exclude "clangtidyfull" from schedulesPatrick Storz2019-03-031-0/+2
| | | | | | |
* | | | | | | Enable global snapping preference by defaultPatrick Storz2019-03-032-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensures consistent behavior with previous versions, i.e. before the switch was introduced in d69b5fe84fd438a218e6198af585f8532f0d8e70. Try to improve help string.
* | | | | | | Fix CI (translations)Patrick Storz2019-03-031-5/+1
| | | | | | |
* | | | | | | Fix CI (clangtidyfull)Patrick Storz2019-03-031-9/+5
| | | | | | |