3.2.1
June 2nd, 2022
- Regenerate
composer.lock
file so it works - I really shouldn't be working on a bank holiday 😅
2.2.3
December 2nd, 2021
What's fixed
- Fixed issue where download history wasn't being saved #103 by @digitalam025
2.2.2
August 30th, 2021
What's fixed
- Fixed issue with email view, where it would call a method that doesn't exist
- An exception is now thrown if product does not have any digital downloads
2.2.0
June 30th, 2021
⚠️ This update contains a breaking change.
This release introduces a few changes to the way email notifications work. Essentially, now the Digital Products addon hooks into Simple Commerce's existing notifications system.
To keep notifications from sending, add the following to the notifications
array in your config/simple-commerce.php
file.
'notifications' => [
'digital_download_ready' => [
\DoubleThreeDigital\DigitalProducts\Notifications\DigitalDownloadsNotification::class => [
'to' => 'customer',
],
],
],
2.1.0
May 10th, 2021
Note: Before updating, you'll need to upgrade to Simple Commerce v2.3. Review the upgrade guide.
What's new?
1.0.5
November 6th, 2020
- New Supports Simple Commerce v2.1
- Fix The Verification endpoint will now get orders from the configured order collection, instead of being hard coded.
- Fix Fixed bug where enabling the Statamic API wouldn't enable the Verification endpoint
LicenseKeyRepository
is now bound byStatamic::repository
- Added tests and did some refactoring