From 9178cba3aea8122693de4824859936fff2c4a647 Mon Sep 17 00:00:00 2001 From: Damon Cook Date: Thu, 14 Dec 2023 16:42:24 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=200.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++++ demo-acf-plugin.php | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 492d7f2..2f3883a 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ __Required__ You must have [ACF PRO](https://https://www.advancedcustomfields.co ## Changelog +## 0.1.5 – 2023-12-14 + +- Wrap "Site Settings" Options page in `function_exists()` check to fail gracefully if ACF PRO is not installed. + ### 0.1.4 – 2023-10-20 - Fixed Fatal Error for misnamed function call in `includes/acf-restrict-access.php` 🤦‍♂️ @@ -43,6 +47,7 @@ __Required__ You must have [ACF PRO](https://https://www.advancedcustomfields.co ### 0.1.2 – 2023-08-29 Added example of restricting access to ACF admin screens based on role && email domain, example: `yourAgency.com`. So builders can limit admin screens for their clients. See: `includes/acf-restrict-access.php` + ### 0.1.1 – 2023-08-15 Initial release, which includes: diff --git a/demo-acf-plugin.php b/demo-acf-plugin.php index 46e058b..e960872 100644 --- a/demo-acf-plugin.php +++ b/demo-acf-plugin.php @@ -2,9 +2,9 @@ /** * Plugin Name: Demo ACF plugin * Description: A demo WordPress plugin for custom ACF PRO Blocks, Post Types, Options Pages, Taxonomies and more. - * Requires at least: 6.3 + * Requires at least: 6.4 * Requires PHP: 7.4 - * Version: 0.1.4 + * Version: 0.1.5 * Author: ACF * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -14,7 +14,7 @@ */ // Define our handy constants. -define( 'DEMO_ACF_VERSION', '0.1.4' ); +define( 'DEMO_ACF_VERSION', '0.1.5' ); define( 'DEMO_ACF_PLUGIN_DIR', __DIR__ ); define( 'DEMO_ACF_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'DEMO_ACF_PLUGIN_BLOCKS', DEMO_ACF_PLUGIN_DIR . '/blocks/' );