Version Description
- 12/31/2012 =
- Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods. Note that Google Drive users may need to re-authenticate - please check that your backups are working.
Download this release
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.5
- methods/googledrive.php +3 -3
- readme.txt +4 -4
- updraftplus.php +2 -2
methods/googledrive.php
CHANGED
@@ -8,11 +8,11 @@ class UpdraftPlus_BackupModule_googledrive {
|
|
8 |
function action_auth() {
|
9 |
if ( isset( $_GET['state'] ) ) {
|
10 |
if ( $_GET['state'] == 'token' )
|
11 |
-
|
12 |
elseif ( $_GET['state'] == 'revoke' )
|
13 |
-
|
14 |
} elseif (isset($_GET['updraftplus_googleauth'])) {
|
15 |
-
|
16 |
}
|
17 |
}
|
18 |
|
8 |
function action_auth() {
|
9 |
if ( isset( $_GET['state'] ) ) {
|
10 |
if ( $_GET['state'] == 'token' )
|
11 |
+
self::gdrive_auth_token();
|
12 |
elseif ( $_GET['state'] == 'revoke' )
|
13 |
+
self::gdrive_auth_revoke();
|
14 |
} elseif (isset($_GET['updraftplus_googleauth'])) {
|
15 |
+
self::gdrive_auth_request();
|
16 |
}
|
17 |
}
|
18 |
|
readme.txt
CHANGED
@@ -3,12 +3,12 @@ Contributors: David Anderson
|
|
3 |
Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.5
|
6 |
-
Stable tag: 1.1.
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
== Upgrade Notice ==
|
11 |
-
Big code re-organisation to make programming new cloud methods easier
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -87,8 +87,8 @@ No, there's no warranty or guarantee, etc. It's completely up to you to verify t
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
-
= 1.1.
|
91 |
-
* Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods
|
92 |
|
93 |
= 1.0.16 - 12/24/2012 =
|
94 |
* Improve race detection and clean up already-created files when detected
|
3 |
Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.5
|
6 |
+
Stable tag: 1.1.5
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
== Upgrade Notice ==
|
11 |
+
Big code re-organisation to make programming new cloud methods easier. Note that Google Drive users may need to re-authenticate - please check.
|
12 |
|
13 |
== Description ==
|
14 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 1.1.5 - 12/31/2012 =
|
91 |
+
* Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods. Note that Google Drive users may need to re-authenticate - please check that your backups are working.
|
92 |
|
93 |
= 1.0.16 - 12/24/2012 =
|
94 |
* Improve race detection and clean up already-created files when detected
|
updraftplus.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
|
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed, on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
-
Version: 1.1.
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
License: GPLv3 or later
|
10 |
Author URI: http://wordshell.net
|
@@ -56,7 +56,7 @@ define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE','upgrade,cache,updraft,index.php');
|
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
-
var $version = '1.1.
|
60 |
|
61 |
// Choices will be shown in the admin menu in the order used here
|
62 |
var $backup_methods = array (
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed, on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
+
Version: 1.1.5
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
License: GPLv3 or later
|
10 |
Author URI: http://wordshell.net
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
+
var $version = '1.1.5';
|
60 |
|
61 |
// Choices will be shown in the admin menu in the order used here
|
62 |
var $backup_methods = array (
|