VaultPress - Version 1.8.5

Version Description

  • 7 August 2016 =
  • Delete plugin option when plugin is deleted via admin area.
  • Fix horizontal scroll bar on the fresh installation settings page at high resolutions.
Download this release

Release Info

Developer Viper007Bond
Plugin Icon 128x128 VaultPress
Version 1.8.5
Comparing to
See all releases

Code changes from version 1.8.4 to 1.8.5

Files changed (4) hide show
  1. readme.txt +4 -0
  2. styles.css +1 -1
  3. uninstall.php +13 -0
  4. vaultpress.php +2 -2
readme.txt CHANGED
@@ -51,6 +51,10 @@ A VaultPress subscription is for a single WordPress site. You can purchase addit
51
  Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
52
 
53
  == Changelog ==
 
 
 
 
54
  = 1.8.4 - 21 July 2016 =
55
  * Compatibility updates for Jetpack 4.1
56
 
51
  Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
52
 
53
  == Changelog ==
54
+ = 1.8.5 - 7 August 2016 =
55
+ * Delete plugin option when plugin is deleted via admin area.
56
+ * Fix horizontal scroll bar on the fresh installation settings page at high resolutions.
57
+
58
  = 1.8.4 - 21 July 2016 =
59
  * Compatibility updates for Jetpack 4.1
60
 
styles.css CHANGED
@@ -36,7 +36,7 @@ Helpers
36
 
37
  /* grid container */
38
  .grid {
39
- margin: 0 -1%;
40
  }
41
 
42
  .half {
36
 
37
  /* grid container */
38
  .grid {
39
+ margin: 0 0 0 -1%;
40
  }
41
 
42
  .half {
uninstall.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file runs if someone clicks the delete link next to a deactivated
4
+ * copy of the VaultPress plugin from within the WordPress admin area.
5
+ *
6
+ * @see https://developer.wordpress.org/plugins/the-basics/uninstall-methods/
7
+ */
8
+
9
+ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
10
+ exit();
11
+ }
12
+
13
+ delete_option( 'vaultpress' );
vaultpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VaultPress
4
  * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
5
  * Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">Need some help?</a>
6
- * Version: 1.8.4
7
  * Author: Automattic
8
  * Author URI: http://vaultpress.com/?utm_source=author-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
9
  * License: GPL2+
@@ -18,7 +18,7 @@ class VaultPress {
18
  var $option_name = 'vaultpress';
19
  var $auto_register_option = 'vaultpress_auto_register';
20
  var $db_version = 4;
21
- var $plugin_version = '1.8.4';
22
 
23
  function __construct() {
24
  register_activation_hook( __FILE__, array( $this, 'activate' ) );
3
  * Plugin Name: VaultPress
4
  * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
5
  * Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">Need some help?</a>
6
+ * Version: 1.8.5
7
  * Author: Automattic
8
  * Author URI: http://vaultpress.com/?utm_source=author-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
9
  * License: GPL2+
18
  var $option_name = 'vaultpress';
19
  var $auto_register_option = 'vaultpress_auto_register';
20
  var $db_version = 4;
21
+ var $plugin_version = '1.8.5';
22
 
23
  function __construct() {
24
  register_activation_hook( __FILE__, array( $this, 'activate' ) );