Skip to content

Commit

Permalink
Fixes WordPress.org warnings (#2)
Browse files Browse the repository at this point in the history
* Fixes WordPress.org warnings

* Bump up version
  • Loading branch information
dbeja authored Apr 16, 2024
1 parent dc4ac54 commit 5d9a6ca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
=== Captain Hooks ===
Contributors: dbeja
Tags: admin, dashboard, hooks, filters, actions, shortcodes
Tags: admin, hooks, filters, actions, shortcodes
Donate link: https://www.paypal.com/paypalme/dbkode
Requires at least: 5.7 or higher
Requires at least: 5.7
Tested up to: 6.3.1
Requires PHP: 7.2 or higher
Stable tag: 1.0.0
Requires PHP: 7.2
Stable tag: 1.0.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Captain Hooks is a WordPress plugin that provides developers with a comprehensive view of all actions, filters, and shortcodes of their environment.

== Description ==
Captain Hooks is a robust WordPress plugin designed to give developers an in-depth look at all the hooks available in their WordPress environment. Explore actions, filters, and shortcodes like never before!
Expand Down Expand Up @@ -36,5 +37,8 @@ To install this plugin:
4. Details about a shortcode

== Changelog ==
= 1.0 =
= 1.0.1 =
* Fixed: WordPress.org warnings

= 1.0.0 =
* Plugin release
4 changes: 2 additions & 2 deletions captainhooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Captain Hooks
* Plugin URI: https://github.com/dbkode/captain-hooks
* Description: Captain Hooks is a plugin that allows you to explore all the hooks (actions, filters and shortcodes) that are available in your WordPress installation.
* Version: 1.0.0
* Version: 1.0.1
* Requires at least: 5.7
* Requires PHP: 7.2
* Author: dbeja
Expand All @@ -20,7 +20,7 @@

define( 'CAPTAINHOOKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'CAPTAINHOOKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CAPTAINHOOKS_VERSION', '1.0.0' );
define( 'CAPTAINHOOKS_VERSION', '1.0.1' );

require_once CAPTAINHOOKS_PLUGIN_DIR . '/vendor/autoload.php';

Expand Down

0 comments on commit 5d9a6ca

Please sign in to comment.