Plugin Directory

Changeset 3328366


Ignore:
Timestamp:
07/15/2025 03:49:53 PM (7 months ago)
Author:
mewz
Message:

Release v2.2.1

Location:
attribute-stock-for-woocommerce/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • attribute-stock-for-woocommerce/trunk/attribute-stock-for-woocommerce.php

    r3328304 r3328366  
    44 * Plugin URI:  https://codecanyon.net/item/woocommerce-attribute-stock/25796765
    55 * Description: Take your stock to the next level. Set up complex stock configurations with ease. Shared stock, variable quantities, the possibilities are endless.
    6  * Version:     2.2.1-rc2
     6 * Version:     2.2.1
    77 * Author:      Mewz
    88 * Author URI:  https://mewz.dev/
     
    2424}
    2525
    26 const MEWZ_WCAS_VERSION = '2.2.1-rc2';
     26const MEWZ_WCAS_VERSION = '2.2.1';
    2727const MEWZ_WCAS_NAME = 'Attribute Stock for WooCommerce';
    2828const MEWZ_WCAS_SLUG = 'woocommerce-attribute-stock';
  • attribute-stock-for-woocommerce/trunk/languages/woocommerce-attribute-stock.pot

    r3328304 r3328366  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Attribute Stock 2.2.1-rc2\n"
     5"Project-Id-Version: WooCommerce Attribute Stock 2.2.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-attribute-stock\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: 2025-07-15T15:54:58+02:00\n"
     12"POT-Creation-Date: 2025-07-15T17:42:59+02:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • attribute-stock-for-woocommerce/trunk/readme.txt

    r3328304 r3328366  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 2.2.1-rc2
     7Stable tag: 2.2.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    110110== Changelog ==
    111111
    112 = 2.2.1 (2025-07-14) =
     112= 2.2.1 (2025-07-15) =
     113- WooCommerce 10.0 compatibility.
    113114- Fixed naming issue on WordPress plugin directory.
    114 - Fixed several WordPress coding standards issues.
     115- Fixed several WordPress coding standard issues.
    115116- Fixed a bug causing normal variations to be ignored when alongside "Any" variations.
    116117
  • attribute-stock-for-woocommerce/trunk/src/Aspects/Admin/Stock/StockList.php

    r3328304 r3328366  
    251251
    252252            case 'created':
    253                 echo '<abbr title="' . $stock->created(false, 'admin-full') . '">' . esc_html($stock->created(false, 'admin-date')) . '</abbr>';
     253                echo '<abbr title="' . esc_attr($stock->created(false, 'admin-full')) . '">' . esc_html($stock->created(false, 'admin-date')) . '</abbr>';
    254254                break;
    255255
    256256            case 'modified':
    257                 echo '<abbr title="' . $stock->modified(false, 'admin-full') . '">' . esc_html($stock->modified(false, 'admin-date')) . '</abbr>';
     257                echo '<abbr title="' . esc_attr($stock->modified(false, 'admin-full')) . '">' . esc_html($stock->modified(false, 'admin-date')) . '</abbr>';
    258258                break;
    259259        }
     
    343343                $letter = strtoupper($title[0]);
    344344
    345                 echo '<span class="mewz-wcas-settings-badge setting-' . $key . '" title="' . esc_attr($title) . '" rel="tiptip">' . $letter . '</span>';
     345                echo '<span class="mewz-wcas-settings-badge setting-' . esc_attr($key) . '" title="' . esc_attr($title) . '" rel="tiptip">' . esc_html($letter) . '</span>';
    346346            }
    347347
  • attribute-stock-for-woocommerce/trunk/vendor/composer/installed.php

    r3328304 r3328366  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '3dde4a23518c1ccbc4485cf2e5a44f09b403f31c',
     6        'reference' => '71f9aa3f9311883ccbcb61916ee6bf13796f4fd4',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '3dde4a23518c1ccbc4485cf2e5a44f09b403f31c',
     34            'reference' => '71f9aa3f9311883ccbcb61916ee6bf13796f4fd4',
    3535            'type' => 'wordpress-plugin',
    3636            'install_path' => __DIR__ . '/../../',
  • attribute-stock-for-woocommerce/trunk/vendor/mewz/framework/languages/mewz-framework.pot

    r3328304 r3328366  
    88"Content-Type: text/plain; charset=UTF-8\n"
    99"Content-Transfer-Encoding: 8bit\n"
    10 "POT-Creation-Date: 2025-07-15T15:54:59+02:00\n"
     10"POT-Creation-Date: 2025-07-15T17:42:59+02:00\n"
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1212"X-Generator: WP-CLI 2.12.0\n"
Note: See TracChangeset for help on using the changeset viewer.