Skip to content

Commit 6853b01

Browse files
committed
Update version and docs
1 parent b696666 commit 6853b01

File tree

4 files changed

+34
-2
lines changed

4 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
44

5+
## [1.7.0] - 2026-03-04
6+
7+
### Added
8+
9+
- Add i18n support with `load_plugin_textdomain`.
10+
- Add server-side validation for block attributes.
11+
12+
### Changed
13+
14+
- Refactor plugin to use singleton pattern.
15+
- Add PSR-4 autoloading.
16+
17+
### Fixed
18+
19+
- Fix incorrect text domain in editor controls.
20+
521
## [1.6.0] - 2025-10-26
622

723
### Changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ This WordPress plugin extends the functionality of the Footnotes block, seamless
99

1010
![Littlefoot for Footnotes](assets/screenshot-1.gif)
1111

12+
## Requirements
13+
14+
- WordPress 6.7 or later
15+
- PHP 7.4 or later
16+
1217
## Installation
1318

1419
### Manual Installation
@@ -31,6 +36,13 @@ composer require s3rgiosan/littlefoot
3136
2. Run `composer install` to install the plugin.
3237
3. Activate the plugin from your WordPress admin area or using WP-CLI.
3338

39+
## Usage
40+
41+
1. Add a [Footnotes block](https://wordpress.org/documentation/article/footnotes-block/) to your post or page.
42+
2. Select the Footnotes block and open the block settings in the sidebar.
43+
3. Configure the littlefoot options under the **Littlefoot** panel.
44+
4. Publish or update your post — footnotes will automatically appear as interactive popups on the frontend.
45+
3446
## Options
3547

3648
### `activateDelay`

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
"homepage": "https://goblindegook.com"
1313
}
1414
],
15-
"autoload": {},
15+
"autoload": {
16+
"psr-4": {
17+
"S3S\\WP\\Littlefoot\\": "includes/"
18+
}
19+
},
1620
"require": {
1721
"php": "^7.4|^8.0",
1822
"composer-plugin-api": "^2.3",

plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: https://github.com/s3rgiosan/littlefoot
66
* Requires at least: 6.7
77
* Requires PHP: 7.4
8-
* Version: 1.6.0
8+
* Version: 1.7.0
99
* Author: Sérgio Santos
1010
* Author URI: https://s3rgiosan.dev/?utm_source=wp-plugins&utm_medium=littlefoot&utm_campaign=author-uri
1111
* License: MIT

0 commit comments

Comments
 (0)