From 5608ed2aeea996c766dc005bf1d0f657899684ef Mon Sep 17 00:00:00 2001 From: Frey Mansikkaniemi Date: Wed, 29 Jul 2020 18:35:14 +0800 Subject: [PATCH 1/3] Increased quality of QR Code --- hong-kong-fps-woo-payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hong-kong-fps-woo-payment.php b/hong-kong-fps-woo-payment.php index 46dc058..8a8ea43 100644 --- a/hong-kong-fps-woo-payment.php +++ b/hong-kong-fps-woo-payment.php @@ -77,7 +77,7 @@ function its_wpf_qrcode_catch() ob_clean(); //Clean the output buffer before printing out image require_once('libs/phpqrcode.php'); header('Content-Type: image/png'); - QRcode::png($qrcode_string); + QRcode::png($qrcode_string,false,QR_ECLEVEL_H); exit(); } } From bdf5145aa6779eceffff9c44e4fbf1b5cdeccced Mon Sep 17 00:00:00 2001 From: Frey Mansikkaniemi Date: Wed, 29 Jul 2020 18:36:19 +0800 Subject: [PATCH 2/3] Sample phone number added --- wc-gateway-invite-fps-payment-gateway-class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wc-gateway-invite-fps-payment-gateway-class.php b/wc-gateway-invite-fps-payment-gateway-class.php index 39904ef..87f3d25 100644 --- a/wc-gateway-invite-fps-payment-gateway-class.php +++ b/wc-gateway-invite-fps-payment-gateway-class.php @@ -63,7 +63,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){ 'account_fps_id' => array( 'title' => __('Account Id',ITS_WPF_PLUGIN_ID), 'type' => 'text', - 'description' => __('E-mail address, phone number or specific FPS id',ITS_WPF_PLUGIN_ID), + 'description' => __('E-mail address, phone number (+852-xxxxxxxx) or specific FPS id',ITS_WPF_PLUGIN_ID), ), 'account_bank_code' => array( 'title' => __('Bank Code',ITS_WPF_PLUGIN_ID), From 4d38e60a9f91e0ace2ca3a478f2e20a7425eca63 Mon Sep 17 00:00:00 2001 From: Frey Mansikkaniemi Date: Wed, 29 Jul 2020 19:04:23 +0800 Subject: [PATCH 3/3] Version bumped up --- README.md | 4 ++++ hong-kong-fps-woo-payment.php | 4 ++-- readme.txt | 4 ++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 801a11d..9e70884 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,10 @@ $ git clone https://github.com/invite-frey/is-woo-payment-fps.git # 1.0 * First Release +# 1.1 +* QR Code quality improved +* Mobile phonen number format example included + ## Donations Donations are much appreciated if you found this resource useful. diff --git a/hong-kong-fps-woo-payment.php b/hong-kong-fps-woo-payment.php index 8a8ea43..5d5a916 100644 --- a/hong-kong-fps-woo-payment.php +++ b/hong-kong-fps-woo-payment.php @@ -1,14 +1,14 @@