Changeset 3177077
- Timestamp:
- 10/28/2024 01:31:27 PM (17 months ago)
- Location:
- woocommerce-shipstation-integration
- Files:
-
- 8 edited
- 1 copied
-
tags/4.4.5 (copied) (copied from woocommerce-shipstation-integration/trunk)
-
tags/4.4.5/changelog.txt (modified) (1 diff)
-
tags/4.4.5/languages/woocommerce-shipstation.pot (modified) (2 diffs)
-
tags/4.4.5/readme.txt (modified) (2 diffs)
-
tags/4.4.5/woocommerce-shipstation.php (modified) (6 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/languages/woocommerce-shipstation.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-shipstation.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-shipstation-integration/tags/4.4.5/changelog.txt
r3111282 r3177077 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.4.5 - 2024-10-28 = 4 * Tweak - WordPress 6.7 Compatibility. 2 5 3 6 = 4.4.4 - 2024-07-02 = -
woocommerce-shipstation-integration/tags/4.4.5/languages/woocommerce-shipstation.pot
r3111282 r3177077 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4. 4\n"5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.5\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2024- 07-02 16:35:45+00:00\n"8 "POT-Creation-Date: 2024-10-28 13:30:42+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 258 258 msgstr "" 259 259 260 #: woocommerce-shipstation.php:1 08260 #: woocommerce-shipstation.php:121 261 261 msgid "Settings" 262 262 msgstr "" 263 263 264 #: woocommerce-shipstation.php:1 09264 #: woocommerce-shipstation.php:122 265 265 msgid "Support" 266 266 msgstr "" 267 267 268 #: woocommerce-shipstation.php:1 10268 #: woocommerce-shipstation.php:123 269 269 msgid "Docs" 270 270 msgstr "" -
woocommerce-shipstation-integration/tags/4.4.5/readme.txt
r3111282 r3177077 2 2 Contributors: woocommerce, automattic, royho, akeda, mattyza, bor0, woothemes, dwainm, laurendavissmith001 3 3 Tags: shipping, woocommerce, automattic 4 Requires at least: 6. 45 Tested up to: 6. 66 WC tested up to: 9. 07 WC requires at least: 8.84 Requires at least: 6.5 5 Tested up to: 6.7 6 WC tested up to: 9.3 7 WC requires at least: 9.1 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.4. 410 Stable tag: 4.4.5 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 49 49 50 50 == Changelog == 51 52 = 4.4.5 - 2024-10-28 = 53 * Tweak - WordPress 6.7 Compatibility. 51 54 52 55 = 4.4.4 - 2024-07-02 = -
woocommerce-shipstation-integration/tags/4.4.5/woocommerce-shipstation.php
r3111282 r3177077 3 3 * Plugin Name: WooCommerce - ShipStation Integration 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.4. 45 * Version: 4.4.5 6 6 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support. 7 7 * Author: WooCommerce … … 9 9 * Text Domain: woocommerce-shipstation-integration 10 10 * Domain Path: /languages 11 * Requires at least: 6. 412 * Tested up to: 6. 613 * WC tested up to: 9. 014 * WC requires at least: 8.811 * Requires at least: 6.5 12 * Tested up to: 6.7 13 * WC tested up to: 9.3 14 * WC requires at least: 9.1 15 15 * Requires Plugins: woocommerce 16 16 * … … 43 43 */ 44 44 function woocommerce_shipstation_init() { 45 load_plugin_textdomain( 'woocommerce-shipstation-integration', false, basename( __DIR__ ) . '/languages' );46 47 45 if ( ! class_exists( 'WooCommerce' ) ) { 48 46 add_action( 'admin_notices', 'woocommerce_shipstation_missing_wc_notice' ); … … 51 49 } 52 50 53 define( 'WC_SHIPSTATION_VERSION', '4.4. 4' ); // WRCS: DEFINED_VERSION.51 define( 'WC_SHIPSTATION_VERSION', '4.4.5' ); // WRCS: DEFINED_VERSION. 54 52 55 53 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) { … … 57 55 } 58 56 57 add_action( 'before_woocommerce_init', 'woocommerce_shipstation_includes' ); 58 add_action( 'after_setup_theme', 'woocommerce_shipstation_load_textdomain' ); 59 } 60 61 add_action( 'plugins_loaded', 'woocommerce_shipstation_init' ); 62 63 /** 64 * Include needed files. 65 */ 66 function woocommerce_shipstation_includes() { 59 67 // Include order util trait class file. 60 68 require_once WC_SHIPSTATION_ABSPATH . 'includes/trait-woocommerce-order-util.php'; … … 63 71 } 64 72 65 add_action( 'plugins_loaded', 'woocommerce_shipstation_init' ); 73 /** 74 * Localisation. 75 */ 76 function woocommerce_shipstation_load_textdomain() { 77 load_plugin_textdomain( 'woocommerce-shipstation-integration', false, plugin_basename( WC_SHIPSTATION_ABSPATH ) . '/languages/' ); 78 } 66 79 67 80 /** -
woocommerce-shipstation-integration/trunk/changelog.txt
r3111282 r3177077 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.4.5 - 2024-10-28 = 4 * Tweak - WordPress 6.7 Compatibility. 2 5 3 6 = 4.4.4 - 2024-07-02 = -
woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot
r3111282 r3177077 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4. 4\n"5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.5\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2024- 07-02 16:35:45+00:00\n"8 "POT-Creation-Date: 2024-10-28 13:30:42+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 258 258 msgstr "" 259 259 260 #: woocommerce-shipstation.php:1 08260 #: woocommerce-shipstation.php:121 261 261 msgid "Settings" 262 262 msgstr "" 263 263 264 #: woocommerce-shipstation.php:1 09264 #: woocommerce-shipstation.php:122 265 265 msgid "Support" 266 266 msgstr "" 267 267 268 #: woocommerce-shipstation.php:1 10268 #: woocommerce-shipstation.php:123 269 269 msgid "Docs" 270 270 msgstr "" -
woocommerce-shipstation-integration/trunk/readme.txt
r3111282 r3177077 2 2 Contributors: woocommerce, automattic, royho, akeda, mattyza, bor0, woothemes, dwainm, laurendavissmith001 3 3 Tags: shipping, woocommerce, automattic 4 Requires at least: 6. 45 Tested up to: 6. 66 WC tested up to: 9. 07 WC requires at least: 8.84 Requires at least: 6.5 5 Tested up to: 6.7 6 WC tested up to: 9.3 7 WC requires at least: 9.1 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.4. 410 Stable tag: 4.4.5 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 49 49 50 50 == Changelog == 51 52 = 4.4.5 - 2024-10-28 = 53 * Tweak - WordPress 6.7 Compatibility. 51 54 52 55 = 4.4.4 - 2024-07-02 = -
woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php
r3111282 r3177077 3 3 * Plugin Name: WooCommerce - ShipStation Integration 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.4. 45 * Version: 4.4.5 6 6 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support. 7 7 * Author: WooCommerce … … 9 9 * Text Domain: woocommerce-shipstation-integration 10 10 * Domain Path: /languages 11 * Requires at least: 6. 412 * Tested up to: 6. 613 * WC tested up to: 9. 014 * WC requires at least: 8.811 * Requires at least: 6.5 12 * Tested up to: 6.7 13 * WC tested up to: 9.3 14 * WC requires at least: 9.1 15 15 * Requires Plugins: woocommerce 16 16 * … … 43 43 */ 44 44 function woocommerce_shipstation_init() { 45 load_plugin_textdomain( 'woocommerce-shipstation-integration', false, basename( __DIR__ ) . '/languages' );46 47 45 if ( ! class_exists( 'WooCommerce' ) ) { 48 46 add_action( 'admin_notices', 'woocommerce_shipstation_missing_wc_notice' ); … … 51 49 } 52 50 53 define( 'WC_SHIPSTATION_VERSION', '4.4. 4' ); // WRCS: DEFINED_VERSION.51 define( 'WC_SHIPSTATION_VERSION', '4.4.5' ); // WRCS: DEFINED_VERSION. 54 52 55 53 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) { … … 57 55 } 58 56 57 add_action( 'before_woocommerce_init', 'woocommerce_shipstation_includes' ); 58 add_action( 'after_setup_theme', 'woocommerce_shipstation_load_textdomain' ); 59 } 60 61 add_action( 'plugins_loaded', 'woocommerce_shipstation_init' ); 62 63 /** 64 * Include needed files. 65 */ 66 function woocommerce_shipstation_includes() { 59 67 // Include order util trait class file. 60 68 require_once WC_SHIPSTATION_ABSPATH . 'includes/trait-woocommerce-order-util.php'; … … 63 71 } 64 72 65 add_action( 'plugins_loaded', 'woocommerce_shipstation_init' ); 73 /** 74 * Localisation. 75 */ 76 function woocommerce_shipstation_load_textdomain() { 77 load_plugin_textdomain( 'woocommerce-shipstation-integration', false, plugin_basename( WC_SHIPSTATION_ABSPATH ) . '/languages/' ); 78 } 66 79 67 80 /**
Note: See TracChangeset
for help on using the changeset viewer.