Version Description
- Fix: fixed edge case autolinks issue
Download this release
Release Info
Developer | khaxan |
Plugin | SmartCrawl SEO |
Version | 2.2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.2.1 to 2.2.2.2
- changelog.txt +3 -0
- includes/tools/autolinks.php +22 -3
- languages/wpmu-dev-seo.pot +2 -2
- readme.txt +5 -1
- wpmu-dev-seo.php +2 -2
changelog.txt
CHANGED
@@ -2,7 +2,10 @@ Plugin Name: SmartCrawl SEO
|
|
2 |
|
3 |
Change Log:
|
4 |
----------------------------------------------------------------------
|
|
|
|
|
5 |
----------------------------------------------------------------------
|
|
|
6 |
|
7 |
2.2.2.1 - 2018-08-20
|
8 |
----------------------------------------------------------------------
|
2 |
|
3 |
Change Log:
|
4 |
----------------------------------------------------------------------
|
5 |
+
|
6 |
+
2.2.2.2 - 2018-08-20
|
7 |
----------------------------------------------------------------------
|
8 |
+
- Fix: fixed edge case autolinks issue
|
9 |
|
10 |
2.2.2.1 - 2018-08-20
|
11 |
----------------------------------------------------------------------
|
includes/tools/autolinks.php
CHANGED
@@ -5,6 +5,25 @@
|
|
5 |
* @package wpmu-dev-seo
|
6 |
*/
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
* @package wpmu-dev-seo
|
6 |
*/
|
7 |
|
8 |
+
class Smartcrawl_Autolinks {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Singleton instance
|
12 |
+
*
|
13 |
+
* @var Smartcrawl_Autolinks
|
14 |
+
*/
|
15 |
+
private static $_instance;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Singleton instance getter
|
19 |
+
*
|
20 |
+
* @return Smartcrawl_Autolinks
|
21 |
+
*/
|
22 |
+
public static function get() {
|
23 |
+
if ( ! self::$_instance ) {
|
24 |
+
self::$_instance = new self();
|
25 |
+
}
|
26 |
+
|
27 |
+
return self::$_instance;
|
28 |
+
}
|
29 |
+
}
|
languages/wpmu-dev-seo.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SmartCrawl package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SmartCrawl 2.2.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpmu-dev-seo\n"
|
7 |
-
"POT-Creation-Date: 2018-08-20
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the SmartCrawl package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SmartCrawl 2.2.2.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpmu-dev-seo\n"
|
7 |
+
"POT-Creation-Date: 2018-08-20 20:35:35+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Author URI: https://premium.wpmudev.org/
|
|
7 |
Author: WPMU DEV
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 4.9.8
|
10 |
-
Stable tag: 2.2.2.
|
11 |
|
12 |
The SEO checker and optimization tool that helps you rank higher and get discovered in search engines.
|
13 |
|
@@ -91,6 +91,10 @@ SmartCrawl works with any normal WP content and page builders shouldn’t be an
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
|
|
94 |
= 2.2.2.1 =
|
95 |
|
96 |
* Fix: Allow data import from Yoast 8.x
|
7 |
Author: WPMU DEV
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 4.9.8
|
10 |
+
Stable tag: 2.2.2.2
|
11 |
|
12 |
The SEO checker and optimization tool that helps you rank higher and get discovered in search engines.
|
13 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 2.2.2.2 =
|
95 |
+
|
96 |
+
* Fix: fixed edge case autolinks issue
|
97 |
+
|
98 |
= 2.2.2.1 =
|
99 |
|
100 |
* Fix: Allow data import from Yoast 8.x
|
wpmu-dev-seo.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: SmartCrawl
|
4 |
* Plugin URI: http://premium.wpmudev.org/project/wpmu-dev-seo/
|
5 |
* Description: Every SEO option that a site requires, in one easy bundle.
|
6 |
-
* Version: 2.2.2.
|
7 |
* Network: true
|
8 |
* Text Domain: wds
|
9 |
* Author: WPMU DEV
|
@@ -30,7 +30,7 @@
|
|
30 |
*/
|
31 |
|
32 |
|
33 |
-
define( 'SMARTCRAWL_VERSION', '2.2.2.
|
34 |
|
35 |
class Smartcrawl_Loader {
|
36 |
|
3 |
* Plugin Name: SmartCrawl
|
4 |
* Plugin URI: http://premium.wpmudev.org/project/wpmu-dev-seo/
|
5 |
* Description: Every SEO option that a site requires, in one easy bundle.
|
6 |
+
* Version: 2.2.2.2
|
7 |
* Network: true
|
8 |
* Text Domain: wds
|
9 |
* Author: WPMU DEV
|
30 |
*/
|
31 |
|
32 |
|
33 |
+
define( 'SMARTCRAWL_VERSION', '2.2.2.2' );
|
34 |
|
35 |
class Smartcrawl_Loader {
|
36 |
|