Changeset 3314015
- Timestamp:
- 06/18/2025 04:21:49 PM (9 months ago)
- Location:
- woocommerce-shipstation-integration
- Files:
-
- 10 edited
- 1 copied
-
tags/4.7.1 (copied) (copied from woocommerce-shipstation-integration/trunk)
-
tags/4.7.1/changelog.txt (modified) (1 diff)
-
tags/4.7.1/includes/class-checkout.php (modified) (2 diffs)
-
tags/4.7.1/languages/woocommerce-shipstation.pot (modified) (2 diffs)
-
tags/4.7.1/readme.txt (modified) (2 diffs)
-
tags/4.7.1/woocommerce-shipstation.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-checkout.php (modified) (2 diffs)
-
trunk/languages/woocommerce-shipstation.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-shipstation.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-shipstation-integration/tags/4.7.1/changelog.txt
r3313351 r3314015 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.7.1 - 2025-06-18 = 4 * Fix - Fatal error on WooCommerce Subscriptions edit page. 2 5 3 6 = 4.7.0 - 2025-06-17 = -
woocommerce-shipstation-integration/tags/4.7.1/includes/class-checkout.php
r3313351 r3314015 609 609 * When context is not 'edit', adds gift data to shipping fields if the order is marked as gift. 610 610 * 611 * @param array $shipping_fields List of shipping fields to display in admin.612 * @param WC_Order $order WooCommerce order object containing gift data.613 * @param string $context Context of display - 'edit' for editing, other for viewing.611 * @param array $shipping_fields List of shipping fields to display in admin. 612 * @param WC_Order|false $order WooCommerce order object containing gift data. 613 * @param string $context Context of display - 'edit' for editing, other for viewing. 614 614 * 615 615 * @return array Modified list of shipping fields including gift data if applicable. 616 616 */ 617 public function maybe_display_gift_data_below_admin_shipping_fields( array $shipping_fields, WC_Order $order, string$context ): array {617 public function maybe_display_gift_data_below_admin_shipping_fields( $shipping_fields, $order, $context ): array { 618 618 619 619 // Hide fields in edit context, don't allow to edit values. … … 623 623 } 624 624 625 return $shipping_fields; 626 } 627 628 if ( ! $order instanceof WC_Order ) { 625 629 return $shipping_fields; 626 630 } -
woocommerce-shipstation-integration/tags/4.7.1/languages/woocommerce-shipstation.pot
r3313351 r3314015 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ShipStation for WooCommerce 4.7. 0\n"5 "Project-Id-Version: ShipStation for WooCommerce 4.7.1\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2025-06-1 7 15:22:22+00:00\n"8 "POT-Creation-Date: 2025-06-18 16:21:23+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 216 216 msgstr "" 217 217 218 #: includes/class-checkout.php:577 includes/class-checkout.php:8 77219 #: includes/class-checkout.php:88 2218 #: includes/class-checkout.php:577 includes/class-checkout.php:881 219 #: includes/class-checkout.php:886 220 220 msgid "Additional information" 221 221 msgstr "" -
woocommerce-shipstation-integration/tags/4.7.1/readme.txt
r3313351 r3314015 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.7. 010 Stable tag: 4.7.1 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 70 70 71 71 == Changelog == 72 73 = 4.7.1 - 2025-06-18 = 74 * Fix - Fatal error on WooCommerce Subscriptions edit page. 72 75 73 76 = 4.7.0 - 2025-06-17 = -
woocommerce-shipstation-integration/tags/4.7.1/woocommerce-shipstation.php
r3313351 r3314015 3 3 * Plugin Name: ShipStation for WooCommerce 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.7. 05 * Version: 4.7.1 6 6 * Description: Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation. 7 7 * Author: WooCommerce … … 60 60 } 61 61 62 define( 'WC_SHIPSTATION_VERSION', '4.7. 0' ); // WRCS: DEFINED_VERSION.62 define( 'WC_SHIPSTATION_VERSION', '4.7.1' ); // WRCS: DEFINED_VERSION. 63 63 64 64 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) { -
woocommerce-shipstation-integration/trunk/changelog.txt
r3313351 r3314015 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.7.1 - 2025-06-18 = 4 * Fix - Fatal error on WooCommerce Subscriptions edit page. 2 5 3 6 = 4.7.0 - 2025-06-17 = -
woocommerce-shipstation-integration/trunk/includes/class-checkout.php
r3313351 r3314015 609 609 * When context is not 'edit', adds gift data to shipping fields if the order is marked as gift. 610 610 * 611 * @param array $shipping_fields List of shipping fields to display in admin.612 * @param WC_Order $order WooCommerce order object containing gift data.613 * @param string $context Context of display - 'edit' for editing, other for viewing.611 * @param array $shipping_fields List of shipping fields to display in admin. 612 * @param WC_Order|false $order WooCommerce order object containing gift data. 613 * @param string $context Context of display - 'edit' for editing, other for viewing. 614 614 * 615 615 * @return array Modified list of shipping fields including gift data if applicable. 616 616 */ 617 public function maybe_display_gift_data_below_admin_shipping_fields( array $shipping_fields, WC_Order $order, string$context ): array {617 public function maybe_display_gift_data_below_admin_shipping_fields( $shipping_fields, $order, $context ): array { 618 618 619 619 // Hide fields in edit context, don't allow to edit values. … … 623 623 } 624 624 625 return $shipping_fields; 626 } 627 628 if ( ! $order instanceof WC_Order ) { 625 629 return $shipping_fields; 626 630 } -
woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot
r3313351 r3314015 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ShipStation for WooCommerce 4.7. 0\n"5 "Project-Id-Version: ShipStation for WooCommerce 4.7.1\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2025-06-1 7 15:22:22+00:00\n"8 "POT-Creation-Date: 2025-06-18 16:21:23+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 216 216 msgstr "" 217 217 218 #: includes/class-checkout.php:577 includes/class-checkout.php:8 77219 #: includes/class-checkout.php:88 2218 #: includes/class-checkout.php:577 includes/class-checkout.php:881 219 #: includes/class-checkout.php:886 220 220 msgid "Additional information" 221 221 msgstr "" -
woocommerce-shipstation-integration/trunk/readme.txt
r3313351 r3314015 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.7. 010 Stable tag: 4.7.1 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 70 70 71 71 == Changelog == 72 73 = 4.7.1 - 2025-06-18 = 74 * Fix - Fatal error on WooCommerce Subscriptions edit page. 72 75 73 76 = 4.7.0 - 2025-06-17 = -
woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php
r3313351 r3314015 3 3 * Plugin Name: ShipStation for WooCommerce 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.7. 05 * Version: 4.7.1 6 6 * Description: Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation. 7 7 * Author: WooCommerce … … 60 60 } 61 61 62 define( 'WC_SHIPSTATION_VERSION', '4.7. 0' ); // WRCS: DEFINED_VERSION.62 define( 'WC_SHIPSTATION_VERSION', '4.7.1' ); // WRCS: DEFINED_VERSION. 63 63 64 64 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.