Changeset 3328366
- Timestamp:
- 07/15/2025 03:49:53 PM (7 months ago)
- Location:
- attribute-stock-for-woocommerce/trunk
- Files:
-
- 6 edited
-
attribute-stock-for-woocommerce.php (modified) (2 diffs)
-
languages/woocommerce-attribute-stock.pot (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Aspects/Admin/Stock/StockList.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
vendor/mewz/framework/languages/mewz-framework.pot (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
attribute-stock-for-woocommerce/trunk/attribute-stock-for-woocommerce.php
r3328304 r3328366 4 4 * Plugin URI: https://codecanyon.net/item/woocommerce-attribute-stock/25796765 5 5 * 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 -rc26 * Version: 2.2.1 7 7 * Author: Mewz 8 8 * Author URI: https://mewz.dev/ … … 24 24 } 25 25 26 const MEWZ_WCAS_VERSION = '2.2.1 -rc2';26 const MEWZ_WCAS_VERSION = '2.2.1'; 27 27 const MEWZ_WCAS_NAME = 'Attribute Stock for WooCommerce'; 28 28 const MEWZ_WCAS_SLUG = 'woocommerce-attribute-stock'; -
attribute-stock-for-woocommerce/trunk/languages/woocommerce-attribute-stock.pot
r3328304 r3328366 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce Attribute Stock 2.2.1 -rc2\n"5 "Project-Id-Version: WooCommerce Attribute Stock 2.2.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-attribute-stock\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-07-15T1 5:54:58+02:00\n"12 "POT-Creation-Date: 2025-07-15T17:42:59+02:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
attribute-stock-for-woocommerce/trunk/readme.txt
r3328304 r3328366 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.2.1 -rc27 Stable tag: 2.2.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 110 110 == Changelog == 111 111 112 = 2.2.1 (2025-07-14) = 112 = 2.2.1 (2025-07-15) = 113 - WooCommerce 10.0 compatibility. 113 114 - Fixed naming issue on WordPress plugin directory. 114 - Fixed several WordPress coding standard sissues.115 - Fixed several WordPress coding standard issues. 115 116 - Fixed a bug causing normal variations to be ignored when alongside "Any" variations. 116 117 -
attribute-stock-for-woocommerce/trunk/src/Aspects/Admin/Stock/StockList.php
r3328304 r3328366 251 251 252 252 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>'; 254 254 break; 255 255 256 256 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>'; 258 258 break; 259 259 } … … 343 343 $letter = strtoupper($title[0]); 344 344 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>'; 346 346 } 347 347 -
attribute-stock-for-woocommerce/trunk/vendor/composer/installed.php
r3328304 r3328366 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 3dde4a23518c1ccbc4485cf2e5a44f09b403f31c',6 'reference' => '71f9aa3f9311883ccbcb61916ee6bf13796f4fd4', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 3dde4a23518c1ccbc4485cf2e5a44f09b403f31c',34 'reference' => '71f9aa3f9311883ccbcb61916ee6bf13796f4fd4', 35 35 'type' => 'wordpress-plugin', 36 36 'install_path' => __DIR__ . '/../../', -
attribute-stock-for-woocommerce/trunk/vendor/mewz/framework/languages/mewz-framework.pot
r3328304 r3328366 8 8 "Content-Type: text/plain; charset=UTF-8\n" 9 9 "Content-Transfer-Encoding: 8bit\n" 10 "POT-Creation-Date: 2025-07-15T1 5:54:59+02:00\n"10 "POT-Creation-Date: 2025-07-15T17:42:59+02:00\n" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "X-Generator: WP-CLI 2.12.0\n"
Note: See TracChangeset
for help on using the changeset viewer.