Skip to content

Commit

Permalink
Merge pull request #496 from WPChill/3.2.3
Browse files Browse the repository at this point in the history
[ #493 ]
  • Loading branch information
TeoAlex authored Jan 9, 2025
2 parents 8a38a88 + c42e015 commit 24ba012
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
8 changes: 8 additions & 0 deletions admin/class-strong-testimonials-admin-scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ public static function admin_register() {
true
);

wp_register_script(
'wpmtst-admin-script',
WPMTST_ASSETS_JS . 'admin.js',
array( 'jquery', 'underscore' ),
$plugin_version,
true
);

wp_register_style(
'wpmtst-admin-global-style',
WPMTST_ASSETS_CSS . 'admin-global.css',
Expand Down
11 changes: 7 additions & 4 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
= 3.2.2 - 19.12.2024 -
- Fixed: Text domain loading
= 3.2.3 - 09.01.2025 -
- Fixed: Testimonial star rating edit triggering js error. ( [#493](https://github.com/WPChill/strong-testimonials/issues/493) )

= 3.2.2 - 19.12.2024 -
- Fixed: Text domain loading

= 3.2.1 - 17.12.2024 -
= 3.2.1 - 17.12.2024 -
- Changed: Disabled seasonal promotions notifications.
- Fixed: Javascript error in admin.

3.2.0 - 13.11.2024 -
= 3.2.0 - 13.11.2024 -
- Fixed: Modern view tempalte path to quote marks was not correct. ( [#474](https://github.com/WPChill/strong-testimonials/issues/474) )
- Removed: License functionality
- Fixed: Upsells fix ( [#477](https://github.com/WPChill/strong-testimonials/issues/477) )
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "strong-testimonials",
"author": "WPChill",
"version": "3.2.2",
"version": "3.2.3",
"license": "GPL v3",
"scripts": {
"build": "cross-env NODE_ENV=production wp-scripts build --config webpack.config.js",
Expand Down
11 changes: 7 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: testimonials, testimonial slider, testimonial form, star ratings
Requires at least: 5.2
Requires PHP: 5.6
Tested up to: 6.7
Stable tag: 3.2.2
Stable tag: 3.2.3
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -199,10 +199,13 @@ No. If you already have testimonials in another plugin or theme, you will have t
8. View editor

== Changelog ==
= 3.2.2 - 19.12.2024 -
- Fixed: Text domain loading
= 3.2.3 - 09.01.2025 -
- Fixed: Testimonial star rating edit triggering js error. ( [#493](https://github.com/WPChill/strong-testimonials/issues/493) )

= 3.2.1 - 17.12.2024 -
= 3.2.2 - 19.12.2024 -
- Fixed: Text domain loading

= 3.2.1 - 17.12.2024 -
- Changed: Disabled seasonal promotions notifications.
- Fixed: Javascript error in admin.

Expand Down
4 changes: 2 additions & 2 deletions strong-testimonials.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Collect and display your testimonials or reviews.
* Author: WPChill
* Author URI: https://wpchill.com/
* Version: 3.2.2
* Version: 3.2.3
* Text Domain: strong-testimonials
* Domain Path: /languages
* Requires: 4.6 or higher
Expand Down Expand Up @@ -45,7 +45,7 @@
exit;
}

define( 'WPMTST_VERSION', '3.2.2' );
define( 'WPMTST_VERSION', '3.2.3' );

define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
Expand Down

0 comments on commit 24ba012

Please sign in to comment.