Skip to content

Commit

Permalink
Merge pull request #918 from EvanHerman/update-min
Browse files Browse the repository at this point in the history
Bump versions, fix grunt min, remin the files
  • Loading branch information
EvanHerman authored Feb 26, 2024
2 parents 932ff28 + f833114 commit 54752d8
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion admin/css/yikes-inc-easy-mailchimp-extender-admin.min.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions admin/js/yikes-inc-easy-mailchimp-extender-admin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function( $ ) {Code ParrotsCode Parrots
(function( $ ) {
'use strict';

$( document ).ready( function() {
Expand All @@ -20,7 +20,7 @@
clicked.toggleText();
return false;
});

/* Prevent disabled buttons/pagination from doing anything */
$( 'body' ).on( 'click', '.yikes-easy-mc-wrap .disabled' , function() {
return false;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yikes-inc-easy-mailchimp-extender",
"version": "6.8.10",
"version": "6.9.0",
"devDependencies": {
"@wordpress/scripts": "^26",
"braces": ">=2.3.1",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Contributors: yikesinc, eherman24, liljimmi, JPry, yikesitskevin, fmixell, vochr
Donate link: https://codeparrots.com/?utm_source=wp_plugin_repo&utm_medium=donate_link&utm_campaign=easy_forms_for_mailchimp
Tags: Mailchimp, Mailchimp forms, Mailchimp lists, opt-in forms, sign up form, Mailchimp, email, forms, mailing lists, marketing, newsletter, sign up
Requires at least: 4.0
Tested up to: 6.3
Tested up to: 6.4
Requires PHP: 5.2.13
Stable tag: 6.8.10
Stable tag: 6.9.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -172,6 +172,11 @@ For information and code examples on how to implement the hooks and filters prov

== Changelog ==

= 6.9.0 - February 26th, 2023 =
* Sanitize all settings on save. [#917](https://github.com/EvanHerman/yikes-inc-easy-mailchimp-extender/pull/917)
* Escape all settings on output. [#917](https://github.com/EvanHerman/yikes-inc-easy-mailchimp-extender/pull/917)
* Replace all instances of `FILTER_SANITIZE_STRING` with `htmlspecialchars()`. [#917](https://github.com/EvanHerman/yikes-inc-easy-mailchimp-extender/pull/917)

= 6.8.9 - June 12, 2023 =
* Escaped and sanitize form fields when a form is created and displayed to the user.

Expand Down
4 changes: 2 additions & 2 deletions yikes-inc-easy-mailchimp-extender.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Easy Forms for Mailchimp
* Plugin URI: https://codeparrots.com/plugin/easy-forms-for-mailchimp/
* Description: The ultimate Mailchimp WordPress plugin. Easily build <strong>unlimited forms for your Mailchimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://codeparrots.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">Mailchimp API key</a>.
* Version: 6.8.10
* Version: 6.9.0
* Author: Code Parrots
* Author URI: https://www.codeparrots.com/
* License: GPL-3.0+
Expand Down Expand Up @@ -42,7 +42,7 @@
* @since 6.1.3
*/
if ( ! defined( 'YIKES_MC_VERSION' ) ) {
define( 'YIKES_MC_VERSION', '6.8.10' );
define( 'YIKES_MC_VERSION', '6.9.0' );
}

/**
Expand Down

0 comments on commit 54752d8

Please sign in to comment.