Changeset 3409622
- Timestamp:
- 12/03/2025 02:01:57 PM (4 months ago)
- Location:
- consignment-store-for-woocommerce
- Files:
-
- 32 added
- 12 deleted
- 4 edited
-
tags/2.6.1 (added)
-
tags/2.6.1/README.txt (added)
-
tags/2.6.1/admin (added)
-
tags/2.6.1/admin/class-cws-consignment-admin.php (added)
-
tags/2.6.1/admin/css (added)
-
tags/2.6.1/admin/css/cws-consignment-admin.css (added)
-
tags/2.6.1/admin/index.php (added)
-
tags/2.6.1/admin/js (added)
-
tags/2.6.1/admin/js/cws-consignment-admin.js (added)
-
tags/2.6.1/admin/partials (added)
-
tags/2.6.1/admin/partials/cws-consignment-admin-display.php (added)
-
tags/2.6.1/admin/partials/cwscs-consignment.jpg (added)
-
tags/2.6.1/cws-consignment.php (added)
-
tags/2.6.1/includes (added)
-
tags/2.6.1/includes/class-cws-consignment-activator.php (added)
-
tags/2.6.1/includes/class-cws-consignment-deactivator.php (added)
-
tags/2.6.1/includes/class-cws-consignment-loader.php (added)
-
tags/2.6.1/includes/class-cws-consignment.php (added)
-
tags/2.6.1/includes/index.php (added)
-
tags/2.6.1/index.php (added)
-
tags/2.6.1/languages (added)
-
tags/2.6.1/languages/cws-consignment.pot (added)
-
tags/2.6.1/public (added)
-
tags/2.6.1/public/class-cws-consignment-public.php (added)
-
tags/2.6.1/public/css (added)
-
tags/2.6.1/public/css/cws-consignment-public.css (added)
-
tags/2.6.1/public/index.php (added)
-
tags/2.6.1/public/js (added)
-
tags/2.6.1/public/js/cws-consignment-public.js (added)
-
tags/2.6.1/public/partials (added)
-
tags/2.6.1/public/partials/cws-consignment-public-display.php (added)
-
tags/2.6.1/uninstall.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/_notes (deleted)
-
trunk/admin/css/_notes (deleted)
-
trunk/admin/js/_notes (deleted)
-
trunk/admin/partials/_notes (deleted)
-
trunk/cws-consignment.php (modified) (2 diffs)
-
trunk/img (deleted)
-
trunk/includes/_notes (deleted)
-
trunk/includes/class-cws-consignment.php (modified) (1 diff)
-
trunk/js (deleted)
-
trunk/languages/_notes (deleted)
-
trunk/public/_notes (deleted)
-
trunk/public/css/_notes (deleted)
-
trunk/public/js/_notes (deleted)
-
trunk/public/js/cws-consignment-public.js (modified) (2 diffs)
-
trunk/public/partials/_notes (deleted)
Legend:
- Unmodified
- Added
- Removed
-
consignment-store-for-woocommerce/trunk/README.txt
r3336736 r3409622 3 3 Donate link: https://charlenesweb.ca/donate/ 4 4 Tags: consignment store, consignment for WooCommerce 5 Tested up to: 6. 86 Stable tag: 2. 55 Tested up to: 6.9 6 Stable tag: 2.6.1 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.1 = 78 * Remove console logs. 79 80 = 2.6 = 81 * Change to form submission to work with WordPress 6.9. 82 77 83 = 2.5 = 78 84 * Big changes! Images will now be resized to a maximum of 800px wide or 600px high on the user's device, before uploading. You should experience some faster upload speeds. … … 157 163 158 164 == Upgrade Notice == 165 = 2.6.1 = 166 * Remove console logs. Upgrade when possible. 167 168 = 2.6 = 169 * Change to form submission to work with WordPress 6.9. Upgrade as soon as possible. 170 159 171 = 2.5 = 160 172 * Big changes! Images will now be resized to a maximum of 800px wide or 600px high on the user's device, before uploading. You should experience some faster upload speeds. Update when convenient. -
consignment-store-for-woocommerce/trunk/cws-consignment.php
r3336736 r3409622 19 19 * Requires at least: 6.3 20 20 * Requires PHP: 8.0 21 * Version: 2. 521 * Version: 2.6.1 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. 5' );38 define( 'CWS_CONSIGNMENT_VERSION', '2.6.1' ); 39 39 define('CWSCS_SRC_DIR', dirname(__FILE__) ); 40 40 /** -
consignment-store-for-woocommerce/trunk/includes/class-cws-consignment.php
r3336736 r3409622 72 72 $this->version = CWS_CONSIGNMENT_VERSION; 73 73 } else { 74 $this->version = '2. 5';74 $this->version = '2.6.1'; 75 75 } 76 76 $this->plugin_name = 'cws-consignment'; -
consignment-store-for-woocommerce/trunk/public/js/cws-consignment-public.js
r3336736 r3409622 127 127 128 128 // Handle additem form submit 129 form.addEventListener('submit', function (e) { 129 const forms = document.querySelectorAll('form#cwscs_formadditem'); 130 if (forms.length > 0) { 131 form.addEventListener('submit', function (e) { 130 132 e.preventDefault(); 131 133 cwsStartSpinner("Please wait...") ; … … 203 205 alert('An error occurred.'); 204 206 }); 205 }); 207 }); 208 } 206 209 }); // END load 207 210 //////////////////////////////// SPINNER FUNCTIONS /////////////////////////////////
Note: See TracChangeset
for help on using the changeset viewer.