Plugin Directory

Changeset 3064571


Ignore:
Timestamp:
04/04/2024 10:45:21 AM (2 years ago)
Author:
ordersyncplugin
Message:

Update to version 1.7.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.7.1/includes/models/class-sheet.php

    r3058177 r3064571  
    165165                }
    166166            } catch ( \Exception $e ) {
    167                 return $e->getMessage();
     167                return false;
    168168            }
    169169        }
     
    174174         */
    175175        public function get_token() {
    176             return $this->generate_access_token();
     176            $new_token = $this->generate_access_token();
     177            if ($new_token) {
     178                return $new_token;
     179            } else {
     180                return $this->generate_access_token();
     181            }
    177182        }
    178183        /**
  • order-sync-with-google-sheets-for-woocommerce/tags/1.7.1/order-sync-with-google-sheets-for-woocommerce.php

    r3058177 r3064571  
    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.7.0
     6 * Version: 1.7.1
    77 * Author: WC Order Sync
    88 * Author URI: https://wcordersync.com/
     
    2121 */
    2222define( 'OSGSW_FILE', __FILE__ );
    23 define( 'OSGSW_VERSION', '1.7.0' );
     23define( 'OSGSW_VERSION', '1.7.1' );
    2424/**
    2525 * Loading base file
  • order-sync-with-google-sheets-for-woocommerce/tags/1.7.1/readme.txt

    r3058177 r3064571  
    33Tags: sync order, order management, inventory management, bulk edit, woocommerce orders
    44Requires at least: 5.4
    5 Tested up to: 6.4.2
     5Tested up to: 6.5
    66Requires PHP: 5.6
    7 Stable tag: 1.7.0
     7Stable tag: 1.7.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    122122
    123123== Changelog ==
     124= 1.7.1 - 04 Apr 2024 =
     125- Improvement: Enhanced compatibility to support WordPress 6.5
    124126
    125127= 1.7.0 – 25 Mar 2024 =
  • order-sync-with-google-sheets-for-woocommerce/trunk/includes/models/class-sheet.php

    r3058177 r3064571  
    165165                }
    166166            } catch ( \Exception $e ) {
    167                 return $e->getMessage();
     167                return false;
    168168            }
    169169        }
     
    174174         */
    175175        public function get_token() {
    176             return $this->generate_access_token();
     176            $new_token = $this->generate_access_token();
     177            if ($new_token) {
     178                return $new_token;
     179            } else {
     180                return $this->generate_access_token();
     181            }
    177182        }
    178183        /**
  • order-sync-with-google-sheets-for-woocommerce/trunk/order-sync-with-google-sheets-for-woocommerce.php

    r3058177 r3064571  
    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.7.0
     6 * Version: 1.7.1
    77 * Author: WC Order Sync
    88 * Author URI: https://wcordersync.com/
     
    2121 */
    2222define( 'OSGSW_FILE', __FILE__ );
    23 define( 'OSGSW_VERSION', '1.7.0' );
     23define( 'OSGSW_VERSION', '1.7.1' );
    2424/**
    2525 * Loading base file
  • order-sync-with-google-sheets-for-woocommerce/trunk/readme.txt

    r3058177 r3064571  
    33Tags: sync order, order management, inventory management, bulk edit, woocommerce orders
    44Requires at least: 5.4
    5 Tested up to: 6.4.2
     5Tested up to: 6.5
    66Requires PHP: 5.6
    7 Stable tag: 1.7.0
     7Stable tag: 1.7.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    122122
    123123== Changelog ==
     124= 1.7.1 - 04 Apr 2024 =
     125- Improvement: Enhanced compatibility to support WordPress 6.5
    124126
    125127= 1.7.0 – 25 Mar 2024 =
Note: See TracChangeset for help on using the changeset viewer.