5 Commits

Author SHA1 Message Date
Cooper Dalrymple 322a9d95bd Update to version 1.2.4 2026-06-18 12:36:28 -05:00
ogrecooper af10bb0e82 Merge pull request 'Minor bug fixes' (#8) from minor-bug-fixes into main
Reviewed-on: #8
2026-06-18 17:33:52 +00:00
Cooper Dalrymple 20b812e91b Fix lost password callback 2026-06-18 12:32:56 -05:00
Cooper Dalrymple 2165224454 Update packages 2026-06-18 12:32:41 -05:00
Cooper Dalrymple f8bf6e40ca Fix setters 2026-06-18 12:32:36 -05:00
8 changed files with 16 additions and 13 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://getcomposer.org/schema.json",
"name": "cleverogre/ogre-captcha",
"version": "1.2.3",
"version": "1.2.4",
"title": "Ogre CAPTCHA",
"description": "Protect your site with CAPTCHA",
"author": "CleverOgre",
Generated
+1 -1
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "49f5e6f919f33ce6a3edc2992620a64a",
"content-hash": "d662e21940aa15a41d819c504c3139c9",
"packages": [
{
"name": "cleverogre/plugin-framework",
+3 -3
View File
@@ -4,7 +4,7 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.1
* @version 1.2.4
* @since 1.0.0
*/
@@ -122,7 +122,7 @@ final class Settings {
}
public static function set_site_key(string $value):bool {
self::get('site_key');
self::set('site_key', $value);
return true;
}
@@ -131,7 +131,7 @@ final class Settings {
}
public static function set_secret_key(string $value):bool {
self::get('secret_key');
self::set('secret_key', $value);
return true;
}
+2 -2
View File
@@ -4,7 +4,7 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.0
* @version 1.2.4
* @since 1.0.0
*/
@@ -35,7 +35,7 @@ final class LostPasswordForm extends LoginLocation {
{
parent::activate();
add_action('lostpassword_form', [$this, 'render']);
add_action('lostpassword_post', [$this, 'process_form']);
add_action('lostpassword_post', [$this, 'process_form'], 10, 2);
}
public function process_form(WP_Error $errors, WP_User|bool $user_data):void {
+2 -2
View File
@@ -6,14 +6,14 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.3
* @version 1.2.4
* @since 1.0.0
*
* @wordpress-plugin
* Plugin Name: Ogre CAPTCHA
* Plugin URI: https://git.cleverogre.com/cleverogre/ogre-captcha/
* Description: Protect your site with CAPTCHA
* Version: 1.2.3
* Version: 1.2.4
* Requires at least: 6.0
* Requires PHP: 8.2
* Author: CleverOgre
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "cleverogre/ogre-captcha",
"version": "1.0.0",
"version": "1.2.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cleverogre/ogre-captcha",
"version": "1.0.0",
"version": "1.2.3",
"license": "GPL-3.0+",
"devDependencies": {
"gulp": "^5.0.0",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://www.schemastore.org/package.json",
"name": "cleverogre/ogre-captcha",
"version": "1.2.3",
"version": "1.2.4",
"title": "Ogre CAPTCHA",
"description": "Protect your site with CAPTCHA",
"author": "CleverOgre",
+4 -1
View File
@@ -3,7 +3,7 @@ Contributors: ogrecooper, cleverogre
Tested up to: 7.0
Requires at least: 6.0
Requires PHP: 8.2
Version: 1.2.3
Version: 1.2.4
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Copyright: CleverOgre
@@ -28,6 +28,9 @@ If you don't know what plugin you have downloaded, please contact [CleverOgre](t
== Changelog ==
= 1.2.4 - 2026-06-18 =
* Minor bug fixes
= 1.2.3 - 2026-06-12 =
* Fix optional argument in CLI