From 2ec586b101eeef5ae61cfcf1a166194e0aabdff2 Mon Sep 17 00:00:00 2001 From: imPratik Date: Sun, 31 Dec 2023 20:35:04 +0530 Subject: [PATCH] v2.1.0 --- qr_play/main/helper/constants_config.py | 2 +- qr_play/main/helper/defaults.py | 2 +- qr_play/main/helper/metadata.py | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/qr_play/main/helper/constants_config.py b/qr_play/main/helper/constants_config.py index ba952fd..a174de3 100644 --- a/qr_play/main/helper/constants_config.py +++ b/qr_play/main/helper/constants_config.py @@ -1,4 +1,4 @@ class ConfigConst: - TOOL_VERSION = '2.0.0' + TOOL_VERSION = '2.1.0' TOOL_VERSION_DETAILED = f'v{TOOL_VERSION}' TOOL_NAME = 'qrPlay' diff --git a/qr_play/main/helper/defaults.py b/qr_play/main/helper/defaults.py index 3819eef..9de81b0 100644 --- a/qr_play/main/helper/defaults.py +++ b/qr_play/main/helper/defaults.py @@ -9,7 +9,7 @@ class Defaults: PRINT_INPUT = False PRINT_OUTPUT = True QUITE_MODE = False - QR_CODE_VERSION = 40 + QR_CODE_VERSION = 5 SCALE = 5 IMAGE_FORMAT = Formats.PNG SPLIT_QRS = True diff --git a/qr_play/main/helper/metadata.py b/qr_play/main/helper/metadata.py index 94132d9..5a1c71f 100644 --- a/qr_play/main/helper/metadata.py +++ b/qr_play/main/helper/metadata.py @@ -1,5 +1,8 @@ from collections import OrderedDict +from python_helpers.ph_constants import PhConstants +from python_helpers.ph_keys import PhKeys + class MetaData: def __init__(self, raw_data_org):