Changeset 3068190
- Timestamp:
- 04/10/2024 06:15:07 AM (2 years ago)
- Location:
- omise
- Files:
-
- 16 edited
- 1 copied
-
tags/5.8.2 (copied) (copied from omise/trunk)
-
tags/5.8.2/CHANGELOG.md (modified) (1 diff)
-
tags/5.8.2/assets/css/omise-css.css (modified) (1 diff)
-
tags/5.8.2/includes/backends/class-omise-backend-installment.php (modified) (1 diff)
-
tags/5.8.2/includes/class-omise-admin.php (modified) (1 diff)
-
tags/5.8.2/includes/gateway/class-omise-payment-truemoney.php (modified) (2 diffs)
-
tags/5.8.2/includes/gateway/class-omise-payment-wechat-pay.php (modified) (1 diff)
-
tags/5.8.2/omise-woocommerce.php (modified) (2 diffs)
-
tags/5.8.2/readme.txt (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/assets/css/omise-css.css (modified) (1 diff)
-
trunk/includes/backends/class-omise-backend-installment.php (modified) (1 diff)
-
trunk/includes/class-omise-admin.php (modified) (1 diff)
-
trunk/includes/gateway/class-omise-payment-truemoney.php (modified) (2 diffs)
-
trunk/includes/gateway/class-omise-payment-wechat-pay.php (modified) (1 diff)
-
trunk/omise-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
omise/tags/5.8.2/CHANGELOG.md
r3046699 r3068190 1 1 # CHANGELOG 2 3 ## [v5.8.2 _(Apr 9, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.8.2) 4 - Resolve PHP warnings. (PR [#443](https://github.com/omise/omise-woocommerce/pull/443)) 5 - Remove white box appearing under WeChat Pay. (PR [#444](https://github.com/omise/omise-woocommerce/pull/444)) 6 - Remove white box appearing under Truemoney. (PR [#445](https://github.com/omise/omise-woocommerce/pull/445)) 7 - Removed Citi installment. (PR [#446](https://github.com/omise/omise-woocommerce/pull/446)) 2 8 3 9 ## [v5.8.1 _(Mar 7, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.8.1) -
omise/tags/5.8.2/assets/css/omise-css.css
r2974097 r3068190 355 355 background: url('../images/bbl.svg') #1e4598; 356 356 border-color: #1e4598; 357 }358 359 /** Citi **/360 .bank-logo.citi {361 background: url('../images/citi.svg') #0b689d;362 border-color: #0b689d;363 357 } 364 358 -
omise/tags/5.8.2/includes/backends/class-omise-backend-installment.php
r3006639 r3068190 61 61 'title' => __('Siam Commercial Bank', 'omise'), 62 62 'interest_rate' => 0.74, 63 'min_allowed_amount' => 500.00,64 ),65 66 'installment_citi' => array(67 'bank_code' => 'citi',68 'title' => __('Citibank', 'omise'),69 'interest_rate' => 0,70 63 'min_allowed_amount' => 500.00, 71 64 ), -
omise/tags/5.8.2/includes/class-omise-admin.php
r2892466 r3068190 65 65 { 66 66 add_submenu_page( 67 null,67 "", 68 68 __('Custom card form customization', 'omise'), 69 69 Omise_Page_Card_From_Customization::PAGE_NAME, -
omise/tags/5.8.2/includes/gateway/class-omise-payment-truemoney.php
r3021743 r3068190 123 123 124 124 if (!$capabilities) { 125 $this->has_fields = false; 125 126 return self::JUMPAPP; 126 127 } … … 137 138 // Case 2: jumpapp is enabled and wallet is disabled 138 139 // Case 3: Both are disabled. 140 $this->has_fields = false; 139 141 return self::JUMPAPP; 140 142 } -
omise/tags/5.8.2/includes/gateway/class-omise-payment-wechat-pay.php
r3045385 r3068190 9 9 10 10 $this->id = 'omise_wechat_pay'; 11 $this->has_fields = true;11 $this->has_fields = false; 12 12 $this->method_title = __( 'Opn Payments WeChat Pay', 'omise' ); 13 13 $this->method_description = wp_kses( -
omise/tags/5.8.2/omise-woocommerce.php
r3046699 r3068190 5 5 * Plugin URI: https://www.omise.co/woocommerce 6 6 * Description: Opn Payments is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Opn Payments Payment Gateway's payment methods to WooCommerce. 7 * Version: 5.8. 17 * Version: 5.8.2 8 8 * Author: Opn Payments and contributors 9 9 * Author URI: https://github.com/omise/omise-woocommerce/graphs/contributors … … 23 23 * @var string 24 24 */ 25 public $version = '5.8. 1';25 public $version = '5.8.2'; 26 26 27 27 /** -
omise/tags/5.8.2/readme.txt
r3046699 r3068190 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.4.2 6 Stable tag: 5.8. 16 Stable tag: 5.8.2 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 5.8.2 = 38 39 - Resolve PHP warnings. (PR [#443](https://github.com/omise/omise-woocommerce/pull/443)) 40 - Remove white box appearing under WeChat Pay. (PR [#444](https://github.com/omise/omise-woocommerce/pull/444)) 41 - Remove white box appearing under Truemoney. (PR [#445](https://github.com/omise/omise-woocommerce/pull/445)) 42 - Removed Citi installment. (PR [#446](https://github.com/omise/omise-woocommerce/pull/446)) 36 43 37 44 = 5.8.1 = -
omise/trunk/CHANGELOG.md
r3046699 r3068190 1 1 # CHANGELOG 2 3 ## [v5.8.2 _(Apr 9, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.8.2) 4 - Resolve PHP warnings. (PR [#443](https://github.com/omise/omise-woocommerce/pull/443)) 5 - Remove white box appearing under WeChat Pay. (PR [#444](https://github.com/omise/omise-woocommerce/pull/444)) 6 - Remove white box appearing under Truemoney. (PR [#445](https://github.com/omise/omise-woocommerce/pull/445)) 7 - Removed Citi installment. (PR [#446](https://github.com/omise/omise-woocommerce/pull/446)) 2 8 3 9 ## [v5.8.1 _(Mar 7, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.8.1) -
omise/trunk/assets/css/omise-css.css
r2974097 r3068190 355 355 background: url('../images/bbl.svg') #1e4598; 356 356 border-color: #1e4598; 357 }358 359 /** Citi **/360 .bank-logo.citi {361 background: url('../images/citi.svg') #0b689d;362 border-color: #0b689d;363 357 } 364 358 -
omise/trunk/includes/backends/class-omise-backend-installment.php
r3006639 r3068190 61 61 'title' => __('Siam Commercial Bank', 'omise'), 62 62 'interest_rate' => 0.74, 63 'min_allowed_amount' => 500.00,64 ),65 66 'installment_citi' => array(67 'bank_code' => 'citi',68 'title' => __('Citibank', 'omise'),69 'interest_rate' => 0,70 63 'min_allowed_amount' => 500.00, 71 64 ), -
omise/trunk/includes/class-omise-admin.php
r2892466 r3068190 65 65 { 66 66 add_submenu_page( 67 null,67 "", 68 68 __('Custom card form customization', 'omise'), 69 69 Omise_Page_Card_From_Customization::PAGE_NAME, -
omise/trunk/includes/gateway/class-omise-payment-truemoney.php
r3021743 r3068190 123 123 124 124 if (!$capabilities) { 125 $this->has_fields = false; 125 126 return self::JUMPAPP; 126 127 } … … 137 138 // Case 2: jumpapp is enabled and wallet is disabled 138 139 // Case 3: Both are disabled. 140 $this->has_fields = false; 139 141 return self::JUMPAPP; 140 142 } -
omise/trunk/includes/gateway/class-omise-payment-wechat-pay.php
r3045385 r3068190 9 9 10 10 $this->id = 'omise_wechat_pay'; 11 $this->has_fields = true;11 $this->has_fields = false; 12 12 $this->method_title = __( 'Opn Payments WeChat Pay', 'omise' ); 13 13 $this->method_description = wp_kses( -
omise/trunk/omise-woocommerce.php
r3046699 r3068190 5 5 * Plugin URI: https://www.omise.co/woocommerce 6 6 * Description: Opn Payments is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Opn Payments Payment Gateway's payment methods to WooCommerce. 7 * Version: 5.8. 17 * Version: 5.8.2 8 8 * Author: Opn Payments and contributors 9 9 * Author URI: https://github.com/omise/omise-woocommerce/graphs/contributors … … 23 23 * @var string 24 24 */ 25 public $version = '5.8. 1';25 public $version = '5.8.2'; 26 26 27 27 /** -
omise/trunk/readme.txt
r3046699 r3068190 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.4.2 6 Stable tag: 5.8. 16 Stable tag: 5.8.2 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 5.8.2 = 38 39 - Resolve PHP warnings. (PR [#443](https://github.com/omise/omise-woocommerce/pull/443)) 40 - Remove white box appearing under WeChat Pay. (PR [#444](https://github.com/omise/omise-woocommerce/pull/444)) 41 - Remove white box appearing under Truemoney. (PR [#445](https://github.com/omise/omise-woocommerce/pull/445)) 42 - Removed Citi installment. (PR [#446](https://github.com/omise/omise-woocommerce/pull/446)) 36 43 37 44 = 5.8.1 =
Note: See TracChangeset
for help on using the changeset viewer.