Skip to content

Commit

Permalink
Upped version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddarke committed Sep 10, 2020
1 parent 40d7554 commit 597da74
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 6 additions & 5 deletions acf-limiter.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,27 @@
Plugin Name: Advanced Custom Fields: Limiter
Plugin URI: http://wordpress.org/extend/plugins/advanced-custom-fields-limiter-field/
Description: This field provides a textarea that limits the number of characters the a user can add. The limit is cleanly represented by a jQuery Ui progress bar. You can define the number of characters on a per field basis.
Version: 1.2.0
Version: 1.2.1
Author: Atomic Smash - David Darke
Author URI: atomicsmash.co.uk
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

load_plugin_textdomain( 'acf-limiter', false, dirname( plugin_basename(__FILE__) ) . '/lang/' );
load_plugin_textdomain('acf-limiter', false, dirname(plugin_basename(__FILE__)) . '/lang/');


function include_field_types_limiter( $version ) {
function include_field_types_limiter($version)
{

include_once('limiter-v5.php');

}

add_action('acf/include_field_types', 'include_field_types_limiter');


function register_fields_limiter() {
function register_fields_limiter()
{
include_once('limiter-v4.php');
}

Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ This has been tested in:

== Changelog ==

= 1.2.1 =
* Added composer.json

= 1.2.0 =
* Fixed deprecated jQuery method due to WP 5.5.0 update

Expand Down

0 comments on commit 597da74

Please sign in to comment.