Changeset 3222104
- Timestamp:
- 01/14/2025 09:11:14 AM (15 months ago)
- Location:
- omise
- Files:
-
- 10 edited
- 1 copied
-
tags/6.0.4 (copied) (copied from omise/trunk)
-
tags/6.0.4/CHANGELOG.md (modified) (1 diff)
-
tags/6.0.4/includes/gateway/class-omise-payment-truemoney.php (modified) (1 diff)
-
tags/6.0.4/omise-woocommerce.php (modified) (2 diffs)
-
tags/6.0.4/readme.txt (modified) (2 diffs)
-
tags/6.0.4/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/includes/gateway/class-omise-payment-truemoney.php (modified) (1 diff)
-
trunk/omise-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
omise/tags/6.0.4/CHANGELOG.md
r3209723 r3222104 1 1 # CHANGELOG 2 3 ## [v6.0.4 _(Jan 13, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v6.0.4) 4 - Fix the issue of missing TrueMoney payment methods. (PR: [#496](https://github.com/omise/omise-woocommerce/pull/496)) 2 5 3 6 ## [v6.0.3 _(Nov 27, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v6.0.3) -
omise/tags/6.0.4/includes/gateway/class-omise-payment-truemoney.php
r3182037 r3222104 34 34 $this->description = $this->get_option( 'description' ); 35 35 $this->restricted_countries = array( 'TH' ); 36 $this->source_type = null;36 $this->source_type = $this->get_source(); 37 37 38 38 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); -
omise/tags/6.0.4/omise-woocommerce.php
r3209723 r3222104 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: 6.0. 37 * Version: 6.0.4 8 8 * Author: Opn Payments and contributors 9 9 * Author URI: https://github.com/omise/omise-woocommerce/graphs/contributors … … 24 24 * @var string 25 25 */ 26 public $version = '6.0. 3';26 public $version = '6.0.4'; 27 27 28 28 /** -
omise/tags/6.0.4/readme.txt
r3209723 r3222104 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.6.2 6 Stable tag: 6.0. 36 Stable tag: 6.0.4 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 6.0.4 = 38 39 - Fix the issue of missing TrueMoney payment methods. (PR: [#496](https://github.com/omise/omise-woocommerce/pull/496)) 36 40 37 41 = 6.0.3 = -
omise/tags/6.0.4/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php
r3182037 r3222104 30 30 public function test_get_charge_request() 31 31 { 32 $this->omise_capability_mock->shouldReceive('retrieve')->once(); 32 33 // set source type to truemoney wallet 33 34 $obj = new Omise_Payment_Truemoney(); -
omise/trunk/CHANGELOG.md
r3209723 r3222104 1 1 # CHANGELOG 2 3 ## [v6.0.4 _(Jan 13, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v6.0.4) 4 - Fix the issue of missing TrueMoney payment methods. (PR: [#496](https://github.com/omise/omise-woocommerce/pull/496)) 2 5 3 6 ## [v6.0.3 _(Nov 27, 2024)_](https://github.com/omise/omise-woocommerce/releases/tag/v6.0.3) -
omise/trunk/includes/gateway/class-omise-payment-truemoney.php
r3182037 r3222104 34 34 $this->description = $this->get_option( 'description' ); 35 35 $this->restricted_countries = array( 'TH' ); 36 $this->source_type = null;36 $this->source_type = $this->get_source(); 37 37 38 38 add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); -
omise/trunk/omise-woocommerce.php
r3209723 r3222104 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: 6.0. 37 * Version: 6.0.4 8 8 * Author: Opn Payments and contributors 9 9 * Author URI: https://github.com/omise/omise-woocommerce/graphs/contributors … … 24 24 * @var string 25 25 */ 26 public $version = '6.0. 3';26 public $version = '6.0.4'; 27 27 28 28 /** -
omise/trunk/readme.txt
r3209723 r3222104 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.6.2 6 Stable tag: 6.0. 36 Stable tag: 6.0.4 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 6.0.4 = 38 39 - Fix the issue of missing TrueMoney payment methods. (PR: [#496](https://github.com/omise/omise-woocommerce/pull/496)) 36 40 37 41 = 6.0.3 = -
omise/trunk/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php
r3182037 r3222104 30 30 public function test_get_charge_request() 31 31 { 32 $this->omise_capability_mock->shouldReceive('retrieve')->once(); 32 33 // set source type to truemoney wallet 33 34 $obj = new Omise_Payment_Truemoney();
Note: See TracChangeset
for help on using the changeset viewer.