Plugin Directory

Changeset 3447840


Ignore:
Timestamp:
01/27/2026 12:25:30 PM (2 months ago)
Author:
pluginever
Message:

Update to version 2.3.2

Location:
wc-serial-numbers
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wc-serial-numbers/tags/2.3.2/languages/wc-serial-numbers.pot

    r3439147 r3447840  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Serial Numbers 2.3.1\n"
     5"Project-Id-Version: Serial Numbers 2.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-serial-numbers\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-01-14T04:44:42+00:00\n"
     12"POT-Creation-Date: 2026-01-27T12:20:31+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    14141414
    14151415#. translators: %s: plugin url.
    1416 #: templates/email-stock-notification.php:37
     1416#: templates/email-stock-notification.php:42
    14171417#, php-format
    14181418msgid "The email is sent by <a href=\"%s\" target=\"_blank\">Serial Numbers for WooCommerce</a>"
  • wc-serial-numbers/tags/2.3.2/readme.txt

    r3439147 r3447840  
    33Tags: license, license manager, serial number, serial key, woocommerce
    44Tested up to: 6.9
    5 Stable tag: 2.3.1
     5Stable tag: 2.3.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    251251
    252252== Changelog ==
     253== 2.3.2 (27th Jan 2026) ==
     254Fix: Corrected the product edit link in the low stock notification email.
     255Fix: Prevented PHP Warning caused by cron events triggering with null values.
     256
    253257= 2.3.1 (14th Jan 2026) =
    254258* Fix: Support older PHP v7.4 to avoid fatal error.
  • wc-serial-numbers/tags/2.3.2/templates/email-stock-notification.php

    r2983595 r3447840  
    2121            continue;
    2222        }
     23
    2324        $product = wc_get_product( $product_id );
     25        if ( ! $product ) {
     26            continue;
     27        }
    2428
    25         printf( "<li><a href='%s' target='_blank'>%s</a> - Stock %s</li>", esc_url( get_edit_post_link( $product->get_id() ) ), esc_html( $product->get_formatted_name() ), esc_html( $stock ) );
     29        $edit_url = admin_url( sprintf( 'post.php?post=%d&action=edit', $product->get_id() ) );
     30        printf( "<li><a href='%s' target='_blank'>%s</a> - Stock %s</li>", esc_url( $edit_url ), esc_html( $product->get_formatted_name() ), esc_html( $stock ) );
    2631    }
    2732    ?>
  • wc-serial-numbers/tags/2.3.2/vendor/composer/installed.php

    r3439147 r3447840  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'aa31caa3265609dee18c444cd89bb442bf43e1f5',
     6        'reference' => '203cfd8c365e57c71591722c8d4d328c08651476',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4141            'pretty_version' => 'dev-master',
    4242            'version' => 'dev-master',
    43             'reference' => 'aa31caa3265609dee18c444cd89bb442bf43e1f5',
     43            'reference' => '203cfd8c365e57c71591722c8d4d328c08651476',
    4444            'type' => 'wordpress-plugin',
    4545            'install_path' => __DIR__ . '/../../',
  • wc-serial-numbers/tags/2.3.2/wc-serial-numbers.php

    r3439147 r3447840  
    44 * Plugin URI:           https://pluginever.com/plugins/woocommerce-serial-numbers-pro/
    55 * Description:          Sell and manage license keys, serial numbers, and secret keys easily within your WooCommerce store.
    6  * Version:              2.3.1
     6 * Version:              2.3.2
    77 * Requires at least:    5.2
    88 * Tested up to:         6.9
  • wc-serial-numbers/trunk/languages/wc-serial-numbers.pot

    r3439147 r3447840  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Serial Numbers 2.3.1\n"
     5"Project-Id-Version: Serial Numbers 2.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-serial-numbers\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-01-14T04:44:42+00:00\n"
     12"POT-Creation-Date: 2026-01-27T12:20:31+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    14141414
    14151415#. translators: %s: plugin url.
    1416 #: templates/email-stock-notification.php:37
     1416#: templates/email-stock-notification.php:42
    14171417#, php-format
    14181418msgid "The email is sent by <a href=\"%s\" target=\"_blank\">Serial Numbers for WooCommerce</a>"
  • wc-serial-numbers/trunk/readme.txt

    r3439147 r3447840  
    33Tags: license, license manager, serial number, serial key, woocommerce
    44Tested up to: 6.9
    5 Stable tag: 2.3.1
     5Stable tag: 2.3.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    251251
    252252== Changelog ==
     253== 2.3.2 (27th Jan 2026) ==
     254Fix: Corrected the product edit link in the low stock notification email.
     255Fix: Prevented PHP Warning caused by cron events triggering with null values.
     256
    253257= 2.3.1 (14th Jan 2026) =
    254258* Fix: Support older PHP v7.4 to avoid fatal error.
  • wc-serial-numbers/trunk/templates/email-stock-notification.php

    r2983595 r3447840  
    2121            continue;
    2222        }
     23
    2324        $product = wc_get_product( $product_id );
     25        if ( ! $product ) {
     26            continue;
     27        }
    2428
    25         printf( "<li><a href='%s' target='_blank'>%s</a> - Stock %s</li>", esc_url( get_edit_post_link( $product->get_id() ) ), esc_html( $product->get_formatted_name() ), esc_html( $stock ) );
     29        $edit_url = admin_url( sprintf( 'post.php?post=%d&action=edit', $product->get_id() ) );
     30        printf( "<li><a href='%s' target='_blank'>%s</a> - Stock %s</li>", esc_url( $edit_url ), esc_html( $product->get_formatted_name() ), esc_html( $stock ) );
    2631    }
    2732    ?>
  • wc-serial-numbers/trunk/vendor/composer/installed.php

    r3439147 r3447840  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'aa31caa3265609dee18c444cd89bb442bf43e1f5',
     6        'reference' => '203cfd8c365e57c71591722c8d4d328c08651476',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4141            'pretty_version' => 'dev-master',
    4242            'version' => 'dev-master',
    43             'reference' => 'aa31caa3265609dee18c444cd89bb442bf43e1f5',
     43            'reference' => '203cfd8c365e57c71591722c8d4d328c08651476',
    4444            'type' => 'wordpress-plugin',
    4545            'install_path' => __DIR__ . '/../../',
  • wc-serial-numbers/trunk/wc-serial-numbers.php

    r3439147 r3447840  
    44 * Plugin URI:           https://pluginever.com/plugins/woocommerce-serial-numbers-pro/
    55 * Description:          Sell and manage license keys, serial numbers, and secret keys easily within your WooCommerce store.
    6  * Version:              2.3.1
     6 * Version:              2.3.2
    77 * Requires at least:    5.2
    88 * Tested up to:         6.9
Note: See TracChangeset for help on using the changeset viewer.