Skip to content
Open
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
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.1.0",
"version": "1.1.1",
"slug": "blockparty-key-figure"
}
4 changes: 2 additions & 2 deletions blockparty-key-figure.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Key Figure block for WordPress.
* Requires at least: 6.2
* Requires PHP: 8.1
* Version: 1.1.0
* Version: 1.1.1
* Author: Be API Technical team
* Author URI: https://beapi.fr
* License: GPL-2.0-or-later
Expand All @@ -15,7 +15,7 @@

namespace Blockparty\Key_Figure;

define( 'BLOCKPARTY_KEY_FIGURE_VERSION', '1.1.0' );
define( 'BLOCKPARTY_KEY_FIGURE_VERSION', '1.1.1' );
define( 'BLOCKPARTY_KEY_FIGURE_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_KEY_FIGURE_DIR', plugin_dir_path( __FILE__ ) );

Expand Down
2 changes: 1 addition & 1 deletion languages/blockparty-key-figure-fr_FR.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is distributed under the GPL-2.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: Be API Key Figure block 1.1.0\n"
"Project-Id-Version: Be API Key Figure block 1.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-key-"
"figure\n"
"POT-Creation-Date: 2024-04-02T21:11:52+00:00\n"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockparty-key-figure",
"version": "1.1.0",
"version": "1.1.1",
"description": "Key Figure block for WordPress.",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: beapi, candrietti
Tags: block, key, figure, gutenberg
Tested up to: 6.5
Stable tag: 1.1.0
Stable tag: 1.1.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -42,3 +42,6 @@ This block allow to set a prefix, suffix and a number. It's possible to change t

= 1.1.0 - 2026-02-16 =
* Markup change: __key wrapper was div, now p (a11y/semantic)

= 1.1.1 - 2026-05-28 =
* Add block example.
10 changes: 9 additions & 1 deletion src/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/key-figure",
"version": "1.1.0",
"version": "1.1.1",
"title": "Key Figure",
"category": "widgets",
"description": "Key Figure block.",
Expand Down Expand Up @@ -60,6 +60,14 @@
"selector": ".wp-block-blockparty-key-figure__description"
}
},
"example": {
"attributes": {
"prefix": "+",
"number": "100",
"suffix": "%",
"description": "Lorem ipsum"
}
},
"textdomain": "blockparty-key-figure",
"editorScript": "file:./index.js",
"editorStyle": "file:./index.css",
Expand Down
Loading