Plugin Directory

Changeset 3093733


Ignore:
Timestamp:
05/28/2024 09:13:28 AM (20 months ago)
Author:
ferdev
Message:

Tagging version 4.4.3

Location:
woocommerce-shipstation-integration
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-shipstation-integration/tags/4.4.3/changelog.txt

    r3067979 r3093733  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.4.3 - 2024-05-27 =
     4* Tweak - Performance enhancement.
    25
    36= 4.4.2 - 2024-04-09 =
  • woocommerce-shipstation-integration/tags/4.4.3/includes/api-requests/class-wc-shipstation-api-export.php

    r3054381 r3093733  
    415415                $order->add_order_note( __( 'Order has been exported to Shipstation', 'woocommerce-shipstation-integration' ) );
    416416                $order->update_meta_data( '_shipstation_exported', 'yes' );
    417                 $order->save();
     417                $order->save_meta_data();
    418418            }
    419419        }
  • woocommerce-shipstation-integration/tags/4.4.3/includes/api-requests/class-wc-shipstation-api-shipnotify.php

    r3067979 r3093733  
    301301
    302302            $order->update_meta_data( '_shipstation_shipped_item_count', $current_shipped_items + $shipped_item_count );
    303             $order->save();
     303            $order->save_meta_data();
    304304        } else {
    305305            // If we don't have items from SS and order items in WC, or cannot parse
     
    330330                $order->update_meta_data( '_tracking_number', $tracking_number );
    331331                $order->update_meta_data( '_date_shipped', $timestamp );
    332                 $order->save();
     332                $order->save_meta_data();
    333333            }
    334334
  • woocommerce-shipstation-integration/tags/4.4.3/includes/class-wc-shipstation-privacy.php

    r3054381 r3093733  
    168168        $order->delete_meta_data( '_date_shipped' );
    169169        $order->delete_meta_data( '_shipstation_exported' );
    170         $order->save();
     170        $order->save_meta_data();
    171171
    172172        return array( true, false, array( __( 'ShipStation Order Data Erased.', 'woocommerce-shipstation-integration' ) ) );
  • woocommerce-shipstation-integration/tags/4.4.3/languages/woocommerce-shipstation.pot

    r3067979 r3093733  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.2\n"
     5"Project-Id-Version: WooCommerce - ShipStation Integration 4.4.3\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2024-04-09 21:17:34+00:00\n"
     8"POT-Creation-Date: 2024-05-28 09:12:56+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
  • woocommerce-shipstation-integration/tags/4.4.3/readme.txt

    r3067979 r3093733  
    44Requires at least: 6.3
    55Tested up to: 6.5
    6 WC tested up to: 8.7
    7 WC requires at least: 8.5
     6WC tested up to: 8.9
     7WC requires at least: 8.7
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.4.2
     10Stable tag: 4.4.3
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4949
    5050== Changelog ==
     51
     52= 4.4.3 - 2024-05-27 =
     53* Tweak - Performance enhancement.
    5154
    5255= 4.4.2 - 2024-04-09 =
  • woocommerce-shipstation-integration/tags/4.4.3/woocommerce-shipstation.php

    r3067979 r3093733  
    33 * Plugin Name: WooCommerce - ShipStation Integration
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.4.2
     5 * Version: 4.4.3
    66 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
    77 * Author: WooCommerce
     
    1111 * Requires at least: 6.3
    1212 * Tested up to: 6.5
    13  * WC tested up to: 8.7
    14  * WC requires at least: 8.5
     13 * WC tested up to: 8.9
     14 * WC requires at least: 8.7
    1515 * Requires Plugins: woocommerce
    1616 *
     
    5151    }
    5252
    53     define( 'WC_SHIPSTATION_VERSION', '4.4.2' ); // WRCS: DEFINED_VERSION.
     53    define( 'WC_SHIPSTATION_VERSION', '4.4.3' ); // WRCS: DEFINED_VERSION.
    5454
    5555    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
  • woocommerce-shipstation-integration/trunk/changelog.txt

    r3067979 r3093733  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.4.3 - 2024-05-27 =
     4* Tweak - Performance enhancement.
    25
    36= 4.4.2 - 2024-04-09 =
  • woocommerce-shipstation-integration/trunk/includes/api-requests/class-wc-shipstation-api-export.php

    r3054381 r3093733  
    415415                $order->add_order_note( __( 'Order has been exported to Shipstation', 'woocommerce-shipstation-integration' ) );
    416416                $order->update_meta_data( '_shipstation_exported', 'yes' );
    417                 $order->save();
     417                $order->save_meta_data();
    418418            }
    419419        }
  • woocommerce-shipstation-integration/trunk/includes/api-requests/class-wc-shipstation-api-shipnotify.php

    r3067979 r3093733  
    301301
    302302            $order->update_meta_data( '_shipstation_shipped_item_count', $current_shipped_items + $shipped_item_count );
    303             $order->save();
     303            $order->save_meta_data();
    304304        } else {
    305305            // If we don't have items from SS and order items in WC, or cannot parse
     
    330330                $order->update_meta_data( '_tracking_number', $tracking_number );
    331331                $order->update_meta_data( '_date_shipped', $timestamp );
    332                 $order->save();
     332                $order->save_meta_data();
    333333            }
    334334
  • woocommerce-shipstation-integration/trunk/includes/class-wc-shipstation-privacy.php

    r3054381 r3093733  
    168168        $order->delete_meta_data( '_date_shipped' );
    169169        $order->delete_meta_data( '_shipstation_exported' );
    170         $order->save();
     170        $order->save_meta_data();
    171171
    172172        return array( true, false, array( __( 'ShipStation Order Data Erased.', 'woocommerce-shipstation-integration' ) ) );
  • woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot

    r3067979 r3093733  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.2\n"
     5"Project-Id-Version: WooCommerce - ShipStation Integration 4.4.3\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2024-04-09 21:17:34+00:00\n"
     8"POT-Creation-Date: 2024-05-28 09:12:56+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
  • woocommerce-shipstation-integration/trunk/readme.txt

    r3067979 r3093733  
    44Requires at least: 6.3
    55Tested up to: 6.5
    6 WC tested up to: 8.7
    7 WC requires at least: 8.5
     6WC tested up to: 8.9
     7WC requires at least: 8.7
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.4.2
     10Stable tag: 4.4.3
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4949
    5050== Changelog ==
     51
     52= 4.4.3 - 2024-05-27 =
     53* Tweak - Performance enhancement.
    5154
    5255= 4.4.2 - 2024-04-09 =
  • woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php

    r3067979 r3093733  
    33 * Plugin Name: WooCommerce - ShipStation Integration
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.4.2
     5 * Version: 4.4.3
    66 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
    77 * Author: WooCommerce
     
    1111 * Requires at least: 6.3
    1212 * Tested up to: 6.5
    13  * WC tested up to: 8.7
    14  * WC requires at least: 8.5
     13 * WC tested up to: 8.9
     14 * WC requires at least: 8.7
    1515 * Requires Plugins: woocommerce
    1616 *
     
    5151    }
    5252
    53     define( 'WC_SHIPSTATION_VERSION', '4.4.2' ); // WRCS: DEFINED_VERSION.
     53    define( 'WC_SHIPSTATION_VERSION', '4.4.3' ); // WRCS: DEFINED_VERSION.
    5454
    5555    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
Note: See TracChangeset for help on using the changeset viewer.