inkscape:master

Last commit made on 2024-05-26
Get this branch:
git clone -b master https://git.launchpad.net/inkscape

Branch merges

Branch information

Name:
master
Repository:
lp:inkscape

Recent commits

c353739... by Adam Belis

Update file AUTHORS

15e4c0d... by Aayush Shah <email address hidden>

Add tooltip to grid dropdowns

A tooltip text "Change to a different grid type" has been
added to the _grid_type dropdown widget and "Align grid
origin relative to active page." has been added to _align
widget. These tooltips provide additional guidance to users,
making the UI more intuitive and informative by clearly
indicating the function of the dropdowns.

Resolves: https://gitlab.com/inkscape/inkscape/-/issues/5034

a1d6b27... by Marc Jeanmougin <email address hidden>

Add system's gtk4 if and only if new enough to build our required gtkmm4

If found in system, gtkmm will see it and not build it, so we should pick system's path
If not, or too old, gtkmm will build gtk4 and we should not use system's path

664b04a... by Rafael Siejakowski <email address hidden>

Fix leaking Inkscape version during file save/load

Fix a memory leak whereby the Inkscape version strings were allocated
on the heap but never freed. Rewrite the Inkscape::Version class to
better follow modern C++ coding guidelines and add a unit test for it.

1bc1749... by Rafael Siejakowski <email address hidden>

Add build-system support for unit tests

Create a new CMake target unit_tests and make it easy to add a new unit
test. Pre-existing integration tests (linking all of libinkscape) are
now called "Inkscape tests" in order to avoid confusion.

Wiki page: https://wiki.inkscape.org/wiki/Quality_Assurance_Initiative

48c49c2... by =?utf-8?q?Sebastian_Skej=C3=B8?= <email address hidden>

Update CONTRIBUTING.md

7cdd209... by KOFOB <email address hidden>

Mirrored cancel function from rect- to box3d-tool

49e69ee... by Liam P. White

Fix crash when clipboard pasting paths in path effects

Fixes https://gitlab.com/inkscape/inkscape/-/issues/5046

962f762... by Thomas Holder <email address hidden>

Fix build without poppler-cairo

Fixes https://gitlab.com/inkscape/inkscape/-/issues/4846

1f56c58... by Aayush Shah <email address hidden>

Fix clickability of action buttons in LPE editor

Removing the 'can-target' property from the LPE action buttons
in the Glade file has resolved an issue where these buttons
were not clickable. This property was set to False and interfered
with event handling for the buttons in the Live Path Effect
(LPE) editor.

The removal of this property restores the expected behavior
of these buttons, ensuring they respond appropriately to
user interactions.