From 4448e03b499e02e6cddf4b976e02ae707abc27f0 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Wed, 20 Oct 2021 22:02:21 +0200 Subject: [PATCH 1/2] fix in bbox adjuster --- .../epilog_dashboard_bbox_adjust.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extensions/fablabchemnitz/epilog_dashboard_bbox_adjust/epilog_dashboard_bbox_adjust.py b/extensions/fablabchemnitz/epilog_dashboard_bbox_adjust/epilog_dashboard_bbox_adjust.py index 089e46e3..c834bf21 100644 --- a/extensions/fablabchemnitz/epilog_dashboard_bbox_adjust/epilog_dashboard_bbox_adjust.py +++ b/extensions/fablabchemnitz/epilog_dashboard_bbox_adjust/epilog_dashboard_bbox_adjust.py @@ -91,8 +91,7 @@ class EpilogDashboardBboxAdjust(inkex.EffectExtension): mat = Transform("translate(%f, %f)" % (-bbox.left,-bbox.top)) for element in self.document.getroot().iter("*"): if isinstance (element, inkex.ShapeElement) and element.tag != inkex.addNS('g', 'svg'): - element.transform = Transform(mat) * element.transform - #element.transform = Transform(element.composed_transform().add_matrix(mat)) * element.transform + element.transform = Transform(mat) * element.composed_transform() if self.options.removal == "outside_canvas": for element in self.document.getroot().iter("*"): From 92466af970adf1c44ea05924a8232c5441944fa5 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Wed, 20 Oct 2021 22:04:10 +0200 Subject: [PATCH 2/2] small update in readme/metainfo --- README.md | 2 +- extensions/fablabchemnitz/webp_import/meta.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21709a81..b3659709 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # MightyScape for Inkscape 1.0+ -In short: A maintained extension collection for Inkscape 1.0+, working on Windows and Linux. There are **224 extension folders** with **395 .inx files** inside. We also take part at https://inkscape.org/gallery/=extension/ (with single extension uploads). +In short: A maintained extension collection for Inkscape 1.0+, working on Windows and Linux. There are **228 extension folders** with **399 .inx files** inside. We also take part at https://inkscape.org/gallery/=extension/ (with single extension uploads). # About MightyScape diff --git a/extensions/fablabchemnitz/webp_import/meta.json b/extensions/fablabchemnitz/webp_import/meta.json index e74d9753..a563a5a2 100644 --- a/extensions/fablabchemnitz/webp_import/meta.json +++ b/extensions/fablabchemnitz/webp_import/meta.json @@ -11,7 +11,7 @@ "source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/webp_import", "fork_url": null, "documentation_url": "https://stadtfabrikanten.org/display/IFM/WebP+Import", - "inkscape_gallery_url": null, + "inkscape_gallery_url": "https://inkscape.org/de/~MarioVoigt/%E2%98%85webp-import", "main_authors": [ "inkscape.org/mono", "github.com/vmario89"