Plugin Directory

Changeset 3253325


Ignore:
Timestamp:
03/10/2025 12:57:34 PM (13 months ago)
Author:
SamNajian
Message:

Tagging version 4.4.8

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

Legend:

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

    r3250300 r3253325  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.4.8 - 2025-03-10 =
     4* Fix   - Make the value of `woocommerce_shipstation_get_order_id` filter consistent by removing the conversion function.
    25
    36= 4.4.7 - 2025-03-04 =
  • woocommerce-shipstation-integration/tags/4.4.8/includes/api-requests/class-wc-shipstation-api-shipnotify.php

    r3093733 r3253325  
    121121         * @since 4.1.6
    122122         */
    123         return apply_filters( 'woocommerce_shipstation_get_order_id', absint( $order_id ) );
     123        return absint( apply_filters( 'woocommerce_shipstation_get_order_id', $order_id ) );
    124124    }
    125125
     
    228228
    229229        if ( false === $order || ! is_object( $order ) ) {
    230             /* translators: 1: order id */
    231             $this->log( sprintf( __( 'Order %s can not be found.', 'woocommerce-shipstation-integration' ), $order_id ) );
     230            /* translators: %1$s is order number, %2$d is order id */
     231            $this->log( sprintf( __( 'Order number: %1$s or Order ID: %2$d can not be found.', 'woocommerce-shipstation-integration' ), $order_number, $order_id ) );
    232232            exit;
    233233        }
  • woocommerce-shipstation-integration/tags/4.4.8/languages/woocommerce-shipstation.pot

    r3250300 r3253325  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.7\n"
     5"Project-Id-Version: WooCommerce - ShipStation Integration 4.4.8\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2025-03-04 10:32:17+00:00\n"
     8"POT-Creation-Date: 2025-03-10 12:56:59+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    1616
    1717#: includes/api-requests/class-wc-shipstation-api-export.php:141
    18 #: includes/api-requests/class-wc-shipstation-api-shipnotify.php:231
    1918#. translators: 1: order id
    2019msgid "Order %s can not be found."
     
    5453#. translators: %s is an error message.
    5554msgid "Cannot parse XML : %s"
     55msgstr ""
     56
     57#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:231
     58#. translators: %1$s is order number, %2$d is order id
     59msgid "Order number: %1$s or Order ID: %2$d can not be found."
    5660msgstr ""
    5761
     
    251255msgstr ""
    252256
    253 #: woocommerce-shipstation.php:36
     257#: woocommerce-shipstation.php:37
    254258#. translators: %s WC download URL link.
    255259msgid ""
     
    258262msgstr ""
    259263
    260 #: woocommerce-shipstation.php:136
     264#: woocommerce-shipstation.php:137
    261265msgid "Settings"
    262266msgstr ""
    263267
    264 #: woocommerce-shipstation.php:137
     268#: woocommerce-shipstation.php:138
    265269msgid "Support"
    266270msgstr ""
    267271
    268 #: woocommerce-shipstation.php:138
     272#: woocommerce-shipstation.php:139
    269273msgid "Docs"
    270274msgstr ""
  • woocommerce-shipstation-integration/tags/4.4.8/readme.txt

    r3250300 r3253325  
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.4.7
     10Stable tag: 4.4.8
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6868
    6969== Changelog ==
     70
     71= 4.4.8 - 2025-03-10 =
     72* Fix   - Make the value of `woocommerce_shipstation_get_order_id` filter consistent by removing the conversion function.
    7073
    7174= 4.4.7 - 2025-03-04 =
  • woocommerce-shipstation-integration/tags/4.4.8/woocommerce-shipstation.php

    r3250300 r3253325  
    33 * Plugin Name: WooCommerce - ShipStation Integration
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.4.7
     5 * Version: 4.4.8
    66 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
    77 * Author: WooCommerce
     
    99 * Text Domain: woocommerce-shipstation-integration
    1010 * Domain Path: /languages
     11 * Requires Plugins: woocommerce
     12 * Requires PHP: 7.4
    1113 * Requires at least: 6.6
    1214 * Tested up to: 6.7
     15 * WC requires at least: 9.5
    1316 * WC tested up to: 9.7
    14  * WC requires at least: 9.5
    15  * Requires Plugins: woocommerce
    1617 *
    1718 * @package WC_ShipStation
     
    4950    }
    5051
    51     define( 'WC_SHIPSTATION_VERSION', '4.4.7' ); // WRCS: DEFINED_VERSION.
     52    define( 'WC_SHIPSTATION_VERSION', '4.4.8' ); // WRCS: DEFINED_VERSION.
    5253
    5354    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
  • woocommerce-shipstation-integration/trunk/changelog.txt

    r3250300 r3253325  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.4.8 - 2025-03-10 =
     4* Fix   - Make the value of `woocommerce_shipstation_get_order_id` filter consistent by removing the conversion function.
    25
    36= 4.4.7 - 2025-03-04 =
  • woocommerce-shipstation-integration/trunk/includes/api-requests/class-wc-shipstation-api-shipnotify.php

    r3093733 r3253325  
    121121         * @since 4.1.6
    122122         */
    123         return apply_filters( 'woocommerce_shipstation_get_order_id', absint( $order_id ) );
     123        return absint( apply_filters( 'woocommerce_shipstation_get_order_id', $order_id ) );
    124124    }
    125125
     
    228228
    229229        if ( false === $order || ! is_object( $order ) ) {
    230             /* translators: 1: order id */
    231             $this->log( sprintf( __( 'Order %s can not be found.', 'woocommerce-shipstation-integration' ), $order_id ) );
     230            /* translators: %1$s is order number, %2$d is order id */
     231            $this->log( sprintf( __( 'Order number: %1$s or Order ID: %2$d can not be found.', 'woocommerce-shipstation-integration' ), $order_number, $order_id ) );
    232232            exit;
    233233        }
  • woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot

    r3250300 r3253325  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.7\n"
     5"Project-Id-Version: WooCommerce - ShipStation Integration 4.4.8\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2025-03-04 10:32:17+00:00\n"
     8"POT-Creation-Date: 2025-03-10 12:56:59+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    1616
    1717#: includes/api-requests/class-wc-shipstation-api-export.php:141
    18 #: includes/api-requests/class-wc-shipstation-api-shipnotify.php:231
    1918#. translators: 1: order id
    2019msgid "Order %s can not be found."
     
    5453#. translators: %s is an error message.
    5554msgid "Cannot parse XML : %s"
     55msgstr ""
     56
     57#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:231
     58#. translators: %1$s is order number, %2$d is order id
     59msgid "Order number: %1$s or Order ID: %2$d can not be found."
    5660msgstr ""
    5761
     
    251255msgstr ""
    252256
    253 #: woocommerce-shipstation.php:36
     257#: woocommerce-shipstation.php:37
    254258#. translators: %s WC download URL link.
    255259msgid ""
     
    258262msgstr ""
    259263
    260 #: woocommerce-shipstation.php:136
     264#: woocommerce-shipstation.php:137
    261265msgid "Settings"
    262266msgstr ""
    263267
    264 #: woocommerce-shipstation.php:137
     268#: woocommerce-shipstation.php:138
    265269msgid "Support"
    266270msgstr ""
    267271
    268 #: woocommerce-shipstation.php:138
     272#: woocommerce-shipstation.php:139
    269273msgid "Docs"
    270274msgstr ""
  • woocommerce-shipstation-integration/trunk/readme.txt

    r3250300 r3253325  
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.4.7
     10Stable tag: 4.4.8
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6868
    6969== Changelog ==
     70
     71= 4.4.8 - 2025-03-10 =
     72* Fix   - Make the value of `woocommerce_shipstation_get_order_id` filter consistent by removing the conversion function.
    7073
    7174= 4.4.7 - 2025-03-04 =
  • woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php

    r3250300 r3253325  
    33 * Plugin Name: WooCommerce - ShipStation Integration
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.4.7
     5 * Version: 4.4.8
    66 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
    77 * Author: WooCommerce
     
    99 * Text Domain: woocommerce-shipstation-integration
    1010 * Domain Path: /languages
     11 * Requires Plugins: woocommerce
     12 * Requires PHP: 7.4
    1113 * Requires at least: 6.6
    1214 * Tested up to: 6.7
     15 * WC requires at least: 9.5
    1316 * WC tested up to: 9.7
    14  * WC requires at least: 9.5
    15  * Requires Plugins: woocommerce
    1617 *
    1718 * @package WC_ShipStation
     
    4950    }
    5051
    51     define( 'WC_SHIPSTATION_VERSION', '4.4.7' ); // WRCS: DEFINED_VERSION.
     52    define( 'WC_SHIPSTATION_VERSION', '4.4.8' ); // WRCS: DEFINED_VERSION.
    5253
    5354    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
Note: See TracChangeset for help on using the changeset viewer.