Changeset 2422319
- Timestamp:
- 11/20/2020 12:39:14 PM (5 years ago)
- Location:
- checkrobin/trunk
- Files:
-
- 19 edited
-
changelog.txt (modified) (1 diff)
-
checkrobin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/Activator.php (modified) (1 diff)
-
src/Admin.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) (2 diffs)
-
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
r2417943 r2422319 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 5 and 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 6 10 7 11 ## [0.0.9] - 2020-11-13 -
checkrobin/trunk/checkrobin.php
r2417960 r2422319 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. 916 * Version: 0.0.8 17 17 * Requires at least: 4.0 18 18 * Requires PHP: 7.2 … … 52 52 **/ 53 53 if (!defined('CHECKROBIN_PLUGIN_VERSION')) { 54 define('CHECKROBIN_PLUGIN_VERSION', '0.0. 9');54 define('CHECKROBIN_PLUGIN_VERSION', '0.0.10'); 55 55 } 56 56 -
checkrobin/trunk/readme.txt
r2417943 r2422319 93 93 == Changelog == 94 94 95 = 0.0.10 = 96 * [Fixed] Removed frontend assets request to missing file /plugin.min.js 97 95 98 = 0.0.9 = 96 ### Added97 99 * [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 98 100 * [Changed] The menu item "Settings" has been renamed to "Checkrobin Settings" -
checkrobin/trunk/src/Activator.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Admin.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinCreate.php
r2417943 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinHelper.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/CheckrobinToken.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Deactivator.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Frontend.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 … … 44 44 public function enqueue_scripts() { 45 45 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 false52 );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 );65 46 66 47 } -
checkrobin/trunk/src/I18n.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Loader.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Plugin.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Settings.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/Tools.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/src/constants.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/templates/page.backend.settings.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/templates/page.backend.tracking.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 -
checkrobin/trunk/uninstall.php
r2417960 r2422319 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 96 * @version 0.0.10 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2
Note: See TracChangeset
for help on using the changeset viewer.