Version Description
- FIXED: Bug preventing normal WordPress Core updates from occurring
- FIXED: Theme and Plugin updates not properly skipping those marked for SVN updates
Download this release
Release Info
Developer | pento |
Plugin | Advanced Automatic Updates |
Version | 0.8.3 |
Comparing to | |
See all releases |
Code changes from version 0.8.2 to 0.8.3
- automatic-updater.php +4 -4
- readme.txt +5 -1
automatic-updater.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://pento.net/projects/automatic-updater-for-wordpress/
|
5 |
* Description: Automatically update your WordPress site, as soon as updates are released! Never worry about falling behing on updating again!
|
6 |
* Author: pento
|
7 |
-
* Version: 0.8.
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
@@ -242,7 +242,7 @@ class Automatic_Updater {
|
|
242 |
return;
|
243 |
|
244 |
// Check that we haven't failed to upgrade to the updated version in the past
|
245 |
-
if ( version_compare( $update->current, $this->options['retries']['core']['version'], '>=' ) && $this->options['retries']['core']['tries'] >= $this->
|
246 |
return;
|
247 |
|
248 |
$old_version = $GLOBALS['wp_version'];
|
@@ -325,7 +325,7 @@ class Automatic_Updater {
|
|
325 |
unset( $plugins[ $id ] );
|
326 |
|
327 |
// Remove any plugins that are marked for SVN update
|
328 |
-
if ( array_key_exists( $id, $options['svn']['plugins'] ) )
|
329 |
unset( $plugins[ $id ] );
|
330 |
|
331 |
// Remove any plugins that have failed to upgrade
|
@@ -418,7 +418,7 @@ class Automatic_Updater {
|
|
418 |
unset( $themes[ $id ] );
|
419 |
|
420 |
// Remove any themes that are marked for SVN update
|
421 |
-
if ( array_key_exists( $id, $options['svn']['themes'] ) )
|
422 |
unset( $themes[ $id ] );
|
423 |
|
424 |
// Remove any themes that have failed to upgrade
|
4 |
* Plugin URI: http://pento.net/projects/automatic-updater-for-wordpress/
|
5 |
* Description: Automatically update your WordPress site, as soon as updates are released! Never worry about falling behing on updating again!
|
6 |
* Author: pento
|
7 |
+
* Version: 0.8.3
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
242 |
return;
|
243 |
|
244 |
// Check that we haven't failed to upgrade to the updated version in the past
|
245 |
+
if ( version_compare( $update->current, $this->options['retries']['core']['version'], '>=' ) && $this->options['retries']['core']['tries'] >= $this->options['retries-limit'] )
|
246 |
return;
|
247 |
|
248 |
$old_version = $GLOBALS['wp_version'];
|
325 |
unset( $plugins[ $id ] );
|
326 |
|
327 |
// Remove any plugins that are marked for SVN update
|
328 |
+
if ( array_key_exists( $id, $this->options['svn']['plugins'] ) )
|
329 |
unset( $plugins[ $id ] );
|
330 |
|
331 |
// Remove any plugins that have failed to upgrade
|
418 |
unset( $themes[ $id ] );
|
419 |
|
420 |
// Remove any themes that are marked for SVN update
|
421 |
+
if ( array_key_exists( $id, $this->options['svn']['themes'] ) )
|
422 |
unset( $themes[ $id ] );
|
423 |
|
424 |
// Remove any themes that have failed to upgrade
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://pento.net/donate/
|
|
4 |
Tags: updates, core, plugins, themes, stable, nightly, svn, wordpress automatic upgrader
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 0.8.
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
@@ -43,6 +43,10 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
|
|
43 |
|
44 |
== Changelog ==
|
45 |
|
|
|
|
|
|
|
|
|
46 |
= 0.8.2 =
|
47 |
* FIXED: SVN updates of WordPress core were not being triggered
|
48 |
* FIXED: Particularly large SVN updates could cause notification email corruption
|
4 |
Tags: updates, core, plugins, themes, stable, nightly, svn, wordpress automatic upgrader
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 0.8.2
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= 0.8.3 =
|
47 |
+
* FIXED: Bug preventing normal WordPress Core updates from occurring
|
48 |
+
* FIXED: Theme and Plugin updates not properly skipping those marked for SVN updates
|
49 |
+
|
50 |
= 0.8.2 =
|
51 |
* FIXED: SVN updates of WordPress core were not being triggered
|
52 |
* FIXED: Particularly large SVN updates could cause notification email corruption
|