Plugin Directory

Changeset 3222104


Ignore:
Timestamp:
01/14/2025 09:11:14 AM (15 months ago)
Author:
omise
Message:

Update to version 6.0.4 from GitHub

Location:
omise
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • omise/tags/6.0.4/CHANGELOG.md

    r3209723 r3222104  
    11# 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))
    25
    36## [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  
    3434        $this->description          = $this->get_option( 'description' );
    3535        $this->restricted_countries = array( 'TH' );
    36         $this->source_type          = null;
     36        $this->source_type          = $this->get_source();
    3737
    3838        add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
  • omise/tags/6.0.4/omise-woocommerce.php

    r3209723 r3222104  
    55 * Plugin URI:  https://www.omise.co/woocommerce
    66 * 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.3
     7 * Version:     6.0.4
    88 * Author:      Opn Payments and contributors
    99 * Author URI:  https://github.com/omise/omise-woocommerce/graphs/contributors
     
    2424     * @var string
    2525     */
    26     public $version = '6.0.3';
     26    public $version = '6.0.4';
    2727
    2828    /**
  • omise/tags/6.0.4/readme.txt

    r3209723 r3222104  
    44Requires at least: 4.3.1
    55Tested up to: 6.6.2
    6 Stable tag: 6.0.3
     6Stable tag: 6.0.4
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    3434
    3535== 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))
    3640
    3741= 6.0.3 =
  • omise/tags/6.0.4/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php

    r3182037 r3222104  
    3030    public function test_get_charge_request()
    3131    {
     32        $this->omise_capability_mock->shouldReceive('retrieve')->once();
    3233        // set source type to truemoney wallet
    3334        $obj = new Omise_Payment_Truemoney();
  • omise/trunk/CHANGELOG.md

    r3209723 r3222104  
    11# 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))
    25
    36## [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  
    3434        $this->description          = $this->get_option( 'description' );
    3535        $this->restricted_countries = array( 'TH' );
    36         $this->source_type          = null;
     36        $this->source_type          = $this->get_source();
    3737
    3838        add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
  • omise/trunk/omise-woocommerce.php

    r3209723 r3222104  
    55 * Plugin URI:  https://www.omise.co/woocommerce
    66 * 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.3
     7 * Version:     6.0.4
    88 * Author:      Opn Payments and contributors
    99 * Author URI:  https://github.com/omise/omise-woocommerce/graphs/contributors
     
    2424     * @var string
    2525     */
    26     public $version = '6.0.3';
     26    public $version = '6.0.4';
    2727
    2828    /**
  • omise/trunk/readme.txt

    r3209723 r3222104  
    44Requires at least: 4.3.1
    55Tested up to: 6.6.2
    6 Stable tag: 6.0.3
     6Stable tag: 6.0.4
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    3434
    3535== 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))
    3640
    3741= 6.0.3 =
  • omise/trunk/tests/unit/includes/gateway/class-omise-payment-truemoney-test.php

    r3182037 r3222104  
    3030    public function test_get_charge_request()
    3131    {
     32        $this->omise_capability_mock->shouldReceive('retrieve')->once();
    3233        // set source type to truemoney wallet
    3334        $obj = new Omise_Payment_Truemoney();
Note: See TracChangeset for help on using the changeset viewer.