2 Commits

Author SHA1 Message Date
Cooper Dalrymple f8e5bd4e3f Update to version 1.2.3 2026-06-12 09:55:23 -05:00
Cooper Dalrymple 5c4d471fc0 Fix non-required argument 2026-06-11 13:40:08 -05:00
5 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://getcomposer.org/schema.json",
"name": "cleverogre/ogre-captcha",
"version": "1.2.2",
"version": "1.2.3",
"title": "Ogre CAPTCHA",
"description": "Protect your site with CAPTCHA",
"author": "CleverOgre",
+2 -2
View File
@@ -4,7 +4,7 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.1
* @version 1.2.3
* @since 1.2.1
*/
@@ -109,7 +109,7 @@ final class CLI {
* @when after_wp_load
*/
public function form(array $args, array $assoc_args):void {
list($locations) = $args;
$locations = !empty($args) ? (array) array_values($args)[0] : [];
$all = $assoc_args['all'] ?? false;
$disable = $assoc_args['disable'] ?? false;
+2 -2
View File
@@ -6,14 +6,14 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.2
* @version 1.2.3
* @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.2
* Version: 1.2.3
* Requires at least: 6.0
* Requires PHP: 8.2
* Author: CleverOgre
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://www.schemastore.org/package.json",
"name": "cleverogre/ogre-captcha",
"version": "1.2.2",
"version": "1.2.3",
"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.2
Version: 1.2.3
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.3 - 2026-06-12 =
* Fix optional argument in CLI
= 1.2.2 - 2026-06-11 =
* Prevent main class loading bug
* Fix WP CLI associative arguments