Skip to content

Commit f772648

Browse files
🚀 RELEASE: 0.1.3
1 parent 5fe3955 commit f772648

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

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

3131
## Changelog
3232

33+
### 0.1.3 – 2023-09-25
34+
35+
- Restrict access to block locking based on email domain with `demo_acf_show_admin()` check.
36+
- Improve usage of `get_block_wrapper_attributes()` for Phone block based on [Liam's Tweet thread](https://x.com/lgladdy/status/170011422420935dd).
37+
- Add `background` and `text` color supports to Phone block.
38+
3339
### 0.1.2 – 2023-08-29
3440

3541
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`

demo-acf-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: A demo WordPress plugin for custom ACF PRO Blocks, Post Types, Options Pages, Taxonomies and more.
55
* Requires at least: 6.3
66
* Requires PHP: 7.4
7-
* Version: 0.1.2
7+
* Version: 0.1.3
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.2' );
17+
define( 'DEMO_ACF_VERSION', '0.1.3' );
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)