Plugin Directory

Changeset 2988045


Ignore:
Timestamp:
11/02/2023 12:36:03 PM (2 years ago)
Author:
ordersyncplugin
Message:

Update to version 1.4.1 from GitHub

Location:
order-sync-with-google-sheets-for-woocommerce
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/includes/classes/class-hooks.php

    r2984187 r2988045  
    478478            $clients->insights()->init();
    479479            // Active automatic updater.
    480             $clients->updater();
    481480            $this->is_license_active();
    482481            // Init WPPOOL Plugin.
     
    487486                $to = '2023-11-05';
    488487                $from = '2023-10-23';
    489                 $osgs_plugin->set_campaign($image, $to, $from );
     488                if( $osgs_plugin && is_object( $osgs_plugin ) && method_exists( $osgs_plugin, 'set_campaign' ) ) {
     489                    $osgs_plugin->set_campaign($image, $to, $from );
     490                }
    490491            }
    491492        }
  • order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/order-sync-with-google-sheets-for-woocommerce.php

    r2984187 r2988045  
    44 * Plugin URI: https://wcordersync.com/
    55 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets.
    6  * Version: 1.4.0
     6 * Version: 1.4.1
    77 * Author: WC Order Sync
    88 * Author URI: https://wcordersync.com/
     
    2323 */
    2424define( 'OSGSW_FILE', __FILE__ );
    25 define( 'OSGSW_VERSION', '1.4.0' );
     25define( 'OSGSW_VERSION', '1.4.1' );
    2626
    2727/**
  • order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/readme.txt

    r2984187 r2988045  
    55Tested up to: 6.3
    66Requires PHP: 5.6
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118
    119119== Changelog ==
     120= 1.4.1 - 2 Nov 2023 =
     121* Fix: Fixed an issue that caused a fatal error when calling the set_campaign method on null due to a conflict between the SDK and some plugin
    120122
    121123= 1.4.0 - 26 OCT 2023 =
  • order-sync-with-google-sheets-for-woocommerce/trunk/includes/classes/class-hooks.php

    r2984187 r2988045  
    478478            $clients->insights()->init();
    479479            // Active automatic updater.
    480             $clients->updater();
    481480            $this->is_license_active();
    482481            // Init WPPOOL Plugin.
     
    487486                $to = '2023-11-05';
    488487                $from = '2023-10-23';
    489                 $osgs_plugin->set_campaign($image, $to, $from );
     488                if( $osgs_plugin && is_object( $osgs_plugin ) && method_exists( $osgs_plugin, 'set_campaign' ) ) {
     489                    $osgs_plugin->set_campaign($image, $to, $from );
     490                }
    490491            }
    491492        }
  • order-sync-with-google-sheets-for-woocommerce/trunk/order-sync-with-google-sheets-for-woocommerce.php

    r2984187 r2988045  
    44 * Plugin URI: https://wcordersync.com/
    55 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets.
    6  * Version: 1.4.0
     6 * Version: 1.4.1
    77 * Author: WC Order Sync
    88 * Author URI: https://wcordersync.com/
     
    2323 */
    2424define( 'OSGSW_FILE', __FILE__ );
    25 define( 'OSGSW_VERSION', '1.4.0' );
     25define( 'OSGSW_VERSION', '1.4.1' );
    2626
    2727/**
  • order-sync-with-google-sheets-for-woocommerce/trunk/readme.txt

    r2984187 r2988045  
    55Tested up to: 6.3
    66Requires PHP: 5.6
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118
    119119== Changelog ==
     120= 1.4.1 - 2 Nov 2023 =
     121* Fix: Fixed an issue that caused a fatal error when calling the set_campaign method on null due to a conflict between the SDK and some plugin
    120122
    121123= 1.4.0 - 26 OCT 2023 =
Note: See TracChangeset for help on using the changeset viewer.