Changeset 3409836
- Timestamp:
- 12/03/2025 04:18:39 PM (4 months ago)
- Location:
- consignment-store-for-woocommerce
- Files:
-
- 32 added
- 4 edited
-
tags/2.6.2 (added)
-
tags/2.6.2/README.txt (added)
-
tags/2.6.2/admin (added)
-
tags/2.6.2/admin/class-cws-consignment-admin.php (added)
-
tags/2.6.2/admin/css (added)
-
tags/2.6.2/admin/css/cws-consignment-admin.css (added)
-
tags/2.6.2/admin/index.php (added)
-
tags/2.6.2/admin/js (added)
-
tags/2.6.2/admin/js/cws-consignment-admin.js (added)
-
tags/2.6.2/admin/partials (added)
-
tags/2.6.2/admin/partials/cws-consignment-admin-display.php (added)
-
tags/2.6.2/admin/partials/cwscs-consignment.jpg (added)
-
tags/2.6.2/cws-consignment.php (added)
-
tags/2.6.2/includes (added)
-
tags/2.6.2/includes/class-cws-consignment-activator.php (added)
-
tags/2.6.2/includes/class-cws-consignment-deactivator.php (added)
-
tags/2.6.2/includes/class-cws-consignment-loader.php (added)
-
tags/2.6.2/includes/class-cws-consignment.php (added)
-
tags/2.6.2/includes/index.php (added)
-
tags/2.6.2/index.php (added)
-
tags/2.6.2/languages (added)
-
tags/2.6.2/languages/cws-consignment.pot (added)
-
tags/2.6.2/public (added)
-
tags/2.6.2/public/class-cws-consignment-public.php (added)
-
tags/2.6.2/public/css (added)
-
tags/2.6.2/public/css/cws-consignment-public.css (added)
-
tags/2.6.2/public/index.php (added)
-
tags/2.6.2/public/js (added)
-
tags/2.6.2/public/js/cws-consignment-public.js (added)
-
tags/2.6.2/public/partials (added)
-
tags/2.6.2/public/partials/cws-consignment-public-display.php (added)
-
tags/2.6.2/uninstall.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/cws-consignment.php (modified) (2 diffs)
-
trunk/includes/class-cws-consignment.php (modified) (1 diff)
-
trunk/public/js/cws-consignment-public.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
consignment-store-for-woocommerce/trunk/README.txt
r3409622 r3409836 4 4 Tags: consignment store, consignment for WooCommerce 5 5 Tested up to: 6.9 6 Stable tag: 2.6. 16 Stable tag: 2.6.2 7 7 License: GPLv2 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 75 75 76 76 == Changelog == 77 = 2.6.2 = 78 * Fix multiple image upload. 79 77 80 = 2.6.1 = 78 81 * Remove console logs. … … 163 166 164 167 == Upgrade Notice == 168 = 2.6.2 = 169 * Fix multiple image upload. Upgrade when possible. 170 165 171 = 2.6.1 = 166 172 * Remove console logs. Upgrade when possible. -
consignment-store-for-woocommerce/trunk/cws-consignment.php
r3409622 r3409836 19 19 * Requires at least: 6.3 20 20 * Requires PHP: 8.0 21 * Version: 2.6. 121 * Version: 2.6.2 22 22 * Author: Charlene's Web Services 23 23 * Author URI: https://charlenesweb.ca … … 36 36 * First release 1.0.0 and then using SemVer - https://semver.org X.Y.Z (Major.Minor.Patch) 37 37 */ 38 define( 'CWS_CONSIGNMENT_VERSION', '2.6. 1' );38 define( 'CWS_CONSIGNMENT_VERSION', '2.6.2' ); 39 39 define('CWSCS_SRC_DIR', dirname(__FILE__) ); 40 40 /** -
consignment-store-for-woocommerce/trunk/includes/class-cws-consignment.php
r3409622 r3409836 72 72 $this->version = CWS_CONSIGNMENT_VERSION; 73 73 } else { 74 $this->version = '2.6. 1';74 $this->version = '2.6.2'; 75 75 } 76 76 $this->plugin_name = 'cws-consignment'; -
consignment-store-for-woocommerce/trunk/public/js/cws-consignment-public.js
r3409622 r3409836 167 167 } 168 168 if (resizedBlob1) { 169 formData.append('image 0', resizedBlob0, imageName + '1.jpg');169 formData.append('image1', resizedBlob1, imageName + '1.jpg'); 170 170 } 171 171 if (resizedBlob2) { 172 formData.append('image 0', resizedBlob0, imageName + '2.jpg');172 formData.append('image2', resizedBlob2, imageName + '2.jpg'); 173 173 } 174 174 if (resizedBlob3) { 175 formData.append('image 0', resizedBlob0, imageName + '3.jpg');175 formData.append('image3', resizedBlob3, imageName + '3.jpg'); 176 176 } 177 177 formData.append('action', 'cwscs_ajax_add_item'); // Crucial for WordPress AJAX
Note: See TracChangeset
for help on using the changeset viewer.