WP-Sweep - Version 1.0.9

Version Description

  • NEW: Support for Codeclimate
  • FIXES: Uses get_sites() on WordPress 4.6. This should fix deprecated notices.
  • FIXES: Fixes translation placeholder count. Props @pedro-mendonca.
  • FIXES: Use manage_options capability as it conflicts with Admin Menu Editor on multisite installs. Props @EusebiuOprinoiu.
Download this release

Release Info

Developer GamerZ
Plugin Icon WP-Sweep
Version 1.0.9
Comparing to
See all releases

Code changes from version 1.0.10 to 1.0.9

Files changed (2) hide show
  1. readme.txt +2 -5
  2. wp-sweep.php +5 -5
readme.txt CHANGED
@@ -3,11 +3,11 @@
3
  [![Build Status](https://travis-ci.org/lesterchan/wp-sweep.svg?branch=master)](https://travis-ci.org/lesterchan/wp-sweep) [![Code Climate](https://codeclimate.com/github/lesterchan/wp-sweep/badges/gpa.svg)](https://codeclimate.com/github/lesterchan/wp-sweep) [![Issue Count](https://codeclimate.com/github/lesterchan/wp-sweep/badges/issue_count.svg)](https://codeclimate.com/github/lesterchan/wp-sweep)
4
 
5
  Contributors: GamerZ
6
- Donate link: https://lesterchan.net/site/donation/
7
  Tags: sweep, clean, cleanup, clean up, optimize, orphan, unused, duplicated, posts, post meta, comments, comment meta, users, user meta, terms, term meta, term relationships, revisions, auto drafts, transient, database, tables, oembed
8
  Requires at least: 4.4
9
  Tested up to: 4.7
10
- Stable tag: 1.0.10
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -62,9 +62,6 @@ Following delete functions are used:
62
  I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
63
 
64
  == Changelog ==
65
- = 1.0.10 =
66
- * FIXED: Invalid plugin head 'This plugin has an invalid header.'
67
-
68
  = 1.0.9 =
69
  * NEW: Support for Codeclimate
70
  * FIXES: Uses `get_sites()` on WordPress 4.6. This should fix deprecated notices.
3
  [![Build Status](https://travis-ci.org/lesterchan/wp-sweep.svg?branch=master)](https://travis-ci.org/lesterchan/wp-sweep) [![Code Climate](https://codeclimate.com/github/lesterchan/wp-sweep/badges/gpa.svg)](https://codeclimate.com/github/lesterchan/wp-sweep) [![Issue Count](https://codeclimate.com/github/lesterchan/wp-sweep/badges/issue_count.svg)](https://codeclimate.com/github/lesterchan/wp-sweep)
4
 
5
  Contributors: GamerZ
6
+ Donate link: http://lesterchan.net/site/donation/
7
  Tags: sweep, clean, cleanup, clean up, optimize, orphan, unused, duplicated, posts, post meta, comments, comment meta, users, user meta, terms, term meta, term relationships, revisions, auto drafts, transient, database, tables, oembed
8
  Requires at least: 4.4
9
  Tested up to: 4.7
10
+ Stable tag: 1.0.9
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
62
  I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
63
 
64
  == Changelog ==
 
 
 
65
  = 1.0.9 =
66
  * NEW: Support for Codeclimate
67
  * FIXES: Uses `get_sites()` on WordPress 4.6. This should fix deprecated notices.
wp-sweep.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
  /*
3
  Plugin Name: WP-Sweep
4
- Plugin URI: https://lesterchan.net/portfolio/programming/php/
5
  Description: WP-Sweep allows you to clean up unused, orphaned and duplicated data in your WordPress. It cleans up revisions, auto drafts, unapproved comments, spam comments, trashed comments, orphan post meta, orphan comment meta, orphan user meta, orphan term relationships, unused terms, duplicated post meta, duplicated comment meta, duplicated user meta and transient options. It also optimizes your database tables.
6
- Version: 1.0.10
7
  Author: Lester 'GaMerZ' Chan
8
- Author URI: https://lesterchan.net
9
  Text Domain: wp-sweep
10
  License: GPL2
11
  */
12
 
13
  /*
14
- Copyright 2017 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -32,7 +32,7 @@ License: GPL2
32
  *
33
  * @since 1.0.0
34
  */
35
- define( 'WP_SWEEP_VERSION', '1.0.10' );
36
 
37
  /**
38
  * WP-Sweep class
1
  <?php
2
  /*
3
  Plugin Name: WP-Sweep
4
+ Plugin URI: http://lesterchan.net/portfolio/programming/php/
5
  Description: WP-Sweep allows you to clean up unused, orphaned and duplicated data in your WordPress. It cleans up revisions, auto drafts, unapproved comments, spam comments, trashed comments, orphan post meta, orphan comment meta, orphan user meta, orphan term relationships, unused terms, duplicated post meta, duplicated comment meta, duplicated user meta and transient options. It also optimizes your database tables.
6
+ Version: 1.0.9
7
  Author: Lester 'GaMerZ' Chan
8
+ Author URI: http://lesterchan.net
9
  Text Domain: wp-sweep
10
  License: GPL2
11
  */
12
 
13
  /*
14
+ Copyright 2016 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
32
  *
33
  * @since 1.0.0
34
  */
35
+ define( 'WP_SWEEP_VERSION', '1.0.9' );
36
 
37
  /**
38
  * WP-Sweep class