From f779faed13124d44c339f790309fa9cce6b7d84e Mon Sep 17 00:00:00 2001 From: mustafauysal Date: Thu, 25 Mar 2021 16:24:48 +0300 Subject: [PATCH] bump version to 0.1.1 --- README.md | 2 +- plugin.php | 6 +++--- readme.txt | 6 +++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6ce4f1e..854e540 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ 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. -![Alt Text](https://media.giphy.com/media/ubpB6XcvpYMF2/giphy.gif) +![Unagi](https://media.giphy.com/media/ubpB6XcvpYMF2/giphy.gif) > Unagi - "It's not something you are , it's something you have." diff --git a/plugin.php b/plugin.php index 9c2979e..b079bc3 100644 --- a/plugin.php +++ b/plugin.php @@ -3,8 +3,8 @@ * 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.0 - * Requires at least: 4.9 + * Version: 0.1.1 + * Requires at least: 5.0 * Requires PHP: 5.6 * Author: HandyPlugins * Author URI: https://handyplugins.co/ @@ -23,7 +23,7 @@ } // Useful global constants. -define( 'UNAGI_VERSION', '0.1.0' ); +define( 'UNAGI_VERSION', '0.1.1' ); 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 4b773f8..5f31233 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.7 Requires PHP: 5.6 -Stable tag: 0.1.0 +Stable tag: 0.1.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -24,6 +24,7 @@ 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. +![Unagi](https://media.giphy.com/media/ubpB6XcvpYMF2/giphy.gif) > Unagi - "It's not something you are , it's something you have." @@ -51,6 +52,9 @@ This plugin only respects the messages that use `notice` class. And, the notice == Changelog == += 0.1.1 = +* Change output hook + = 0.1.0 = * First release