Skip to content

Commit

Permalink
version 1.1.5 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-rudakov committed Jan 11, 2022
1 parent 553370b commit 47f3651
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 18 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#### 1.1.5 / 2022-01-11
* tested for compatibility with WP 5.8.3
* moved `contact fields` classes to a separate folder
* moved traits files to a separate folder
* __Zukit__ updated to version 1.4.8
* fixed bug with `getColor` method
* removed `keepPlaceholderOnFocus` because the prop has been removed from `RichText` component
* fixed bug with `shortcode_atts_with_cast` snippet
* other small improvements

#### 1.1.3 / 2021-05-03
* __Zukit__ updated to version 1.2.2
* according to the changes in __Zukit__, rows in `Plugin Info` are now hidden through the value equal to null
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zu-contact",
"version": "1.1.3",
"testedWP": "5.7.1",
"version": "1.1.5",
"testedWP": "5.8.3",
"requiresPHP": ">=7.2.0",
"author": "Dmitry Rudakov",
"description": "Simple but smart and modern Ajax contact form. With Form Blocks and Gutenberg based settings page.",
Expand Down
24 changes: 12 additions & 12 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: dmitryrudakov
Tags: gutenberg, ajax, contact form, feedback, email, feedback form, contact
Requires at least: 5.3.0
Tested up to: 5.7.1
Stable tag: 1.1.3
Tested up to: 5.8.3
Stable tag: 1.1.5
License: GPLv2 or later
Requires PHP: 7.2.0

Expand Down Expand Up @@ -85,6 +85,16 @@ You can also personalize the form by adding attributes to the shortcode:

== Changelog ==

### 1.1.5 ###
* tested for compatibility with WP 5.8.3
* moved `contact fields` classes to a separate folder
* moved traits files to a separate folder
* __Zukit__ updated to version 1.4.8
* fixed bug with `getColor` method
* removed `keepPlaceholderOnFocus` because the prop has been removed from `RichText` component
* fixed bug with `shortcode_atts_with_cast` snippet
* other small improvements

### 1.1.3 ###
* __Zukit__ updated to version 1.2.2
* according to the changes in __Zukit__, rows in `Plugin Info` are now hidden through the value equal to null
Expand Down Expand Up @@ -199,13 +209,3 @@ You can also personalize the form by adding attributes to the shortcode:
* added `me_or_us` option to select between predefined headings and messages
* improved js error processing

### 0.8.2 ###
* added `subheading` attribute
* added new fields types: `number`, `tel`, `url`
* improved js error processing
* added support of `carbon-copy` attribute
* updated language dictionaries
* added `$rows_in_message` attribute for forms
* dynamically added classes with form margins
* css optimization

2 changes: 1 addition & 1 deletion wordpress-readme.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const debugTokens = false;
const options = {
contributors: 'dmitryrudakov',
tags: 'gutenberg, ajax, contact form, feedback, email, feedback form, contact',
tested: '5.7.1',
tested: '5.8.3',
license: 'GPLv2 or later',

pluginfile: 'zu-contact.php',
Expand Down
8 changes: 5 additions & 3 deletions zu-contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: https://wordpress.org/plugins/zu-contact/
GitHub Plugin URI: https://github.com/picasso/zu-contact
Description: Simple but smart and modern Ajax contact form. With Form Blocks and Gutenberg based settings page.
Version: 1.1.3
Version: 1.1.5
Author: Dmitry Rudakov
Author URI: https://dmitryrudakov.com/about/
Text Domain: zu-contact
Expand All @@ -16,7 +16,8 @@
// Prohibit direct script loading
defined('ABSPATH') || die('No direct script access allowed!');

add_action('plugins_loaded', function() { // DEBUG-ONLY
// DEBUG-ONLY
// add_action('plugins_loaded', function() {

// Always load Zukit even if we don't use it later ('wp_doing_ajax' or 'wp_doing_cron')
// as other plugins or themes may want to use it
Expand All @@ -36,4 +37,5 @@
zucontact(__FILE__);
}

});
// DEBUG-ONLY
// });

0 comments on commit 47f3651

Please sign in to comment.