Changeset 2750792
- Timestamp:
- 07/01/2022 01:32:53 PM (4 years ago)
- Location:
- checkrobin/trunk
- Files:
-
- 21 edited
-
changelog.txt (modified) (1 diff)
-
checkrobin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Activator.php (modified) (4 diffs)
-
src/Admin.php (modified) (1 diff)
-
src/Ajax.php (modified) (1 diff)
-
src/CheckrobinCancel.php (modified) (1 diff)
-
src/CheckrobinCreate.php (modified) (1 diff)
-
src/CheckrobinHelper.php (modified) (1 diff)
-
src/CheckrobinToken.php (modified) (1 diff)
-
src/Deactivator.php (modified) (1 diff)
-
src/Frontend.php (modified) (1 diff)
-
src/I18n.php (modified) (1 diff)
-
src/Loader.php (modified) (1 diff)
-
src/Plugin.php (modified) (1 diff)
-
src/Settings.php (modified) (1 diff)
-
src/Tools.php (modified) (1 diff)
-
src/constants.php (modified) (1 diff)
-
templates/page.backend.settings.php (modified) (1 diff)
-
templates/page.backend.tracking.php (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkrobin/trunk/changelog.txt
r2646684 r2750792 1 1 # Changelog 2 2 All notable changes to this project will be documented in this file. 3 4 = 0.0.13 = 5 * [Fixed] Added a missing commata in Activator.php, for each CRATE TABLE sql statement, after UNIQUE KEY id (id) definition -> "UNIQUE KEY id (id),". This error prevented the creation of db tables the plugin needs to work correctly. Please deaktivate and re-activate your plugin once to make sure these changes get applyed. 3 6 4 7 = 0.0.12 = -
checkrobin/trunk/checkrobin.php
r2646684 r2750792 14 14 * Plugin URI: https://www.checkrobin.com/de/integration 15 15 * Description: The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 16 * Version: 0.0.1 216 * Version: 0.0.13 17 17 * Requires at least: 4.0 18 18 * Requires PHP: 7.2 19 19 * 20 20 * WC requires at least: 3.0.0 21 * WC tested up to: 6. 021 * WC tested up to: 6.6.1 22 22 * 23 23 * Author: checkrobin … … 56 56 **/ 57 57 if (!defined('CHECKROBIN_PLUGIN_VERSION')) { 58 define('CHECKROBIN_PLUGIN_VERSION', '0.0.1 2');58 define('CHECKROBIN_PLUGIN_VERSION', '0.0.13'); 59 59 } 60 60 -
checkrobin/trunk/readme.txt
r2646684 r2750792 3 3 Tags: checkrobin, woocommerce, parcel, shipping, logistic, delivery, courier, wordpress, plugin 4 4 Requires at least: 4.0 5 Tested up to: 5.85 Tested up to: 6.0 6 6 Stable tag: trunk 7 7 Requires PHP: 7.2 … … 93 93 == Changelog == 94 94 95 = 0.0.13 = 96 * [Fixed] Added a missing commata in Activator.php, for each CRATE TABLE sql statement, after UNIQUE KEY id (id) definition -> "UNIQUE KEY id (id),". This error prevented the creation of db tables the plugin needs to work correctly. Please deaktivate and re-activate your plugin once to make sure these changes get applyed. 97 95 98 = 0.0.12 = 96 99 * [Added] Added new functionality that allows to cancel, resend and archive orders (parcel drafts). -
checkrobin/trunk/src/Activator.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 … … 75 75 dCreated TIMESTAMP NULL DEFAULT NULL, 76 76 dChanged TIMESTAMP NOT NULL DEFAULT NOW(), 77 UNIQUE KEY id (id) 77 UNIQUE KEY id (id), 78 78 PRIMARY KEY (id) 79 79 ) " . $charset_collate . ";"; … … 87 87 dCreated TIMESTAMP NULL DEFAULT NULL, 88 88 dChanged TIMESTAMP NOT NULL DEFAULT NOW(), 89 UNIQUE KEY id (id) 89 UNIQUE KEY id (id), 90 90 PRIMARY KEY (id) 91 91 ) " . $charset_collate . ";"; … … 123 123 dCreated TIMESTAMP NULL DEFAULT NULL, 124 124 dChanged TIMESTAMP NOT NULL DEFAULT NOW(), 125 UNIQUE KEY id (id) 125 UNIQUE KEY id (id), 126 126 PRIMARY KEY (id) 127 127 ) " . $charset_collate . ";"; -
checkrobin/trunk/src/Admin.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Ajax.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinCancel.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinCreate.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinHelper.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinToken.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Deactivator.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Frontend.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/I18n.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Loader.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Plugin.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Settings.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Tools.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/constants.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/templates/page.backend.settings.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/templates/page.backend.tracking.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/uninstall.php
r2646684 r2750792 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0.1 26 * @version 0.0.13 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2
Note: See TracChangeset
for help on using the changeset viewer.