Skip to content

Commit

Permalink
Updates to 6.0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
Woo committed Jul 10, 2024
1 parent 5ca7f7d commit c220112
Show file tree
Hide file tree
Showing 15 changed files with 142 additions and 146 deletions.
2 changes: 1 addition & 1 deletion admin/assets/build/analytics.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('automatewoo-modal', 'lodash', 'wc-components', 'wc-csv', 'wc-currency', 'wc-date', 'wc-navigation', 'wc-number', 'wc-settings', 'wc-store-data', 'wc-tracks', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => 'f86a68b2801d0578df54');
<?php return array('dependencies' => array('automatewoo-modal', 'lodash', 'regenerator-runtime', 'wc-components', 'wc-csv', 'wc-currency', 'wc-date', 'wc-navigation', 'wc-number', 'wc-settings', 'wc-store-data', 'wc-tracks', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => 'f86a68b2801d0578df54');
2 changes: 1 addition & 1 deletion admin/assets/build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'wc-components', 'wc-tracks', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => 'c5c76919fe63962a9475');
<?php return array('dependencies' => array('lodash', 'regenerator-runtime', 'wc-components', 'wc-tracks', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-data-controls', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => 'c5c76919fe63962a9475');
8 changes: 4 additions & 4 deletions automatewoo.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
* Plugin Name: AutomateWoo
* Plugin URI: https://automatewoo.com
* Description: Powerful marketing automation for your WooCommerce store.
* Version: 6.0.28
* Version: 6.0.29
* Author: WooCommerce
* Author URI: https://woocommerce.com
* License: GPLv3
* License URI: http://www.gnu.org/licenses/gpl-3.0
* Text Domain: automatewoo
* Domain Path: /languages
* Tested up to: 6.5
* Tested up to: 6.6
* Requires Plugins: woocommerce
* WC requires at least: 6.7
* WC tested up to: 9.0
* WC tested up to: 9.1
* Woo: 4652610:f6f1f8a56a16a3715b30b21fb557e78f
*
* This program is free software: you can redistribute it and/or modify
Expand All @@ -37,7 +37,7 @@
defined( 'ABSPATH' ) || exit;

define( 'AUTOMATEWOO_SLUG', 'automatewoo' );
define( 'AUTOMATEWOO_VERSION', '6.0.28' ); // WRCS: DEFINED_VERSION.
define( 'AUTOMATEWOO_VERSION', '6.0.29' ); // WRCS: DEFINED_VERSION.
define( 'AUTOMATEWOO_FILE', __FILE__ );
define( 'AUTOMATEWOO_PATH', __DIR__ );
define( 'AUTOMATEWOO_MIN_PHP_VER', '7.4.0' );
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
*** AutomateWoo Changelog ***

2024-07-09 - version 6.0.29
* Fix - Make the "Order - Created Via" rule support the Admin and Store API (Checkout Block) options.
* Fix - Map `@babel/runtime/regenerator` request to `regenerator-runtime` in webpack.
* Tweak - WC 9.1 compatibility.
* Tweak - WP 6.6 compatibility.

2024-07-02 - version 6.0.28
* Tweak - Hide active carts and guests captured widgets if cart tracking is disabled.
* Tweak - Remove unused scheduled actions and prevent further actions from being scheduled if job is disabled.
Expand Down
6 changes: 4 additions & 2 deletions includes/Rules/Order_Created_Via.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ function init() {
*/
public function load_select_choices() {
$options = [
'checkout' => __( 'Checkout', 'automatewoo' ),
'rest-api' => __( 'REST API', 'automatewoo' ),
'checkout' => __( 'Checkout', 'automatewoo' ),
'store-api' => __( 'Store API (Checkout Block)', 'automatewoo' ),
'rest-api' => __( 'REST API', 'automatewoo' ),
'admin' => __( 'Admin', 'automatewoo' ),
];

if ( Integrations::is_deposits_active() ) {
Expand Down
13 changes: 8 additions & 5 deletions languages/automatewoo.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: AutomateWoo 6.0.28\n"
"Project-Id-Version: AutomateWoo 6.0.29\n"
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/contact-support/\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-07-02T04:39:56+00:00\n"
"POT-Creation-Date: 2024-07-09T17:24:14+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: automatewoo\n"
Expand Down Expand Up @@ -2628,6 +2628,7 @@ msgid "Please note that email tracking is not currently supported on this action
msgstr ""

#: includes/Actions/Order_Resend_Email.php:60
#: includes/Rules/Order_Created_Via.php:41
msgid "Admin"
msgstr ""

Expand Down Expand Up @@ -3899,7 +3900,6 @@ msgid_plural "Disabled <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""

#. translators: placeholder is previous workflow title
#: includes/Post_Types.php:95
#: includes/Post_Types.php:98
#: includes/Post_Types.php:101
Expand Down Expand Up @@ -3939,7 +3939,6 @@ msgctxt "used in \"Workflow scheduled for <date>\""
msgid "M j, Y @ G:i"
msgstr ""

#. translators: php date string, see http://php.net/date
#: includes/Post_Types.php:106
msgid "Workflow draft updated."
msgstr ""
Expand Down Expand Up @@ -4994,10 +4993,14 @@ msgid "Checkout"
msgstr ""

#: includes/Rules/Order_Created_Via.php:39
msgid "Store API (Checkout Block)"
msgstr ""

#: includes/Rules/Order_Created_Via.php:40
msgid "REST API"
msgstr ""

#: includes/Rules/Order_Created_Via.php:43
#: includes/Rules/Order_Created_Via.php:45
msgid "WooCommerce Deposits"
msgstr ""

Expand Down
20 changes: 1 addition & 19 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,6 @@

// autoload.php @generated by Composer

if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
trigger_error(
$err,
E_USER_ERROR
);
}

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitb21582d5c8d1591b02e040be331e600e::getLoader();
return ComposerAutoloaderInit26daaf69f9ae2d67aa2aa5bb7698d33e::getLoader();
Loading

0 comments on commit c220112

Please sign in to comment.