SiteGround Migrator - Version 2.0.1

Version Description

Download this release

Release Info

Developer ignatggeorgiev
Plugin Icon 128x128 SiteGround Migrator
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

README.txt CHANGED
@@ -46,6 +46,11 @@ In version 1.0.13 we've added WP-CLI command for migrations.
46
 
47
  == Changelog ==
48
 
 
 
 
 
 
49
  = Version 2.0.0 =
50
  Release Date: July 28th, 2022
51
 
46
 
47
  == Changelog ==
48
 
49
+ = Version 2.0.1 =
50
+ Release Date: Sept 29th, 2022
51
+
52
+ * File Transfer Improvements
53
+
54
  = Version 2.0.0 =
55
  Release Date: July 28th, 2022
56
 
core/Files_Service/Files_Service.php CHANGED
@@ -188,7 +188,7 @@ class Files_Service {
188
  // Fallback, if zip extension is unavailable.
189
  if ( ! class_exists( 'ZipArchive' ) ) {
190
  // Init the PharData.
191
- $phar = new PharData( $archive_filename );
192
 
193
  // Create archive from directory.
194
  $phar->buildFromDirectory( $source_path );
188
  // Fallback, if zip extension is unavailable.
189
  if ( ! class_exists( 'ZipArchive' ) ) {
190
  // Init the PharData.
191
+ $phar = new \PharData( $archive_filename );
192
 
193
  // Create archive from directory.
194
  $phar->buildFromDirectory( $source_path );
siteground-migrator.php CHANGED
@@ -24,7 +24,7 @@ use ShuttleExport\Exporter;
24
  * Plugin Name: SiteGround Migrator
25
  * Plugin URI: http://siteground.com
26
  * Description: This plugin is designed to migrate your WordPress site to SiteGround
27
- * Version: 2.0.0
28
  * Author: SiteGround
29
  * Author URI: https://www.siteground.com
30
  * License: GPL-2.0+
@@ -40,7 +40,7 @@ if ( ! defined( 'WPINC' ) ) {
40
 
41
  // Define version constant.
42
  if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
43
- define( __NAMESPACE__ . '\VERSION', '2.0.0' );
44
  }
45
 
46
  // Define slug constant.
24
  * Plugin Name: SiteGround Migrator
25
  * Plugin URI: http://siteground.com
26
  * Description: This plugin is designed to migrate your WordPress site to SiteGround
27
+ * Version: 2.0.1
28
  * Author: SiteGround
29
  * Author URI: https://www.siteground.com
30
  * License: GPL-2.0+
40
 
41
  // Define version constant.
42
  if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
43
+ define( __NAMESPACE__ . '\VERSION', '2.0.1' );
44
  }
45
 
46
  // Define slug constant.