From de5ba03104736d849652e97cad4dc7fc46052171 Mon Sep 17 00:00:00 2001 From: Karel Wintersky Date: Thu, 27 Jun 2024 01:25:54 +0300 Subject: [PATCH] 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - [*] фикс, вроде бы последний. Релиз. --- sources/SVGParser.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sources/SVGParser.php b/sources/SVGParser.php index e3ca1f2..feb9f7f 100644 --- a/sources/SVGParser.php +++ b/sources/SVGParser.php @@ -15,8 +15,8 @@ #[\AllowDynamicProperties] class SVGParser implements SVGParserInterface { - public const VERSION = 3.1; - public const GIT_VERSION = '0.9.9'; + public const VERSION = 3.2; + public const GIT_VERSION = '1.0'; /** * Constants for convert_SVGElement_to_Polygon() @@ -186,6 +186,8 @@ public function __construct($svg_file_content = '', array $options = [] ) } $this->layer_images_translation = new LayerElementsTranslation(0, 0); + $this->layer_elements_translation = new LayerElementsTranslation(0, 0); + $this->crs_translation_options = new CRSTranslationOptions(); } catch (Exception $e) {