iThemes Sync - Version 2.1.8

Version Description

  • Bug Fix: Improved support for plugins using their own updater
Download this release

Release Info

Developer oakesjosh
Plugin Icon 128x128 iThemes Sync
Version 2.1.8
Comparing to
See all releases

Code changes from version 2.1.7 to 2.1.8

api.php CHANGED
@@ -93,7 +93,7 @@ class Ithemes_Sync_API {
93
  $this->default_verbs['get-yoast-seo-summary'] = 'Ithemes_Sync_Verb_Get_Yoast_SEO_Summary';
94
  }
95
 
96
- add_action( 'init', array( $this, 'init' ), 11 );
97
  }
98
 
99
  public function init() {
93
  $this->default_verbs['get-yoast-seo-summary'] = 'Ithemes_Sync_Verb_Get_Yoast_SEO_Summary';
94
  }
95
 
96
+ add_action( 'init', array( $this, 'init' ), 999999 );
97
  }
98
 
99
  public function init() {
history.txt CHANGED
@@ -238,4 +238,6 @@
238
  Bug Fix: Fixed an issue where a user couldn't be unsynced if already removed from the dashboard
239
  2.1.7 - 2020-08-12 - Chris Jean, Josh Oakes
240
  Enhancement: Added support for auto-updates in wordpress 5.5
241
- Enhancement: Return environment type for display in Sync dashboard
 
 
238
  Bug Fix: Fixed an issue where a user couldn't be unsynced if already removed from the dashboard
239
  2.1.7 - 2020-08-12 - Chris Jean, Josh Oakes
240
  Enhancement: Added support for auto-updates in wordpress 5.5
241
+ Enhancement: Return environment type for display in Sync dashboard
242
+ 2.1.8 - 2020-12-02 - Josh Oakes
243
+ Bug Fix: Improved support for plugins using their own updater
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.1.7
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.1.8
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.1.7\n"
6
  "Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
7
- "POT-Creation-Date: 2020-08-12 14:35:00+00:00\n"
8
  "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
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.1.8\n"
6
  "Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
7
+ "POT-Creation-Date: 2020-12-02 20:22:21+00:00\n"
8
  "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
lib/updater/images/ithemes-logo-header.png ADDED
Binary file
lib/updater/js/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden.
lib/updater/js/settings-page.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ jQuery(document).ready(
2
+ function() {
3
+ if ( jQuery( '#ithemes-updater-redirect-to-url' ).length ) {
4
+ window.location.replace( jQuery( '#ithemes-updater-redirect-to-url' ).val() );
5
+ }
6
+ }
7
+ );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: ithemes, layotte, oakesjosh
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
  Requires PHP: 5.6
6
- Tested up to: 5.5
7
- Stable tag: 2.1.7
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
10
 
@@ -87,6 +87,9 @@ Make steady, reliable income for WordPress maintenance with iThemes Sync Pro’s
87
 
88
  == Changelog ==
89
 
 
 
 
90
  = 2.1.7 =
91
  * Enhancement: Added support for auto-updates in wordpress 5.5
92
  * Enhancement: Return environment type for display in Sync dashboard
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
  Requires PHP: 5.6
6
+ Tested up to: 5.5.3
7
+ Stable tag: 2.1.8
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
10
 
87
 
88
  == Changelog ==
89
 
90
+ = 2.1.8 =
91
+ * Bug Fix: Improved support for plugins using their own updater
92
+
93
  = 2.1.7 =
94
  * Enhancement: Added support for auto-updates in wordpress 5.5
95
  * Enhancement: Return environment type for display in Sync dashboard