Changeset 2969504
- Timestamp:
- 09/21/2023 04:17:32 AM (3 years ago)
- Location:
- omise
- Files:
-
- 6 added
- 10 edited
- 1 copied
-
tags/5.4.0 (copied) (copied from omise/trunk)
-
tags/5.4.0/CHANGELOG.md (modified) (1 diff)
-
tags/5.4.0/assets/images/ocbc-digital.png (added)
-
tags/5.4.0/includes/class-omise-payment-factory.php (modified) (1 diff)
-
tags/5.4.0/includes/gateway/class-omise-payment-ocbc-digital.php (added)
-
tags/5.4.0/omise-woocommerce.php (modified) (3 diffs)
-
tags/5.4.0/readme.txt (modified) (2 diffs)
-
tags/5.4.0/tests/unit/includes/gateway/class-omise-offsite-test.php (modified) (2 diffs)
-
tags/5.4.0/tests/unit/includes/gateway/class-omise-payment-ocbc-digital-test.php (added)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/assets/images/ocbc-digital.png (added)
-
trunk/includes/class-omise-payment-factory.php (modified) (1 diff)
-
trunk/includes/gateway/class-omise-payment-ocbc-digital.php (added)
-
trunk/omise-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tests/unit/includes/gateway/class-omise-offsite-test.php (modified) (2 diffs)
-
trunk/tests/unit/includes/gateway/class-omise-payment-ocbc-digital-test.php (added)
Legend:
- Unmodified
- Added
- Removed
-
omise/tags/5.4.0/CHANGELOG.md
r2962817 r2969504 1 1 # CHANGELOG 2 3 ### [v5.4.0 _(Sep 21, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.4.0) 4 - Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401)) 2 5 3 6 ### [v5.3.1 _(Sep 05, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.3.1) -
omise/tags/5.4.0/includes/class-omise-payment-factory.php
r2912289 r2969504 33 33 'Omise_Payment_RabbitLinePay', 34 34 'Omise_Payment_OCBC_PAO', 35 'Omise_Payment_OCBC_Digital', 35 36 'Omise_Payment_GrabPay', 36 37 'Omise_Payment_GooglePay', -
omise/tags/5.4.0/omise-woocommerce.php
r2962817 r2969504 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. 3.17 * Version: 5.4.0 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. 3.1';25 public $version = '5.4.0'; 26 26 27 27 /** … … 214 214 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-grabpay.php'; 215 215 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-pao.php'; 216 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-digital.php'; 216 217 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-boost.php'; 217 218 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-duitnow-obw.php'; -
omise/tags/5.4.0/readme.txt
r2962817 r2969504 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.0.2 6 Stable tag: 5. 3.16 Stable tag: 5.4.0 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 5.4.0 = 38 39 - Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401)) 36 40 37 41 = 5.3.1 = -
omise/tags/5.4.0/tests/unit/includes/gateway/class-omise-offsite-test.php
r2962817 r2969504 12 12 $offsite->shouldReceive('get_option'); 13 13 $offsite->shouldReceive('get_provider'); 14 $offsite->shouldReceive('getRedirectUrl'); 15 $offsite->shouldReceive('getMetadata'); 14 16 15 17 // mocking WP built-in functions … … 21 23 function add_action() {} 22 24 } 23 24 require_once __DIR__ . '/../../../../includes/gateway/class-omise-payment-alipayplus.php';25 25 } 26 26 -
omise/trunk/CHANGELOG.md
r2962817 r2969504 1 1 # CHANGELOG 2 3 ### [v5.4.0 _(Sep 21, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.4.0) 4 - Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401)) 2 5 3 6 ### [v5.3.1 _(Sep 05, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.3.1) -
omise/trunk/includes/class-omise-payment-factory.php
r2912289 r2969504 33 33 'Omise_Payment_RabbitLinePay', 34 34 'Omise_Payment_OCBC_PAO', 35 'Omise_Payment_OCBC_Digital', 35 36 'Omise_Payment_GrabPay', 36 37 'Omise_Payment_GooglePay', -
omise/trunk/omise-woocommerce.php
r2962817 r2969504 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. 3.17 * Version: 5.4.0 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. 3.1';25 public $version = '5.4.0'; 26 26 27 27 /** … … 214 214 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-grabpay.php'; 215 215 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-pao.php'; 216 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-ocbc-digital.php'; 216 217 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-boost.php'; 217 218 require_once OMISE_WOOCOMMERCE_PLUGIN_PATH . '/includes/gateway/class-omise-payment-duitnow-obw.php'; -
omise/trunk/readme.txt
r2962817 r2969504 4 4 Requires at least: 4.3.1 5 5 Tested up to: 6.0.2 6 Stable tag: 5. 3.16 Stable tag: 5.4.0 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 34 34 35 35 == Changelog == 36 37 = 5.4.0 = 38 39 - Added OCBC Digital for Singapore PSP. (PR [#401](https://github.com/omise/omise-woocommerce/pull/401)) 36 40 37 41 = 5.3.1 = -
omise/trunk/tests/unit/includes/gateway/class-omise-offsite-test.php
r2962817 r2969504 12 12 $offsite->shouldReceive('get_option'); 13 13 $offsite->shouldReceive('get_provider'); 14 $offsite->shouldReceive('getRedirectUrl'); 15 $offsite->shouldReceive('getMetadata'); 14 16 15 17 // mocking WP built-in functions … … 21 23 function add_action() {} 22 24 } 23 24 require_once __DIR__ . '/../../../../includes/gateway/class-omise-payment-alipayplus.php';25 25 } 26 26
Note: See TracChangeset
for help on using the changeset viewer.