iThemes Sync - Version 2.0.12

Version Description

  • Enhancement: Add check for Yoast SEO Premium plugin for Yoast SEO functionality
Download this release

Release Info

Developer layotte
Plugin Icon 128x128 iThemes Sync
Version 2.0.12
Comparing to
See all releases

Code changes from version 2.0.11 to 2.0.12

Files changed (5) hide show
  1. api.php +1 -1
  2. init.php +1 -1
  3. lang/ithemes-sync.pot +3 -3
  4. readme.txt +4 -1
  5. verbs/get-posts.php +1 -1
api.php CHANGED
@@ -88,7 +88,7 @@ class Ithemes_Sync_API {
88
  }
89
 
90
  // Yoast SEO Verbs
91
- if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) ) {
92
  $this->default_verbs['get-yoast-seo-summary'] = 'Ithemes_Sync_Verb_Get_Yoast_SEO_Summary';
93
  }
94
 
88
  }
89
 
90
  // Yoast SEO Verbs
91
+ if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' ) ) {
92
  $this->default_verbs['get-yoast-seo-summary'] = 'Ithemes_Sync_Verb_Get_Yoast_SEO_Summary';
93
  }
94
 
init.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: iThemes Sync
4
  Plugin URI: http://ithemes.com/sync
5
  Description: Manage updates to your WordPress sites easily in one place.
6
  Author: iThemes
7
- Version: 2.0.11
8
  Author URI: http://ithemes.com/
9
  Domain Path: /lang/
10
  iThemes Package: ithemes-sync
4
  Plugin URI: http://ithemes.com/sync
5
  Description: Manage updates to your WordPress sites easily in one place.
6
  Author: iThemes
7
+ Version: 2.0.12
8
  Author URI: http://ithemes.com/
9
  Domain Path: /lang/
10
  iThemes Package: ithemes-sync
lang/ithemes-sync.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the iThemes Sync package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: iThemes Sync 2.0.11\n"
6
  "Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
7
- "POT-Creation-Date: 2018-10-04 14:52:21+00:00\n"
8
  "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -35,7 +35,7 @@ msgstr ""
35
  msgid "iThemes Sync is now hidden from your user again."
36
  msgstr ""
37
 
38
- #. #-#-#-#-# ithemes-sync.pot (iThemes Sync 2.0.11) #-#-#-#-#
39
  #. Plugin Name of the plugin/theme
40
  #: admin.php:169 admin.php:175 settings-page.php:268
41
  msgid "iThemes Sync"
2
  # This file is distributed under the same license as the iThemes Sync package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: iThemes Sync 2.0.12\n"
6
  "Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
7
+ "POT-Creation-Date: 2018-10-24 19:39:21+00:00\n"
8
  "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
35
  msgid "iThemes Sync is now hidden from your user again."
36
  msgstr ""
37
 
38
+ #. #-#-#-#-# ithemes-sync.pot (iThemes Sync 2.0.12) #-#-#-#-#
39
  #. Plugin Name of the plugin/theme
40
  #: admin.php:169 admin.php:175 settings-page.php:268
41
  msgid "iThemes Sync"
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ithemes, layotte, blepoxp
3
  Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
4
  Requires at least: 4.5
5
  Tested up to: 4.10
6
- Stable tag: 2.0.11
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
9
 
@@ -86,6 +86,9 @@ Make steady, reliable income for WordPress maintenance with iThemes Sync Pro’s
86
 
87
  == Changelog ==
88
 
 
 
 
89
  = 2.0.11 =
90
  * Enhancement: Updating Sync's Whitelist IP
91
 
3
  Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
4
  Requires at least: 4.5
5
  Tested up to: 4.10
6
+ Stable tag: 2.0.12
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
9
 
86
 
87
  == Changelog ==
88
 
89
+ = 2.0.12 =
90
+ * Enhancement: Add check for Yoast SEO Premium plugin for Yoast SEO functionality
91
+
92
  = 2.0.11 =
93
  * Enhancement: Updating Sync's Whitelist IP
94
 
verbs/get-posts.php CHANGED
@@ -41,7 +41,7 @@ class Ithemes_Sync_Verb_Get_Posts extends Ithemes_Sync_Verb {
41
  }
42
 
43
  // Yoast SEO Verbs
44
- if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) ) {
45
  $post->yoast_seo = $this->add_yoast_seo_details( $post->ID );
46
  }
47
 
41
  }
42
 
43
  // Yoast SEO Verbs
44
+ if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' ) ) {
45
  $post->yoast_seo = $this->add_yoast_seo_details( $post->ID );
46
  }
47