Plugin Directory

Changeset 3224120


Ignore:
Timestamp:
01/17/2025 10:55:40 AM (14 months ago)
Author:
SamNajian
Message:

Tagging version 1.3.4

Location:
woocommerce-shipping
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-shipping/tags/1.3.4/changelog.txt

    r3223116 r3224120  
    11*** WooCommerce Shipping Changelog ***
     2
     3= 1.3.4 - 2025-01-17 =
     4* Fix   - Fatal error on settings page for new installs.
    25
    36= 1.3.3 - 2025-01-15 =
  • woocommerce-shipping/tags/1.3.4/languages/woocommerce-shipping.pot

    r3223116 r3224120  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Shipping 1.3.3\n"
     5"Project-Id-Version: WooCommerce Shipping 1.3.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-shipping\n"
    77"Last-Translator: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-15T18:23:50+00:00\n"
     12"POT-Creation-Date: 2025-01-17T10:54:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.6.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: woocommerce-shipping\n"
    1616
    1717#. Plugin Name of the plugin
     18#: woocommerce-shipping.php
    1819#: classes/class-wc-connect-privacy.php:34
    1920#: classes/class-wc-connect-settings-pages.php:93
     
    2223
    2324#. Plugin URI of the plugin
     25#: woocommerce-shipping.php
    2426msgid "https://woocommerce.com/products/shipping/"
    2527msgstr ""
    2628
    2729#. Description of the plugin
     30#: woocommerce-shipping.php
    2831msgid "Save time and money with WooCommerce Shipping. Print discounted shipping labels with just a few clicks from your WooCommerce dashboard."
    2932msgstr ""
    3033
    3134#. Author of the plugin
     35#: woocommerce-shipping.php
    3236msgid "WooCommerce"
    3337msgstr ""
    3438
    3539#. Author URI of the plugin
     40#: woocommerce-shipping.php
    3641msgid "https://woocommerce.com/"
    3742msgstr ""
  • woocommerce-shipping/tags/1.3.4/readme.txt

    r3223116 r3224120  
    88WC requires at least: 9.3
    99WC tested up to: 9.5
    10 Stable tag: 1.3.3
     10Stable tag: 1.3.4
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 1.3.4 - 2025-01-17 =
     132* Fix   - Fatal error on settings page for new installs.
     133
    131134= 1.3.3 - 2025-01-15 =
    132135* Add   - New API endpoint to check if the order is eligible for shipping label creation.
  • woocommerce-shipping/tags/1.3.4/src/Loader.php

    r3223116 r3224120  
    812812    public function init_onboarding_dependencies() {
    813813        // Register settings page with basic onboarding instructions.
    814         $settings_page = new SettingsPage( $this->service_settings_store, $this->get_shipping_label() );
     814        $settings_page = new SettingsPage( $this->service_settings_store, $this->view_service );
    815815        $settings_page->register_hooks();
    816816
  • woocommerce-shipping/tags/1.3.4/src/Onboarding/SettingsPage.php

    r3139300 r3224120  
    1515use Automattic\WCShipping\Connect\WC_Connect_Settings_Pages;
    1616use Automattic\WCShipping\DOM\Manipulation as DOM_Manipulation;
    17 use Automattic\WCShipping\LabelPurchase\View;
     17use Automattic\WCShipping\LabelPurchase\ViewService;
    1818
    1919/**
     
    3232     * View service that combines a lot of internal dependencies.
    3333     *
    34      * @var View
     34     * @var ViewService
    3535     */
    3636    protected $view_service;
     
    4040     *
    4141     * @param WC_Connect_Service_Settings_Store $service_settings_store WC Shipping setting store.
    42      * @param View                              $view_service View service that combines a lot of internal dependencies.
     42     * @param ViewService                       $view_service View service that combines a lot of internal dependencies.
    4343     * @return void
    4444     */
    45     public function __construct( WC_Connect_Service_Settings_Store $service_settings_store, View $view_service ) {
     45    public function __construct( WC_Connect_Service_Settings_Store $service_settings_store, ViewService $view_service ) {
    4646        $this->service_settings_store = $service_settings_store;
    4747        $this->view_service           = $view_service;
  • woocommerce-shipping/tags/1.3.4/vendor/composer/installed.php

    r3223116 r3224120  
    44        'pretty_version' => 'dev-trunk',
    55        'version' => 'dev-trunk',
    6         'reference' => 'f58880f735dff8e1a9cd59ac780d55306869f75f',
     6        'reference' => '430498b653377c57ea05fbde2490f6f09bb8c707',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    104104            'pretty_version' => 'dev-trunk',
    105105            'version' => 'dev-trunk',
    106             'reference' => 'f58880f735dff8e1a9cd59ac780d55306869f75f',
     106            'reference' => '430498b653377c57ea05fbde2490f6f09bb8c707',
    107107            'type' => 'library',
    108108            'install_path' => __DIR__ . '/../../',
  • woocommerce-shipping/tags/1.3.4/woocommerce-shipping.php

    r3223116 r3224120  
    88 * Text Domain: woocommerce-shipping
    99 * Domain Path: /languages/
    10  * Version: 1.3.3
     10 * Version: 1.3.4
    1111 * Requires Plugins: woocommerce
    1212 * Requires PHP: 7.4
     
    4040}
    4141
    42 define( 'WCSHIPPING_VERSION', '1.3.3' ); // WRCS: DEFINED_VERSION.
     42define( 'WCSHIPPING_VERSION', '1.3.4' ); // WRCS: DEFINED_VERSION.
    4343define( 'WCSHIPPING_PLUGIN_FILE', __FILE__ );
    4444define( 'WCSHIPPING_PLUGIN_DIR', __DIR__ );
  • woocommerce-shipping/trunk/changelog.txt

    r3223116 r3224120  
    11*** WooCommerce Shipping Changelog ***
     2
     3= 1.3.4 - 2025-01-17 =
     4* Fix   - Fatal error on settings page for new installs.
    25
    36= 1.3.3 - 2025-01-15 =
  • woocommerce-shipping/trunk/languages/woocommerce-shipping.pot

    r3223116 r3224120  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Shipping 1.3.3\n"
     5"Project-Id-Version: WooCommerce Shipping 1.3.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-shipping\n"
    77"Last-Translator: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-15T18:23:50+00:00\n"
     12"POT-Creation-Date: 2025-01-17T10:54:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.6.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: woocommerce-shipping\n"
    1616
    1717#. Plugin Name of the plugin
     18#: woocommerce-shipping.php
    1819#: classes/class-wc-connect-privacy.php:34
    1920#: classes/class-wc-connect-settings-pages.php:93
     
    2223
    2324#. Plugin URI of the plugin
     25#: woocommerce-shipping.php
    2426msgid "https://woocommerce.com/products/shipping/"
    2527msgstr ""
    2628
    2729#. Description of the plugin
     30#: woocommerce-shipping.php
    2831msgid "Save time and money with WooCommerce Shipping. Print discounted shipping labels with just a few clicks from your WooCommerce dashboard."
    2932msgstr ""
    3033
    3134#. Author of the plugin
     35#: woocommerce-shipping.php
    3236msgid "WooCommerce"
    3337msgstr ""
    3438
    3539#. Author URI of the plugin
     40#: woocommerce-shipping.php
    3641msgid "https://woocommerce.com/"
    3742msgstr ""
  • woocommerce-shipping/trunk/readme.txt

    r3223116 r3224120  
    88WC requires at least: 9.3
    99WC tested up to: 9.5
    10 Stable tag: 1.3.3
     10Stable tag: 1.3.4
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 1.3.4 - 2025-01-17 =
     132* Fix   - Fatal error on settings page for new installs.
     133
    131134= 1.3.3 - 2025-01-15 =
    132135* Add   - New API endpoint to check if the order is eligible for shipping label creation.
  • woocommerce-shipping/trunk/src/Loader.php

    r3223116 r3224120  
    812812    public function init_onboarding_dependencies() {
    813813        // Register settings page with basic onboarding instructions.
    814         $settings_page = new SettingsPage( $this->service_settings_store, $this->get_shipping_label() );
     814        $settings_page = new SettingsPage( $this->service_settings_store, $this->view_service );
    815815        $settings_page->register_hooks();
    816816
  • woocommerce-shipping/trunk/src/Onboarding/SettingsPage.php

    r3139300 r3224120  
    1515use Automattic\WCShipping\Connect\WC_Connect_Settings_Pages;
    1616use Automattic\WCShipping\DOM\Manipulation as DOM_Manipulation;
    17 use Automattic\WCShipping\LabelPurchase\View;
     17use Automattic\WCShipping\LabelPurchase\ViewService;
    1818
    1919/**
     
    3232     * View service that combines a lot of internal dependencies.
    3333     *
    34      * @var View
     34     * @var ViewService
    3535     */
    3636    protected $view_service;
     
    4040     *
    4141     * @param WC_Connect_Service_Settings_Store $service_settings_store WC Shipping setting store.
    42      * @param View                              $view_service View service that combines a lot of internal dependencies.
     42     * @param ViewService                       $view_service View service that combines a lot of internal dependencies.
    4343     * @return void
    4444     */
    45     public function __construct( WC_Connect_Service_Settings_Store $service_settings_store, View $view_service ) {
     45    public function __construct( WC_Connect_Service_Settings_Store $service_settings_store, ViewService $view_service ) {
    4646        $this->service_settings_store = $service_settings_store;
    4747        $this->view_service           = $view_service;
  • woocommerce-shipping/trunk/vendor/composer/installed.php

    r3223116 r3224120  
    44        'pretty_version' => 'dev-trunk',
    55        'version' => 'dev-trunk',
    6         'reference' => 'f58880f735dff8e1a9cd59ac780d55306869f75f',
     6        'reference' => '430498b653377c57ea05fbde2490f6f09bb8c707',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    104104            'pretty_version' => 'dev-trunk',
    105105            'version' => 'dev-trunk',
    106             'reference' => 'f58880f735dff8e1a9cd59ac780d55306869f75f',
     106            'reference' => '430498b653377c57ea05fbde2490f6f09bb8c707',
    107107            'type' => 'library',
    108108            'install_path' => __DIR__ . '/../../',
  • woocommerce-shipping/trunk/woocommerce-shipping.php

    r3223116 r3224120  
    88 * Text Domain: woocommerce-shipping
    99 * Domain Path: /languages/
    10  * Version: 1.3.3
     10 * Version: 1.3.4
    1111 * Requires Plugins: woocommerce
    1212 * Requires PHP: 7.4
     
    4040}
    4141
    42 define( 'WCSHIPPING_VERSION', '1.3.3' ); // WRCS: DEFINED_VERSION.
     42define( 'WCSHIPPING_VERSION', '1.3.4' ); // WRCS: DEFINED_VERSION.
    4343define( 'WCSHIPPING_PLUGIN_FILE', __FILE__ );
    4444define( 'WCSHIPPING_PLUGIN_DIR', __DIR__ );
Note: See TracChangeset for help on using the changeset viewer.