Plugin Directory

Changeset 2422319


Ignore:
Timestamp:
11/20/2020 12:39:14 PM (5 years ago)
Author:
checkrobin
Message:

## [0.0.10] - 2020-11-20
### Fixed

  • Removed frontend assets request to missing file /plugin.min.js
Location:
checkrobin/trunk
Files:
19 edited

Legend:

Unmodified
Added
Removed
  • checkrobin/trunk/changelog.txt

    r2417943 r2422319  
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     6
     7## [0.0.10] - 2020-11-20
     8### Fixed
     9- Removed frontend assets request to missing file /plugin.min.js
    610
    711## [0.0.9] - 2020-11-13
  • checkrobin/trunk/checkrobin.php

    r2417960 r2422319  
    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.9
     16 * Version:           0.0.8
    1717 * Requires at least: 4.0
    1818 * Requires PHP:      7.2
     
    5252 **/
    5353if (!defined('CHECKROBIN_PLUGIN_VERSION')) {
    54     define('CHECKROBIN_PLUGIN_VERSION', '0.0.9');
     54    define('CHECKROBIN_PLUGIN_VERSION', '0.0.10');
    5555}
    5656
  • checkrobin/trunk/readme.txt

    r2417943 r2422319  
    9393== Changelog ==
    9494
     95= 0.0.10 =
     96* [Fixed] Removed frontend assets request to missing file /plugin.min.js
     97
    9598= 0.0.9 =
    96 ### Added
    9799* [Enhancement] If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box
    98100* [Changed] The menu item "Settings" has been renamed to "Checkrobin Settings"
  • checkrobin/trunk/src/Activator.php

    r2417960 r2422319  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.9
     6 * @version 0.0.10
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
  • checkrobin/trunk/src/Admin.php

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

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

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

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

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

    r2417960 r2422319  
    44 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin.
    55 *
    6  * @version 0.0.9
     6 * @version 0.0.10
    77 * @link https://www.checkrobin.com/de/integration
    88 * @license GPLv2
     
    4444    public function enqueue_scripts() {
    4545
    46         \wp_register_script(
    47             $this->plugin->get_name(),
    48             \plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/plugin.min.js',
    49             array('jquery'),
    50             $this->plugin->get_version(),
    51             false
    52         );
    53         \wp_localize_script(
    54             $this->plugin->get_name(),
    55             __NAMESPACE__.'Params',
    56             array(
    57                 'checkrobin_json_url'   => \plugin_dir_url( dirname( __FILE__ ) ) . 'assets/json/German.json',
    58                 'checkrobin_ajax_url'   => WC()->ajax_url(),
    59                 'security' => wp_create_nonce("plugin-security")
    60             )
    61         );
    62         \wp_enqueue_script(
    63             $this->plugin->get_name()
    64         );
    6546
    6647    }
  • checkrobin/trunk/src/I18n.php

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

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

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

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

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

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

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

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

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