Skip to content

Commit

Permalink
Tidy up, increment version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed Jan 17, 2021
1 parent a0b5114 commit 7aefebb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 5 additions & 0 deletions src/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ A plethora of working but unpolished plugins on GitHub: [Brian](https://github.c

== Changelog ==

= 1.0.1 =
* Improvement: GitHub icons are now only used when the link is to a repo (i.e. not to repo/issues etc.)
* Bugfix: Was hiding links when "premium" was in the URL (when trying to hide upsells).
* Bugfix: Plugins with empty action links were crashing things.

= 1.0 =
* Removes formatting from links on plugins.php
* Moves external links from the action links (first) column into the description column
Expand Down
9 changes: 3 additions & 6 deletions src/bh-wp-plugins-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* Plugin Name: Plugins Page Cleanup
* Plugin URI: http://github.com/BrianHenryIE/bh-wp-plugins-page/
* Description: Removes formatting and up-sells, and moves Settings links to the beginning and Deactivate links to the end of plugins.php action links. Disables plugin deactivation surveys.
* Version: 1.0.0
* Version: 1.0.1
* Author: BrianHenryIE
* Author URI: https://github.com/brianhenryie/bh-wp-plugins-page/
* Author URI: https://BrianHenry.ie
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: bh-wp-plugins-page
Expand All @@ -26,10 +26,7 @@

namespace BH_WP_Plugins_Page;

use BH_WP_Plugins_Page\includes\Activator;
use BH_WP_Plugins_Page\includes\Deactivator;
use BH_WP_Plugins_Page\includes\BH_WP_Plugins_Page;
use BH_WP_Plugins_Page\BrianHenryIE\WPPB\WPPB_Loader;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
Expand All @@ -43,7 +40,7 @@
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'BH_WP_PLUGINS_PAGE_VERSION', '1.0.0' );
define( 'BH_WP_PLUGINS_PAGE_VERSION', '1.0.1' );

/**
* Begins execution of the plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
namespace BH_WP_Plugins_Page\includes;

use BH_WP_Plugins_Page\admin\Admin;
use BH_WP_Plugins_Page\frontend\Frontend;

/**
* Class Develop_Test
Expand Down

0 comments on commit 7aefebb

Please sign in to comment.