Plugin Directory

Changeset 2750792


Ignore:
Timestamp:
07/01/2022 01:32:53 PM (4 years ago)
Author:
checkrobin
Message:

0.0.13

  • [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.
Location:
checkrobin/trunk
Files:
21 edited

Legend:

Unmodified
Added
Removed
  • checkrobin/trunk/changelog.txt

    r2646684 r2750792  
    11 # Changelog
    22All 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.
    36
    47= 0.0.12 =
  • checkrobin/trunk/checkrobin.php

    r2646684 r2750792  
    1414 * Plugin URI:              https://www.checkrobin.com/de/integration
    1515 * Description:             The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    16  * Version:                 0.0.12
     16 * Version:                 0.0.13
    1717 * Requires at least:       4.0
    1818 * Requires PHP:            7.2
    1919 *
    2020 * WC requires at least:    3.0.0
    21  * WC tested up to:         6.0
     21 * WC tested up to:         6.6.1
    2222 *
    2323 * Author:                  checkrobin
     
    5656 **/
    5757if (!defined('CHECKROBIN_PLUGIN_VERSION')) {
    58     define('CHECKROBIN_PLUGIN_VERSION', '0.0.12');
     58    define('CHECKROBIN_PLUGIN_VERSION', '0.0.13');
    5959}
    6060
  • checkrobin/trunk/readme.txt

    r2646684 r2750792  
    33Tags: checkrobin, woocommerce, parcel, shipping, logistic, delivery, courier, wordpress, plugin
    44Requires at least: 4.0
    5 Tested up to: 5.8
     5Tested up to: 6.0
    66Stable tag: trunk
    77Requires PHP: 7.2
     
    9393== Changelog ==
    9494
     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
    9598= 0.0.12 =
    9699* [Added] Added new functionality that allows to cancel, resend and archive orders (parcel drafts).
  • checkrobin/trunk/src/Activator.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
     
    7575            dCreated TIMESTAMP NULL DEFAULT NULL,
    7676            dChanged TIMESTAMP NOT NULL DEFAULT NOW(),
    77             UNIQUE KEY id (id)
     77            UNIQUE KEY id (id),
    7878            PRIMARY KEY  (id)
    7979        ) " . $charset_collate . ";";
     
    8787            dCreated TIMESTAMP NULL DEFAULT NULL,
    8888            dChanged TIMESTAMP NOT NULL DEFAULT NOW(),
    89             UNIQUE KEY id (id)
     89            UNIQUE KEY id (id),
    9090            PRIMARY KEY  (id)
    9191        ) " . $charset_collate . ";";
     
    123123            dCreated TIMESTAMP NULL DEFAULT NULL,
    124124            dChanged TIMESTAMP NOT NULL DEFAULT NOW(),
    125             UNIQUE KEY id (id)
     125            UNIQUE KEY id (id),
    126126            PRIMARY KEY  (id)
    127127        ) " . $charset_collate . ";";
  • checkrobin/trunk/src/Admin.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Ajax.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/CheckrobinCancel.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/CheckrobinCreate.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/CheckrobinHelper.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/CheckrobinToken.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Deactivator.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Frontend.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/I18n.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Loader.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Plugin.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Settings.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Tools.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/constants.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/templates/page.backend.settings.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/templates/page.backend.tracking.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/uninstall.php

    r2646684 r2750792  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.12
     6 * @version 0.0.13
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
Note: See TracChangeset for help on using the changeset viewer.