diff --git a/plugin.php b/plugin.php index c8aff29..630506d 100644 --- a/plugin.php +++ b/plugin.php @@ -3,7 +3,7 @@ * Plugin Name: Unagi * Plugin URI: https://github.com/HandyPlugins/unagi * Description: Unagi clean-up your WordPress notices from the dashboard and show them under the "Notifications" pages. - * Version: 0.1.2 + * Version: 0.1.3 * Requires at least: 5.0 * Requires PHP: 5.6 * Author: HandyPlugins @@ -23,7 +23,7 @@ } // Useful global constants. -define( 'UNAGI_VERSION', '0.1.2' ); +define( 'UNAGI_VERSION', '0.1.3' ); define( 'UNAGI_URL', plugin_dir_url( __FILE__ ) ); define( 'UNAGI_PATH', plugin_dir_path( __FILE__ ) ); define( 'UNAGI_INC', UNAGI_PATH . 'includes/' ); diff --git a/readme.txt b/readme.txt index 966448a..413c301 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: notification,nags,admin notice, Requires at least: 5.0 Tested up to: 5.9 Requires PHP: 5.6 -Stable tag: 0.1.2 +Stable tag: 0.1.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -12,7 +12,7 @@ Unagi clean-up your WordPress notices from the dashboard and show them under the == Description == -Unagi is a WordPress plugin that helps you to keep the admin dashboard clean. It's a zero-configuration plugin, just activate and rid of the nags. +Unagi is a WordPress plugin that helps keep the admin dashboard clean. It's a zero-configuration plugin; just activate and get rid of the nags. = How does it work? = @@ -24,8 +24,6 @@ It buffers all the output that hooked into `admin_notices` action and then displ - `edit_posts` is the default capability. It can be overridden with `unagi_required_capability` filter. - By default, plugin saves the output in the usermeta and renders saved output. If you need to avoid DB calls, you can use `unagi_show_notifications_nicely` filter. -[https://media.giphy.com/media/ubpB6XcvpYMF2/giphy.gif Unagi] - > Unagi - "It's not something you are , it's something you have." = Contributing & Bug Report = @@ -52,6 +50,9 @@ This plugin only respects the messages that use `notice` class. And, the notice == Changelog == += 0.1.3 = +* Tested with WP 5.9 Props [@ZgrK](https://github.com/ZgrK). + = 0.1.2 = * Revert output hook change. (It causes regression when `admin_notices` removes on a page entirely) * Add heading to notifications page. Props [@sanzeeb3](https://github.com/sanzeeb3)