Version Description
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.19.0 |
Comparing to | |
See all releases |
Code changes from version 1.18 to 1.19.0
- lib/includes/class-usage.php +1 -0
- readme.txt +6 -1
- wp-backitup.php +2 -2
lib/includes/class-usage.php
CHANGED
@@ -48,6 +48,7 @@ class WPBackItUp_Usage {
|
|
48 |
add_action( 'init', array( $this, 'schedule_events' ) );
|
49 |
add_action( 'wpbackitup_opt_into_tracking', array( $this, 'optin_usage_tracking' ) );
|
50 |
add_action( 'wpbackitup_opt_out_of_tracking', array( $this, 'optout_usage_tracking' ) );
|
|
|
51 |
add_action( 'admin_notices', array( $this, 'admin_notice' ) );
|
52 |
}
|
53 |
|
48 |
add_action( 'init', array( $this, 'schedule_events' ) );
|
49 |
add_action( 'wpbackitup_opt_into_tracking', array( $this, 'optin_usage_tracking' ) );
|
50 |
add_action( 'wpbackitup_opt_out_of_tracking', array( $this, 'optout_usage_tracking' ) );
|
51 |
+
add_action( 'wpbackitup_ut_event', array( $this, 'ut_event' ),10,2 );
|
52 |
add_action( 'admin_notices', array( $this, 'admin_notice' ) );
|
53 |
}
|
54 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: backup, backups, back up, backup plugin, database backup, multisite backup
|
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 1.
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
@@ -215,6 +215,11 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
|
|
215 |
|
216 |
|
217 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
218 |
= 1.18 =
|
219 |
*Release Date - May 22, 2018
|
220 |
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 1.18
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
215 |
|
216 |
|
217 |
== Changelog ==
|
218 |
+
= 1.19 =
|
219 |
+
*Release Date - May 25, 2018
|
220 |
+
|
221 |
+
* UPDATE: Minor updates to ut actions
|
222 |
+
|
223 |
= 1.18 =
|
224 |
*Release Date - May 22, 2018
|
225 |
|
wp-backitup.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
|
7 |
* Author: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
-
* Version: 1.
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
@@ -32,7 +32,7 @@ define( 'WPBACKITUP__NAMESPACE', 'wp-backitup' );
|
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
-
define( 'WPBACKITUP__MINOR_VERSION',
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|
6 |
* Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
|
7 |
* Author: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
+
* Version: 1.19
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
+
define( 'WPBACKITUP__MINOR_VERSION', 19);
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|