Skip to content

Commit 85decc9

Browse files
authored
Merge pull request #21 from BeAPI/release/1.0.6
Release 1.0.6
2 parents 0895ec5 + 0c4ce88 commit 85decc9

14 files changed

Lines changed: 198 additions & 51 deletions

File tree

.plugin-data

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.0.5",
2+
"version": "1.0.6",
33
"slug": "blockparty-accordion"
44
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 1.0.6 - 2025-11-10
9+
10+
- Update block icons
11+
812
## 1.0.5 - 2025-11-07
913

1014
- Replacement of icon for the icon block

blockparty-accordion.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: Accessible Accordion block for WordPress editor.
55
* Requires at least: 6.2
66
* Requires PHP: 8.1
7-
* Version: 1.0.5
7+
* Version: 1.0.6
88
* Author: Be API Technical team
99
* Author URI: https://beapi.fr
1010
* License: GPL-2.0-or-later
@@ -15,7 +15,7 @@
1515

1616
namespace Blockparty\Accordion;
1717

18-
define( 'BLOCKPARTY_ACCORDION_VERSION', '1.0.5' );
18+
define( 'BLOCKPARTY_ACCORDION_VERSION', '1.0.6' );
1919
define( 'BLOCKPARTY_ACCORDION_URL', plugin_dir_url( __FILE__ ) );
2020
define( 'BLOCKPARTY_ACCORDION_DIR', plugin_dir_path( __FILE__ ) );
2121
define( 'BLOCKPARTY_ACCORDION_PLUGIN_DIRNAME', plugin_basename( __FILE__ ) );

package-lock.json

Lines changed: 115 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blockparty-accordion",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Accessible Accordion block for WordPress",
55
"author": "Be API Technical team",
66
"license": "GPL-2.0-or-later",
@@ -28,6 +28,7 @@
2828
"@beapi/icons": "^1.2.5",
2929
"@wordpress/components": "^27.2.0",
3030
"@wordpress/data": "^9.24.0",
31+
"@wordpress/icons": "^11.1.0",
3132
"@wp-now/wp-now": "^0.1.66",
3233
"stylelint-config-recess-order": "^3.0.0",
3334
"stylelint-scss": "^4.3.0",

readme.txt

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
=== Blockparty Accordion ===
2+
Contributors: Be API Technical team
3+
Tags: block
4+
Tested up to: 6.0
5+
Stable tag: 1.0.0
6+
License: GPL-2.0-or-later
7+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
8+
9+
Accessible Accordion block for WordPress gutenberg.
10+
11+
== Description ==
12+
13+
== Installation ==
14+
15+
1. Upload the plugin files to the `/wp-content/plugins/blockparty-accordion` directory, or install the plugin through the WordPress plugins screen directly.
16+
1. Activate the plugin through the 'Plugins' screen in WordPress
17+
18+
== Frequently Asked Questions ==
19+
20+
= A question that someone might have =
21+
22+
An answer to that question.
23+
24+
== Screenshots ==
25+
26+
1. This screen shot description corresponds to screenshot-1.(png|jpg|jpeg|gif). Note that the screenshot is taken from
27+
the /assets directory or the directory that contains the stable readme.txt (tags or trunk). Screenshots in the /assets
28+
directory take precedence. For example, `/assets/screenshot-1.png` would win over `/tags/4.3/screenshot-1.png`
29+
(or jpg, jpeg, gif).
30+
2. This is the second screen shot
31+
32+
== Changelog ==
33+
34+
= 1.0.6 =
35+
36+
* Update block icons
37+
38+
= 1.0.5 =
39+
40+
* Replacement of icon for the icon block
41+
* Update `@beapi/a11y` to v1.7.0 and fix a11y issues
42+
43+
= 1.0.4 =
44+
45+
* fix icon inserter
46+
47+
= 1.0.3 =
48+
49+
* fix error in JS
50+
* add `beapi_accordion_block_config` filter to config accordion from third party plugins/theme
51+
52+
= 1.0.2 =
53+
54+
* fix composer php requirements
55+
56+
= 1.0.1 =
57+
58+
* fix styles
59+
60+
= 1.0.0 =
61+
62+
* initial release.

src/blockparty-accordion-item/block.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
"apiVersion": 2,
44
"name": "blockparty/accordion-item",
55
"parent": [ "blockparty/accordion" ],
6-
"version": "1.0.5",
6+
"version": "1.0.6",
77
"title": "Item",
88
"category": "widgets",
9-
"icon": "button",
109
"description": "Accessible accordion block item.",
1110
"supports": {
1211
"html": false,

src/blockparty-accordion-item/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ import { registerBlockType } from '@wordpress/blocks';
22
import Edit from './edit';
33
import save from './save';
44
import metadata from './block.json';
5+
import { button } from '@wordpress/icons';
56

67
registerBlockType(metadata.name, {
8+
icon: button,
79
edit: Edit,
810
save,
911
});

src/blockparty-accordion-panel/block.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
"apiVersion": 2,
44
"name": "blockparty/accordion-panel",
55
"parent": [ "blockparty/accordion-item" ],
6-
"version": "1.0.5",
6+
"version": "1.0.6",
77
"title": "Panel",
88
"category": "widgets",
9-
"icon": "text-page",
109
"description": "Accessible accordion block panel.",
1110
"supports": {
1211
"html": false,

0 commit comments

Comments
 (0)