Migration, Backup, Staging – WPvivid - Version 0.9.10

Version Description

  • Fixed: Some icons were missing in UI.
Download this release

Release Info

Developer wpvivid
Plugin Icon 128x128 Migration, Backup, Staging – WPvivid
Version 0.9.10
Comparing to
See all releases

Code changes from version 0.9.9 to 0.9.10

admin/partials/images/Edit.png ADDED
Binary file
admin/partials/images/storage-dropbox(gray).png ADDED
Binary file
admin/partials/images/storage-dropbox.png ADDED
Binary file
admin/partials/images/storage-microsoft-onedrive(gray).png ADDED
Binary file
admin/partials/images/storage-microsoft-onedrive.png ADDED
Binary file
admin/partials/images/stroage-google-drive(gray).png ADDED
Binary file
admin/partials/images/stroage-google-drive.png ADDED
Binary file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: backup, cloud backup, automatic backup, restore, database backup, wordpres
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
  Requires PHP: 5.3
7
- Stable tag: 0.9.9
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
@@ -122,11 +122,13 @@ Please try to contact your web hosting provider for changing PHP memory limit, o
122
  Feel free to let us know how we can help using the support forum for the plugin on WordPress.org or our [contact form](https://wpvivid.com/contact-us). You can also reach us with a direct message on [Twitter](https://twitter.com/WPvividcom).
123
 
124
  == Changelog ==
 
 
125
  = 0.9.9 =
126
- Fixed a packaging error which might cause the failure of activating the plugin.
127
  = 0.9.8 =
128
  - Added support for Google Drive, Micosoft OneDrive, Dropbox cloud storage.
129
- - Fixed a bug where restoring a backup from cloud storage would fail because of failure of downloading the backup from cloud storage to localhost.
130
  - Optimized code of the plugin.
131
  = 0.9.7 =
132
  - Fixed data type errors caused by the last update. The errors would cause the failure of running of scheduled backup tasks. We highly recommend you upgrade.
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
  Requires PHP: 5.3
7
+ Stable tag: 0.9.10
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
122
  Feel free to let us know how we can help using the support forum for the plugin on WordPress.org or our [contact form](https://wpvivid.com/contact-us). You can also reach us with a direct message on [Twitter](https://twitter.com/WPvividcom).
123
 
124
  == Changelog ==
125
+ = 0.9.10 =
126
+ - Fixed: Some icons were missing in UI.
127
  = 0.9.9 =
128
+ - Fixed a packaging error which might cause the failure of activating the plugin.
129
  = 0.9.8 =
130
  - Added support for Google Drive, Micosoft OneDrive, Dropbox cloud storage.
131
+ - Fixed: Could not restore a backup from cloud storage.
132
  - Optimized code of the plugin.
133
  = 0.9.7 =
134
  - Fixed data type errors caused by the last update. The errors would cause the failure of running of scheduled backup tasks. We highly recommend you upgrade.
wpvivid-backuprestore.php CHANGED
@@ -7,7 +7,7 @@
7
  * @wordpress-plugin
8
  * Plugin Name: WP Automatic Cloud Backup by WPvivid
9
  * Description: Automatically back up WordPress to Cloud Storage (Dropbox, Amazon S3, Microsoft OneDrive, Google Drive etc), one-click restore. All free.
10
- * Version: 0.9.9
11
  * Author: wpvivid.com
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
21
  die;
22
  }
23
 
24
- define( 'WPVIVID_PLUGIN_VERSION', '0.9.9' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');
7
  * @wordpress-plugin
8
  * Plugin Name: WP Automatic Cloud Backup by WPvivid
9
  * Description: Automatically back up WordPress to Cloud Storage (Dropbox, Amazon S3, Microsoft OneDrive, Google Drive etc), one-click restore. All free.
10
+ * Version: 0.9.10
11
  * Author: wpvivid.com
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
21
  die;
22
  }
23
 
24
+ define( 'WPVIVID_PLUGIN_VERSION', '0.9.10' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');