Skip to content

Commit

Permalink
🚀 RELEASE: 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
colorful-tones committed Dec 14, 2023
1 parent 6558e9d commit 9178cba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` 🤦‍♂️
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions demo-acf-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/' );
Expand Down

0 comments on commit 9178cba

Please sign in to comment.