From f07f9dc346c88acf4941ed21735d86fc35ee67fb Mon Sep 17 00:00:00 2001 From: Iceflower Date: Tue, 12 Sep 2023 19:30:53 +0200 Subject: [PATCH] [plugin|qr] Bump version to 0.3.1 --- README.md | 6 ++++++ addons/qr_code/plugin.cfg | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a26376b..cba1036 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,7 @@ QR Code generation either with the included `QRCodeRect` node or use the encodin **QRCodeRect** - [`addons/qr_code/qr_code_rect.gd`](./addons/qr_code/qr_code_rect.gd) `TextureRect` like node. The texture is updated by itself. +When using byte encoding you can also pass strings for specific ECI values (ISO 8859-1, Shift JIS, UTF-8, UTF-16, US ASCII), the input string will be automatically converted to an byte array. #### Properties @@ -408,6 +409,11 @@ Shift JIS encoding utility. ### Changelog +#### 0.3.1 + +- Improve inspector properties +- Improve input handling of byte data based on ECI usage + #### 0.3.0 - Make ECI value optional diff --git a/addons/qr_code/plugin.cfg b/addons/qr_code/plugin.cfg index 840ffe5..6c92d9e 100644 --- a/addons/qr_code/plugin.cfg +++ b/addons/qr_code/plugin.cfg @@ -3,5 +3,5 @@ name="QR Code" description="QR Code generator. - MIT License" author="Iceflower S" -version="0.3.0" +version="0.3.1" script="plugin.gd"