Version Description
= 3.0.3 = Please check changelog!
Download this release
Release Info
Developer | watchful |
Plugin | XCloner – Backup and Restore |
Version | 4.2.152 |
Comparing to | |
See all releases |
Code changes from version 4.2.151 to 4.2.152
.github/workflows/main.yml
CHANGED
@@ -11,7 +11,7 @@ jobs:
|
|
11 |
- uses: actions/checkout@master
|
12 |
- name: Build
|
13 |
run: |
|
14 |
-
npm install
|
15 |
npm run build
|
16 |
- name: WordPress Plugin Deploy
|
17 |
uses: 10up/action-wordpress-plugin-deploy@master
|
11 |
- uses: actions/checkout@master
|
12 |
- name: Build
|
13 |
run: |
|
14 |
+
npm install --only=prod
|
15 |
npm run build
|
16 |
- name: WordPress Plugin Deploy
|
17 |
uses: 10up/action-wordpress-plugin-deploy@master
|
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: backup, database backup, cloud backup, WordPress backup, WordPress migrati
|
|
5 |
Requires at least: 3.0.1
|
6 |
Requires PHP: 7.1
|
7 |
Tested up to: 5.5
|
8 |
-
Stable tag: 4.2.
|
9 |
|
10 |
XCloner is a backup plugin that allows you to safely back up and restore your WordPress sites. You can send site backups to SFTP, Dropbox, Amazon, Google Drive, Backblaze and other locations.
|
11 |
|
5 |
Requires at least: 3.0.1
|
6 |
Requires PHP: 7.1
|
7 |
Tested up to: 5.5
|
8 |
+
Stable tag: 4.2.152
|
9 |
|
10 |
XCloner is a backup plugin that allows you to safely back up and restore your WordPress sites. You can send site backups to SFTP, Dropbox, Amazon, Google Drive, Backblaze and other locations.
|
11 |
|
admin/partials/xcloner_remote_storage_page.php
CHANGED
@@ -497,10 +497,10 @@ $common_cleanup_html = ob_get_contents();
|
|
497 |
</div>
|
498 |
<div class="row">
|
499 |
<div class="col s12 m3 label">
|
500 |
-
<label for="aws_region"><?php echo __("S3 Region", 'xcloner-backup-and-restore') ?></label>
|
501 |
</div>
|
502 |
<div class=" col s12 m6">
|
503 |
-
<input placeholder="<?php echo __("Custom
|
504 |
id="aws_region" type="text" name="xcloner_aws_region" class="validate"
|
505 |
value="<?php echo get_option("xcloner_aws_region") ?>" autocomplete="off">
|
506 |
</div>
|
497 |
</div>
|
498 |
<div class="row">
|
499 |
<div class="col s12 m3 label">
|
500 |
+
<label for="aws_region"><?php echo __("S3 Custom Region", 'xcloner-backup-and-restore') ?></label>
|
501 |
</div>
|
502 |
<div class=" col s12 m6">
|
503 |
+
<input placeholder="<?php echo __("S3 Custom Region, ex: af-south-1", 'xcloner-backup-and-restore') ?>"
|
504 |
id="aws_region" type="text" name="xcloner_aws_region" class="validate"
|
505 |
value="<?php echo get_option("xcloner_aws_region") ?>" autocomplete="off">
|
506 |
</div>
|
package.json
CHANGED
@@ -8,7 +8,8 @@
|
|
8 |
"lib": "lib"
|
9 |
},
|
10 |
"scripts": {
|
11 |
-
"build": "
|
|
|
12 |
"start": "webpack --config webpack.dev.js --watch --info-verbosity verbose",
|
13 |
"test": "echo \"Error: no test specified\" && exit 1"
|
14 |
},
|
8 |
"lib": "lib"
|
9 |
},
|
10 |
"scripts": {
|
11 |
+
"build": "echo \"Error: no build specified\"",
|
12 |
+
"build-prod": "webpack --config webpack.prod.js",
|
13 |
"start": "webpack --config webpack.dev.js --watch --info-verbosity verbose",
|
14 |
"test": "echo \"Error: no test specified\" && exit 1"
|
15 |
},
|
vendor/watchfulli/xcloner-core/src/Xcloner_Remote_Storage.php
CHANGED
@@ -201,12 +201,17 @@ class Xcloner_Remote_Storage
|
|
201 |
'eu-west-1' => 'EU (Ireland)',
|
202 |
'eu-central-1' => 'EU (Frankfurt)',
|
203 |
'eu-west-2' => 'EU (London)',
|
|
|
|
|
|
|
204 |
'ap-northeast-1' => 'Asia Pacific (Tokyo)',
|
205 |
'ap-northeast-2' => 'Asia Pacific (Seoul)',
|
206 |
'ap-southeast-1' => 'Asia Pacific (Singapore)',
|
207 |
'ap-southeast-2' => 'Asia Pacific (Sydney)',
|
208 |
'ap-south-1' => 'Asia Pacific (Mumbai)',
|
209 |
-
'sa-east-1' => 'South America (São Paulo)'
|
|
|
|
|
210 |
);
|
211 |
|
212 |
private $xcloner_sanitization;
|
201 |
'eu-west-1' => 'EU (Ireland)',
|
202 |
'eu-central-1' => 'EU (Frankfurt)',
|
203 |
'eu-west-2' => 'EU (London)',
|
204 |
+
'eu-west-2' => 'EU (Paris)',
|
205 |
+
'eu-south-1' => 'EU (Milan)',
|
206 |
+
'eu-north-1' => 'EU (Stockholm)',
|
207 |
'ap-northeast-1' => 'Asia Pacific (Tokyo)',
|
208 |
'ap-northeast-2' => 'Asia Pacific (Seoul)',
|
209 |
'ap-southeast-1' => 'Asia Pacific (Singapore)',
|
210 |
'ap-southeast-2' => 'Asia Pacific (Sydney)',
|
211 |
'ap-south-1' => 'Asia Pacific (Mumbai)',
|
212 |
+
'sa-east-1' => 'South America (São Paulo)',
|
213 |
+
'af-south-1' => 'Africa (Cape Town)',
|
214 |
+
'me-south-1' => 'Middle East (Bahrain)'
|
215 |
);
|
216 |
|
217 |
private $xcloner_sanitization;
|
xcloner.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: XCloner - Site Backup and Restore
|
16 |
* Plugin URI: https://xcloner.com/
|
17 |
* Description: XCloner is a tool that will help you manage your website backups, generate/restore/move so your website will be always secured! With XCloner you will be able to clone your site to any other location with just a few clicks, as well as transfer the backup archives to remote FTP, SFTP, DropBox, Amazon S3, Google Drive, WebDAV, Backblaze, Azure accounts.
|
18 |
-
* Version: 4.2.
|
19 |
* Author: watchful
|
20 |
* Author URI: https://watchful.net/
|
21 |
* License: GPL-2.0+
|
15 |
* Plugin Name: XCloner - Site Backup and Restore
|
16 |
* Plugin URI: https://xcloner.com/
|
17 |
* Description: XCloner is a tool that will help you manage your website backups, generate/restore/move so your website will be always secured! With XCloner you will be able to clone your site to any other location with just a few clicks, as well as transfer the backup archives to remote FTP, SFTP, DropBox, Amazon S3, Google Drive, WebDAV, Backblaze, Azure accounts.
|
18 |
+
* Version: 4.2.152
|
19 |
* Author: watchful
|
20 |
* Author URI: https://watchful.net/
|
21 |
* License: GPL-2.0+
|