Changeset 3274994
- Timestamp:
- 04/16/2025 05:19:08 PM (12 months ago)
- Location:
- sell-on-consignment
- Files:
-
- 30 added
- 3 edited
-
tags/1.2 (added)
-
tags/1.2/README.txt (added)
-
tags/1.2/admin (added)
-
tags/1.2/admin/class-cwsoc-sell-admin.php (added)
-
tags/1.2/admin/css (added)
-
tags/1.2/admin/css/cwsoc-sell-admin.css (added)
-
tags/1.2/admin/index.php (added)
-
tags/1.2/admin/js (added)
-
tags/1.2/admin/js/cwsoc-sell-admin.js (added)
-
tags/1.2/admin/partials (added)
-
tags/1.2/admin/partials/cwsoc-sell-admin-display.php (added)
-
tags/1.2/includes (added)
-
tags/1.2/includes/class-cwsoc-sell-activator.php (added)
-
tags/1.2/includes/class-cwsoc-sell-deactivator.php (added)
-
tags/1.2/includes/class-cwsoc-sell-i18n.php (added)
-
tags/1.2/includes/class-cwsoc-sell-loader.php (added)
-
tags/1.2/includes/class-cwsoc-sell.php (added)
-
tags/1.2/includes/index.php (added)
-
tags/1.2/index.php (added)
-
tags/1.2/languages (added)
-
tags/1.2/public (added)
-
tags/1.2/public/class-cwsoc-sell-public.php (added)
-
tags/1.2/public/css (added)
-
tags/1.2/public/css/cwsoc-sell-public.css (added)
-
tags/1.2/public/index.php (added)
-
tags/1.2/public/js (added)
-
tags/1.2/public/js/cwsoc-sell-public.js (added)
-
tags/1.2/public/partials (added)
-
tags/1.2/public/partials/cwsoc-sell-public-display.php (added)
-
tags/1.2/sell-on-consignment.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/includes/class-cwsoc-sell.php (modified) (1 diff)
-
trunk/sell-on-consignment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sell-on-consignment/trunk/README.txt
r3274983 r3274994 2 2 Contributors: charcope, sjcope 3 3 Tags: consignment, sell products on consignment 4 Tested up to: 85 Stable tag: 1. 14 Tested up to: 6.8 5 Stable tag: 1.2 6 6 License: GPLv2 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 48 48 == Changelog == 49 49 50 = 1.2 = 51 Fix nonce 52 50 53 = 1.1 = 51 54 Test with WP 6.8 … … 56 59 == Upgrade Notice == 57 60 61 = 1.2 = 62 Fixes form submission. Upgrade as soon as possible. 63 58 64 = 1.1 = 59 65 Upgrade when possible -
sell-on-consignment/trunk/includes/class-cwsoc-sell.php
r3274983 r3274994 60 60 61 61 public function __construct() { 62 if ( defined( ' PLUGIN_NAME_VERSION' ) ) {63 $this->version = PLUGIN_NAME_VERSION;62 if ( defined( 'CWSOC_SELL_VERSION' ) ) { 63 $this->version = CWSOC_SELL_VERSION; 64 64 } else { 65 $this->version = '1. 1';65 $this->version = '1.2'; 66 66 } 67 67 $this->plugin_name = 'sell-on-consignment'; -
sell-on-consignment/trunk/sell-on-consignment.php
r3274983 r3274994 10 10 * 11 11 * @link https://charlenesweb.ca/ 12 * @since 1. 112 * @since 1.0 13 13 * @package CWSOC_Sell 14 14 * 15 15 * @wordpress-plugin 16 *Plugin Name: Sell On Consignment17 *Description: Sell a product on both your website and on consignment at another store.18 * Version: 1.019 *Author: Charlene's Web Services20 *Author URI: https://charlenesweb.ca/21 *License: GPL v2 or later22 *License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html23 *Text Domain: sell-on-consignment24 *Domain Path: /languages16 Plugin Name: Sell On Consignment 17 Description: Sell a product on both your website and on consignment at another store. 18 Version: 1.2 19 Author: Charlene's Web Services 20 Author URI: https://charlenesweb.ca/ 21 License: GPL v2 or later 22 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 23 Text Domain: sell-on-consignment 24 Domain Path: /languages 25 25 */ 26 26 … … 33 33 * First release 1.0.0 and then using SemVer - https://semver.org X.Y.Z (Major.Minor.Patch) 34 34 */ 35 define( 'CWSOC_SELL_VERSION', '1. 1' );35 define( 'CWSOC_SELL_VERSION', '1.2' ); 36 36 define('CWSOC_SELL_SRC_DIR', dirname(__FILE__) ); 37 37 /**
Note: See TracChangeset
for help on using the changeset viewer.