Skip to content

Commit

Permalink
Update Changelog & Version Number for v3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakmaurya committed Aug 1, 2020
1 parent f8ad175 commit 8a1d855
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: paypal, woocommerce, express checkout, micro payments, micro processing, micropayments, microprocessing
Requires at least: 5.0
Tested up to: 5.4.2
Stable tag: 3.0.3
Stable tag: 3.0.4
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand All @@ -29,6 +29,9 @@ This plugin allows you to configure multiple accounts and provide rules for when

== Changelog ==

= 3.0.4 - 08.01.2020 =
* Tweak - Add/Edit Rules UI improvement for a better UX. ([PFWMA-165](https://github.com/angelleye/paypal-for-woocommerce-multi-account-management/pull/67))

= 3.0.3 - 07.23.2020 =
* Fix - Order refund issue resolved. ([PFWMA-164](https://github.com/angelleye/paypal-for-woocommerce-multi-account-management/pull/63))
* Fix - Shipping cost split issue resolved between receivers. ([PFWMA-158](https://github.com/angelleye/paypal-for-woocommerce-multi-account-management/pull/65))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ public function angelleye_display_multi_account_list() {
$option_nine .= '</select>';
$option_six = '<p class="description">' . apply_filters('angelleye_multi_account_display_products_label', __('Products', 'paypal-for-woocommerce-multi-account-management')) . '</p>';
$option_six .= '<select id="product_list" class="angelleye-product-search" multiple="multiple" style="width: 78%;" name="woocommerce_paypal_express_api_product_ids[]" data-action="angelleye_pfwma_get_products" data-placeholder="' . esc_attr__('Any Product&hellip;', 'paypal-for-woocommerce-multi-account-management') . '">';
if( !empty($product_ids) ) {
if( !empty($product_ids) && is_array($product_ids)) {
foreach ($product_ids as $key => $value) {
$product_title = get_the_title($value);
if ( $product_title && ! is_wp_error( $product_title ) ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function __construct() {
if (defined('PFWMA_VERSION')) {
$this->version = PFWMA_VERSION;
} else {
$this->version = '3.0.3';
$this->version = '3.0.4';
}
$this->plugin_name = 'paypal-for-woocommerce-multi-account-management';
$this->load_dependencies();
Expand Down
4 changes: 2 additions & 2 deletions paypal-for-woocommerce-multi-account-management.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin Name: PayPal for WooCommerce Multi-Account Management
* Plugin URI: https://www.angelleye.com/product/paypal-woocommerce-multi-account-management/
* Description: Send WooCommerce order payments to different PayPal accounts based on rules provided.
* Version: 3.0.3
* Version: 3.0.4
* Author: Angell EYE
* Author URI: http://www.angelleye.com/
* License: GPLv3 or later
Expand All @@ -29,7 +29,7 @@
die;
}

define('PFWMA_VERSION', '3.0.3');
define('PFWMA_VERSION', '3.0.4');

/**
* define plugin basename
Expand Down

0 comments on commit 8a1d855

Please sign in to comment.