Skip to content

Commit 9178cba

Browse files
🚀 RELEASE: 0.1.5
1 parent 6558e9d commit 9178cba

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ __Required__ You must have [ACF PRO](https://https://www.advancedcustomfields.co
3030

3131
## Changelog
3232

33+
## 0.1.5 – 2023-12-14
34+
35+
- Wrap "Site Settings" Options page in `function_exists()` check to fail gracefully if ACF PRO is not installed.
36+
3337
### 0.1.4 – 2023-10-20
3438

3539
- 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
4347
### 0.1.2 – 2023-08-29
4448

4549
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`
50+
4651
### 0.1.1 – 2023-08-15
4752

4853
Initial release, which includes:

demo-acf-plugin.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
/**
33
* Plugin Name: Demo ACF plugin
44
* Description: A demo WordPress plugin for custom ACF PRO Blocks, Post Types, Options Pages, Taxonomies and more.
5-
* Requires at least: 6.3
5+
* Requires at least: 6.4
66
* Requires PHP: 7.4
7-
* Version: 0.1.4
7+
* Version: 0.1.5
88
* Author: ACF
99
* License: GPL-2.0-or-later
1010
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// Define our handy constants.
17-
define( 'DEMO_ACF_VERSION', '0.1.4' );
17+
define( 'DEMO_ACF_VERSION', '0.1.5' );
1818
define( 'DEMO_ACF_PLUGIN_DIR', __DIR__ );
1919
define( 'DEMO_ACF_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
2020
define( 'DEMO_ACF_PLUGIN_BLOCKS', DEMO_ACF_PLUGIN_DIR . '/blocks/' );

0 commit comments

Comments
 (0)