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
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.1",
"version": "1.0.2",
"slug": "blockparty-anchors"
}
2 changes: 1 addition & 1 deletion .wordpress-org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"pluginData": {
"resource": "git:directory",
"url": "https://github.com/BeAPI/blockparty-anchors",
"ref": "1.0.1",
"ref": "1.0.2",
"refType": "tag"
},
"options": {
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to Blockparty Anchors are documented in this file.

## 1.0.2

- Add frontend scroll-spy on the Anchors List block, with an `is-active` state, smooth in-page scrolling, URL hash sync, and sticky position support.

## 1.0.1

- Collect anchors from block theme templates and template parts in document order, including content rendered via `core/post-content`.
Expand Down
4 changes: 2 additions & 2 deletions blockparty-anchors.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Blockparty Anchors
* Description: Adds two new blocks to the WordPress editor: an anchor block to create an anchor system on your pages, and an anchor list block to list those anchors.
* Version: 1.0.1
* Version: 1.0.2
* Requires at least: 6.8
* Requires PHP: 8.1
* Author: Be API Technical Team
Expand All @@ -24,7 +24,7 @@
include_once __DIR__ . '/vendor/autoload.php';
}

define( 'BLOCKPARTY_ANCHORS_VERSION', '1.0.1' );
define( 'BLOCKPARTY_ANCHORS_VERSION', '1.0.2' );
define( 'BLOCKPARTY_ANCHORS_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_ANCHORS_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLOCKPARTY_ANCHORS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion languages/blockparty-anchors-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: Blockparty Anchors 1.0.1\n"
"Project-Id-Version: Blockparty Anchors 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-"
"anchors\n"
"POT-Creation-Date: 2026-07-09T09:18:45+00:00\n"
Expand Down
2 changes: 1 addition & 1 deletion languages/blockparty-anchors.pot
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: Blockparty Anchors 1.0.1\n"
"Project-Id-Version: Blockparty Anchors 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockparty-anchors\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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-anchors",
"version": "1.0.1",
"version": "1.0.2",
"description": "Adds two new blocks to the WordPress editor: an anchor block to create an anchor system on your pages, and an anchor list block to list those anchors.",
"author": "Be API",
"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 @@ -4,7 +4,7 @@ Tags: block, gutenberg, anchor, navigation, table of contents
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.1
Stable tag: 1.0.1
Stable tag: 1.0.2
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -96,6 +96,9 @@ Yes. Anchor blocks are collected recursively, including when placed inside colum

== Changelog ==

= 1.0.2 =
* Add frontend scroll-spy on the Anchors List block, with an is-active state, smooth in-page scrolling, URL hash sync, and sticky position support.

= 1.0.1 =
* Collect anchors from block theme templates and template parts in document order, including content rendered via core/post-content.

Expand Down
2 changes: 1 addition & 1 deletion src/anchor/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/anchor",
"version": "1.0.1",
"version": "1.0.2",
"title": "Anchor",
"category": "widgets",
"description": "Place an anchor on your page. It will be listed in the anchor list block.",
Expand Down
2 changes: 1 addition & 1 deletion src/anchors-list/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/anchors-list",
"version": "1.0.1",
"version": "1.0.2",
"title": "Anchors List",
"category": "widgets",
"description": "Displays the list of anchors placed on your page.",
Expand Down
Loading