Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: pluginever, manikmist09
Tags: donation, donations, donate, help, charitable
Tested up to: 7.0
Stable tag: 1.1.3
Stable tag: 1.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -128,6 +128,18 @@ If you encounter a bug or have a feature request for the Donation Manager for Wo
Upgrade to PRO to unlock additional features: [Upgrade to PRO](https://pluginever.com/plugins/woocommerce-donation-manager-pro/?utm_source=product-page-wordpress.org&utm_medium=product-page-wordpress.org&utm_campaign=product-page-wordpress.org)

== Changelog ==
= 1.2.0 (8th July 2026) =
* New: Modernize the plugin with a new component-based architecture for improved maintainability and extensibility.
* New: Add a deactivation feedback survey to help collect user feedback.
* Enhance: Improve WooCommerce settings integration and donation product data handling.
* Enhance: Refactor the installer and upgrade process for more reliable updates.
* Enhance: Improve template loading, asset management, and overall performance.
* Fix: Fix donation product type initialization issues.
* Fix: Fix JavaScript reference errors, nonce verification warnings, and duplicate function declarations.
* Fix: Resolve various coding standards issues and minor bugs throughout the plugin.
* Update: Update project dependencies and development tooling.
* Compatibility: Tested with the latest version of WordPress and WooCommerce.

= 1.1.3 (4th June 2026) =
* Enhancement: Added a WYSIWYG editor to the Cause section for rich content formatting.
* Enhancement: Added configurable donation behavior after campaign goal completion.
Expand Down
6 changes: 3 additions & 3 deletions wc-donation-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Donation Manager
* Plugin URI: https://pluginever.com/plugins/woocommerce-donation-manager-pro/
* Description: Easily manage and collect donations with WooCommerce. It provides a seamless solution for receiving donations for charitable organizations, non-profits, or businesses supporting a cause.
* Version: 1.1.3
* Version: 1.2.0
* Requires at least: 5.2
* Tested up to: 7.0
* Requires PHP: 7.4
Expand All @@ -14,7 +14,7 @@
* Text Domain: wc-donation-manager
* Domain Path: /languages
* WC requires at least: 3.0.0
* WC tested up to: 10.8
* WC tested up to: 10.9.4
* Requires Plugins: woocommerce
*
* @link https://pluginever.com
Expand Down Expand Up @@ -47,7 +47,7 @@
require_once __DIR__ . '/includes/functions.php';

$data = array(
'version' => '1.1.3',
'version' => '1.2.0',
'name' => 'Donation Manager',
'settings_url' => admin_url( 'admin.php?page=wcdm-settings' ),
'support_url' => 'https://pluginever.com/support/',
Expand Down
Loading