From 2409dde5c63381ea4eaa525e045be9a61e2d94d3 Mon Sep 17 00:00:00 2001 From: SitiWeb <70724099+SitiWeb@users.noreply.github.com> Date: Fri, 23 Jan 2026 19:09:02 +0100 Subject: [PATCH] Update version to v1.3.4 and adjust logging retrieval in product processing functions --- api/woocommerce_api.py | 3 +-- version.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/api/woocommerce_api.py b/api/woocommerce_api.py index 7268586..a1b1064 100644 --- a/api/woocommerce_api.py +++ b/api/woocommerce_api.py @@ -395,8 +395,6 @@ def search_product(search): page = 1 total_products = 0 # Initialize the counter for total products - log = options.get("log_message", None) - while True: products = wcapi.get("products", params={"per_page": 100, "page": page, "search": search}).json() if not products: @@ -416,6 +414,7 @@ def process_all_products(options): page = 1 total_products = 0 # Initialize the counter for total products + log = options.get("log_message", None) while True: products = wcapi.get("products", params={"per_page": 100, "page": page}).json() diff --git a/version.py b/version.py index 4e6ae15..82ff025 100644 --- a/version.py +++ b/version.py @@ -4,4 +4,4 @@ This value is used by the Settings update checker. GitHub Actions overwrites this file for tagged builds. """ -__version__ = "v1.3.3" +__version__ = "v1.3.5"