Bumped up version, added release notes

This commit is contained in:
Frey Mansikkaniemi 2020-10-14 20:15:30 +08:00
parent ad3937dbce
commit 3bb1d92138
4 changed files with 14 additions and 7 deletions

View File

@ -62,6 +62,10 @@ $ git clone https://github.com/invite-frey/is-woo-payment-fps.git
### 1.41
* Bugfix
### 1.42
* Cache QRCodes by default due to better compatibility with most systems
* Fixed bug preventing headers to be output on some systems
## Donations
Donations are much appreciated if you found this resource useful.

View File

@ -1,14 +1,14 @@
<?php
/**
* @package Hong_Kong_FPS_Woo_Payment
* @version 1.41
* @version 1.42
*/
/*
Plugin Name: Hong Kong FPS Woo Payment
Plugin URI: https://github.com/invite-frey/is-woo-payment-fps
Description: Woocommerce payment method enabling Hong Kong FPS payments. Displays QR code and FPS payent if to user. Requires manual confirmation.
Author: Frey Mansikkaniemi, invITe Services
Version: 1.41
Version: 1.42
Author URI: http://frey.hk/
License: GPLv3
*/
@ -52,7 +52,6 @@ function its_wpf_add_class( $methods ){
return $methods;
}
/**
* Reqister query var for qrcode image generation
*/

View File

@ -67,3 +67,7 @@ Enables [FPS](https://www.hkma.gov.hk/eng/key-functions/international-financial-
= 1.41 =
* Bugfix
= 1.42 =
* Cache QRCodes by default due to better compatibility with most systems
* Fixed bug preventing headers to be output on some systems

View File

@ -85,11 +85,11 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
'default' => 'no'
),
'write_qr_code_to_file' => array(
'title' => __('Write QRCode to file',ITS_WPF_PLUGIN_ID),
'label' => __('Write QRCode to file',ITS_WPF_PLUGIN_ID),
'title' => __('Cache QRCode to file',ITS_WPF_PLUGIN_ID),
'label' => __('Cache QRCode to file',ITS_WPF_PLUGIN_ID),
'type' => 'checkbox',
'description' => __('Enable this option if the QRCode does not show up, or if you want to cache each generated QRCode to a file for reuse. Provides better performance if the total amount is often the same.',ITS_WPF_PLUGIN_ID),
'default' => 'no'
'description' => __('Disabling this option will cause the QRCode to be dynamically generated. This may not work on all server configurations.',ITS_WPF_PLUGIN_ID),
'default' => 'yes'
),
);
}