Skip to content

Commit

Permalink
Merge pull request #9718 from awesomemotive/release/3.2.11
Browse files Browse the repository at this point in the history
Adding EDD 3.2.11
  • Loading branch information
cklosowski committed Mar 29, 2024
2 parents 4a09774 + 815fadf commit a788978
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions easy-digital-downloads.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The easiest way to sell digital products with WordPress.
* Author: Easy Digital Downloads
* Author URI: https://easydigitaldownloads.com
* Version: 3.2.10
* Version: 3.2.11
* Text Domain: easy-digital-downloads
* Domain Path: /languages
* Requires at least: 5.8
Expand All @@ -27,7 +27,7 @@
* @package EDD
* @category Core
* @author Easy Digital Downloads
* @version 3.2.10
* @version 3.2.11
*/

// Exit if accessed directly.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-easy-digital-downloads.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ private function setup_constants() {

// Plugin version.
if ( ! defined( 'EDD_VERSION' ) ) {
define( 'EDD_VERSION', '3.2.10' );
define( 'EDD_VERSION', '3.2.11' );
}

// Make sure CAL_GREGORIAN is defined.
Expand Down
4 changes: 2 additions & 2 deletions languages/easy-digital-downloads.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the Easy Digital Downloads (Pro) plugin.
msgid ""
msgstr ""
"Project-Id-Version: Easy Digital Downloads (Pro) 3.2.10\n"
"Project-Id-Version: Easy Digital Downloads (Pro) 3.2.11\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-digital-downloads-pro\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-03-28T20:28:59+00:00\n"
"POT-Creation-Date: 2024-03-29T18:25:17+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.10.0\n"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easy-digital-downloads",
"version": "3.2.10",
"version": "3.2.11",
"description": "The easiest way to sell digital products with WordPress.",
"private": true,
"author": "Easy Digital Downloads",
Expand Down
10 changes: 7 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: ecommerce, payments, sell, digital store, stripe
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
Stable Tag: 3.2.10
Stable Tag: 3.2.11
License: GNU Version 2 or Any Later Version

The #1 eCommerce plugin to sell digital products & subscriptions. Accept credit card payments with Stripe & PayPal and start your store today.
Expand Down Expand Up @@ -54,6 +54,7 @@ With our included integrations, new payment methods are added when they become a
Unlock the full potential of your digital store with Easy Digital Downloads — the best WordPress ecommerce solution renowned for its powerful reporting features. Dive deep into the heart of your digital business with tools designed not just to give you insights into what is happening in your business now, but also to help you make decisions that will help you grow your business.

With the included date comparison tools, you can compare your sales, revenue, customers, and other data from one period to another, giving you the insights to make informed decisions and accelerate your growth. Some of the data points you get access to include:

* Customer growth
* Revenue and Sales
* Filtering by product
Expand Down Expand Up @@ -223,6 +224,11 @@ Check out some of our popular posts for actionable advice for running your busin
8. Checkout - Default Theme

== Changelog ==
= 3.2.11 =
* Order Management: When searching orders, a Product ID was being erroneously added to the filter arguments when it not have been.

View the full changelog at [https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/](https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/?utm_medium=readme&utm_source=wporg&utm_campaign=edd-plugin&utm_term=description)

= 3.2.10 =
* Downloads: Improved performance when creating and managing download directories.
* Discounts: Start and End dates are properly handling the timezone.
Expand All @@ -242,8 +248,6 @@ Check out some of our popular posts for actionable advice for running your busin
* Migration: Improved the reliability of the EDD 3.0+ migration routine for possibly corrupt serialized data.
* Migration: Improved PHP 8.0+ compatibility for the EDD 3.0+ migration routine.

View the full changelog at [https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/](https://easydigitaldownloads.com/changelogs/plugin/easy-digital-downloads/?utm_medium=readme&utm_source=wporg&utm_campaign=edd-plugin&utm_term=description)

= 3.2.9 =
* Stripe: Resending the purchase receipt could fail if including the Stripe statement descriptor in the email template.
* Settings: Improve the reliability of determining the timezone settings in WordPress.
Expand Down
2 changes: 1 addition & 1 deletion src/HTML/ProductSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected function defaults() {
*/
private function get_options() {
$products = $this->get_products();
$options = array();
$options = array( '' => '' );
if ( $products ) {
foreach ( $products as $product ) {
// If bundles are not allowed, skip any products that are bundles.
Expand Down

0 comments on commit a788978

Please sign in to comment.