Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jameelmoses committed Aug 18, 2020
1 parent 042803d commit d8eb6c3
Show file tree
Hide file tree
Showing 7 changed files with 955 additions and 839 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog ##

## 1.0.4 - 18 Aug 2020
* Update hook for enqueuing and registering assets for ACF 5.9 compatibility. Thanks @elliottpost!

## 1.0.3 - 7 Apr 2020
* Fixes a bug related to nested fields

Expand Down
4 changes: 2 additions & 2 deletions acf-flexible-content-extended.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Flexible Content Extended for Advanced Custom Fields
Version: 1.0.3
Version: 1.0.4
Plugin URI: https://github.com/jameelmoses/acf-flexible-content-extended
Description: Extends the ACF Flexible Content Field by transforming the layout list into a modal with image previews. Editing the fields layouts also happens in a modal for a better editing user experience.
Author: Jameel Moses
Expand Down Expand Up @@ -34,7 +34,7 @@
}

// Plugin constants
define( 'ACF_FCE_VERSION', '1.0.3' );
define( 'ACF_FCE_VERSION', '1.0.4' );
define( 'ACF_FCE_MIN_PHP_VERSION', '5.6' );

// Plugin URL and PATH
Expand Down
4 changes: 2 additions & 2 deletions classes/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class Main {
protected function init() {

// Assets
add_action( 'acf/input/admin_footer', [ $this, 'register_assets' ], 1 );
add_action( 'acf/input/admin_footer', [ $this, 'enqueue_assets' ] );
add_action( 'admin_footer', [ $this, 'register_assets' ], 1 );
add_action( 'admin_footer', [ $this, 'enqueue_assets' ] );

// Images
add_action( 'acf/input/admin_footer', [ $this, 'layouts_images_style' ], 20 );
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jameelmoses/acf-flexible-content-extended",
"version": "1.0.3",
"version": "1.0.4",
"description": "Extends the ACF Flexible Content Field by transforming the layout list into a modal with image previews. Editing the fields layouts also happens in a modal for a better editing user experience.",
"keywords": [
"WP",
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": "acf-flexible-content-extended",
"description": "Extends the ACF Flexible Content Field by transforming the layout list into a modal with image previews. Editing the fields layouts also happens in a modal for a better editing user experience.",
"version": "1.0.3",
"version": "1.0.4",
"keywords": [
"WP",
"Advanced Custom Fields",
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Donate link: http://paypal.me/jameelmoses
Tags: acf, advanced, custom, field, fields, addon, flexible, content, preview, modal
Requires at least: 4.7.0
Requires PHP: 5.6
Tested up to: 5.4
Stable tag: 1.0.3
Tested up to: 5.5
Stable tag: 1.0.4
License: GPLv3 or later
License URI: https://github.com/jameelmoses/acf-flexible-content-extended/blob/master/LICENSE.md

Expand Down Expand Up @@ -69,6 +69,11 @@ From your WordPress dashboard

== Changelog ==

= 1.0.4 =
*Release Date - 18 Aug 2020*

* Update hook for enqueuing and registering assets for ACF 5.9 compatibility. Thanks @elliottpost!

= 1.0.3 =
*Release Date - 7 Apr 2020*

Expand Down
Loading

0 comments on commit d8eb6c3

Please sign in to comment.