Skip to content

Commit

Permalink
commit v3.13.0
Browse files Browse the repository at this point in the history
* release date August 29, 2019
* remove notice on permalinks page that warns the user of the implications of changing them, fixes [issue #58](#58)
* recode hiding of the admin columns into actually removing them, fixes [issue #65](#65)
* recode hiding of the seo score/readability score filters into actually removing them, fixes [issue #65](#65)
* remove advanced accordion menu at bottom of SEO metabox for post- and custom post types, fixes [issue #67](#67)
  • Loading branch information
senlin committed Aug 29, 2019
1 parent 57fb99e commit 780c50e
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 9 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![plugin version](https://img.shields.io/wordpress/plugin/v/so-clean-up-wp-seo.svg)](https://wordpress.org/plugins/so-clean-up-wp-seo) [![WP compatibility](https://plugintests.com/plugins/so-clean-up-wp-seo/wp-badge.svg)](https://plugintests.com/plugins/so-clean-up-wp-seo/latest) [![PHP compatibility](https://plugintests.com/plugins/so-clean-up-wp-seo/php-badge.svg)](https://plugintests.com/plugins/so-clean-up-wp-seo/latest) [![ClassicPress tested on version 1.0.1](https://img.shields.io/badge/ClassicPress-1.0.1-03768e.svg?style=flat-round)](https://www.classicpress.net)

###### Last updated on August 17, 2019
###### Development version 3.12.0
###### Last updated on August 29, 2019
###### Development version 3.13.0
###### requires at least WordPress 4.7.2
###### tested up to WordPress 5.2.2
###### tested up to ClassicPress 1.0.1
Expand All @@ -18,7 +18,14 @@ Almost anyone who uses the Yoast SEO plugin will agree that it is a good SEO plu

**New in this version:**

* remove Search Console submenu
* remove notice on permalinks page that warns the user of the implications of changing them
* recode hiding of the admin columns into actually removing them
* recode hiding of the seo score/readability score filters into actually removing them
* remove advanced accordion menu at bottom of SEO metabox for post- and custom post types

Credits of all the above improvements go to [Harry - @Dibbyo456](https://github.com/Dibbyo456); many thanks Harry!

<hr>

The purpose of the Hide SEO Bloat plugin, a free addon for the Yoast SEO plugin, is to clean up all those unwanted things.

Expand Down Expand Up @@ -120,6 +127,15 @@ We welcome your contributions very much! PR's will be considered and of course b

## Changelog

### 3.13.0

* release date August 29, 2019
* remove notice on permalinks page that warns the user of the implications of changing them, fixes [issue #58](https://github.com/senlin/so-clean-up-wp-seo/issues/58)
* recode hiding of the admin columns into actually removing them, fixes [issue #65](https://github.com/senlin/so-clean-up-wp-seo/issues/65)
* recode hiding of the seo score/readability score filters into actually removing them, fixes [issue #65](https://github.com/senlin/so-clean-up-wp-seo/issues/65)
* remove advanced accordion menu at bottom of SEO metabox for post- and custom post types, fixes [issue #67](https://github.com/senlin/so-clean-up-wp-seo/issues/67)


### 3.12.0

* release date August 17, 2019
Expand Down
4 changes: 2 additions & 2 deletions includes/class-so-clean-up-wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class CUWS {
* @param string $file
* @param string $version Version number.
*/
public function __construct( $file = '', $version = '3.12.0' ) {
public function __construct( $file = '', $version = '3.13.0' ) {
$this->_version = $version;
$this->_token = 'cuws';

Expand Down Expand Up @@ -513,7 +513,7 @@ function i18n() {
*
* @return CUWS $_instance
*/
public static function instance( $file = '', $version = '3.12.0' ) {
public static function instance( $file = '', $version = '3.13.0' ) {
if ( null === self::$_instance ) {
self::$_instance = new self( $file, $version );
}
Expand Down
20 changes: 18 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: hide, seo, bloat, remove, ads, cartoon, wordpress seo addon, admin columns
Requires at least: 4.7.2
Requires PHP: 5.6
Tested up to: 5.2.2
Stable tag: 3.12.0
Stable tag: 3.13.0
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.txt

Expand All @@ -17,7 +17,14 @@ Almost anyone who uses the Yoast SEO plugin will agree that it is a good SEO plu

**New in this version:**

* remove Search Console submenu
* remove notice on permalinks page that warns the user of the implications of changing them
* recode hiding of the admin columns into actually removing them
* recode hiding of the seo score/readability score filters into actually removing them
* remove advanced accordion menu at bottom of SEO metabox for post- and custom post types

Credits of all the above improvements go to [Harry - @Dibbyo456](https://github.com/Dibbyo456); many thanks Harry!

<hr>

The purpose of the Hide SEO Bloat plugin, a free addon for the Yoast SEO plugin, is to clean up all those unwanted things.

Expand Down Expand Up @@ -103,6 +110,15 @@ Please open an issue on [Github](https://github.com/senlin/so-clean-up-wp-seo/is

== Changelog ==

= 3.13.0 =

* release date August 29, 2019
* remove notice on permalinks page that warns the user of the implications of changing them, fixes [issue #58](https://github.com/senlin/so-clean-up-wp-seo/issues/58)
* recode hiding of the admin columns into actually removing them, fixes [issue #65](https://github.com/senlin/so-clean-up-wp-seo/issues/65)
* recode hiding of the seo score/readability score filters into actually removing them, fixes [issue #65](https://github.com/senlin/so-clean-up-wp-seo/issues/65)
* remove advanced accordion menu at bottom of SEO metabox for post- and custom post types, fixes [issue #67](https://github.com/senlin/so-clean-up-wp-seo/issues/67)


= 3.12.0 =

* release date August 17, 2019
Expand Down
4 changes: 2 additions & 2 deletions so-clean-up-wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Hide SEO Bloat
* Plugin URI: https://so-wp.com/plugin/hide-seo-bloat
* Description: Hide most of the bloat that the Yoast SEO plugin adds to your WordPress Dashboard
* Version: 3.12.0
* Version: 3.13.0
* Author: SO WP
* Author URI: https://so-wp.com
* License: GPL-3.0+
Expand Down Expand Up @@ -34,7 +34,7 @@
* @return object CUWS
*/
function CUWS () {
$instance = CUWS::instance( __FILE__, '3.12.0' );
$instance = CUWS::instance( __FILE__, '3.13.0' );

if ( null === $instance->settings ) {
$instance->settings = CUWS_Settings::instance( $instance );
Expand Down

0 comments on commit 780c50e

Please sign in to comment.