Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ jobs:
name: "Build project PHP"
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.1
- run: composer install --prefer-dist --no-dev -o --ignore-platform-reqs

- id: setup-node
name: "Setup Node.js"
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: 'package.json'
cache: 'npm'

- id: build-js
Expand Down
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.0.2",
"version": "1.0.3",
"slug": "blockparty-modal"
}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,13 @@ This plugin is distributed under the GPL-2.0-or-later license. See the [LICENSE]

See [readme.txt](readme.txt) for the full version history. Recent highlights:

- **1.0.3**
- Fix: prevent adding linkedModalId attribute to non allowed blocks.
- Set min required PHP version to 8.1

- **1.0.2**
- Filter `blockparty_modal_trigger_allowed_blocks` to control which blocks can be modal triggers; dialog margin and InnerBlocks fixes.
- Crawl Modal blocks from patterns
- Set min required PHP version to 8.0
- Style issues

- **1.0.1**
Expand Down
6 changes: 3 additions & 3 deletions blockparty-modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/**
* Plugin Name: Blockparty Modal
* Description: Modal block for WordPress editor.
* Version: 1.0.2
* Version: 1.0.3
* Requires at least: 6.8
* Requires PHP: 8.0
* Requires PHP: 8.1
* Author: Be API Technical Team
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -19,7 +19,7 @@
exit; // Exit if accessed directly.
}

define( 'BLOCKPARTY_MODAL_VERSION', '1.0.2' );
define( 'BLOCKPARTY_MODAL_VERSION', '1.0.3' );
define( 'BLOCKPARTY_MODAL_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_MODAL_DIR', plugin_dir_path( __FILE__ ) );

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"phpro/grumphp-shim": true
},
"platform": {
"php": "8.3.28"
"php": "8.1.31"
}
},
"require": {
Expand Down
Loading
Loading