Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mntzrr committed Sep 26, 2023
1 parent 35e14ae commit b26a58c
Show file tree
Hide file tree
Showing 10 changed files with 1,836 additions and 15,866 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"no-unused-vars":"off"
},
"extends": [
"plugin:@wordpress/eslint-plugin/esnext"
"plugin:@wordpress/eslint-plugin/recommended"
],
"globals": {
"dintero": false,
Expand Down
2 changes: 1 addition & 1 deletion assets/js/dintero-checkout-express.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/dintero-checkout-express.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/dintero-checkout-web-sdk.umd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dintero-checkout-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Dintero offers a complete payment solution. Simplifying the payment process for you and the customer.
* Author: Dintero, Krokedil
* Author URI: https://krokedil.com/
* Version: 1.7.0
* Version: 1.7.1
* Text Domain: dintero-checkout-for-woocommerce
* Domain Path: /languages
*
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'DINTERO_CHECKOUT_VERSION', '1.7.0' );
define( 'DINTERO_CHECKOUT_VERSION', '1.7.1' );
define( 'DINTERO_CHECKOUT_URL', untrailingslashit( plugins_url( '/', __FILE__ ) ) );
define( 'DINTERO_CHECKOUT_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'DINTERO_CHECKOUT_MAIN_FILE', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion languages/dintero-checkout-for-woocommerce.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/Dintero.Checkout.WooCommerce.V2\n"
"POT-Creation-Date: 2023-09-20 13:14:32+00:00\n"
"POT-Creation-Date: 2023-09-26 08:10:41+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
14,484 changes: 0 additions & 14,484 deletions package-lock.json

This file was deleted.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@wordpress/eslint-plugin": "^12.6.0",
"@wordpress/eslint-plugin": "^16.0.0",
"babel-loader": "^8.2.2",
"eslint": "^8.19.0",
"file-loader": "^6.2.0",
Expand All @@ -25,15 +25,16 @@
"scripts": {
"clear:transients": "docker-compose run --rm wp-cli wp wc tool run clear_transients --user=1",
"clear:session": "docker-compose run --rm wp-cli wp wc tool run clear_sessions --user=1",
"makepot": "npx grunt makepot",
"cssmin": "npx grunt cssmin",
"jsmin": "npx webpack",
"moveJS": "npx grunt move",
"lint": "npx eslint -c ./.eslintrc.json --ext .js assets/js --fix",
"webpack:dev": "npx webpack --mode=development --watch",
"makepot": "yarn grunt makepot",
"cssmin": "yarn grunt cssmin",
"jsmin": "yarn webpack",
"moveJS": "yarn grunt move",
"lint": "yarn eslint -c ./.eslintrc.json --ext .js assets/js --fix",
"webpack:dev": "yarn webpack --mode=development --watch",
"build": "yarn lint && yarn makepot && yarn cssmin && yarn jsmin && yarn moveJS"
},
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@dintero/checkout-web-sdk": "^0.5.0",
"grunt-cli": "^1.4.3",
"grunt-zip": "^0.18.2"
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tested up to: 6.3.0
Requires PHP: 7.0
WC requires at least: 6.1.0
WC tested up to: 8.0.1
Stable tag: 1.7.0
Stable tag: 1.7.1
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -82,6 +82,9 @@ Go to [https://www.dintero.com/contact-us](https://www.dintero.com/contact-us) t
1. The plugin settings screen where you set up the details to connect to Dintero.

== Changelog ==
= 2023.09.26 - version 1.7.1 =
* Fix - Fixed an issue related to Embedded Dintero Checkout where if a guest user entered their billing and shipping information, WooCommerce wouldn't pass all the available field data for prefilling the form fields in the Dintero payment.

= 2023.09.20 - version 1.7.0 =
* Feature - You can now set the default order status for orders pending authorization to "on-hold". Defaults to "manual-review".
* Fix - An attempt to capture order that contain a product that has been permanently removed will now fail without causing an critical error.
Expand Down
3,184 changes: 1,817 additions & 1,367 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit b26a58c

Please sign in to comment.