Version Description
Download this release
Release Info
Developer | chrisbliss18 |
Plugin | Easy Theme and Plugin Upgrades |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- history.txt +2 -0
- init.php +2 -2
- modify-installer.php +1 -1
- readme.txt +3 -2
history.txt
CHANGED
@@ -2,3 +2,5 @@
|
|
2 |
Release-ready
|
3 |
1.0.1 - 2011-09-28 - Chris Jean
|
4 |
Fixed an issue with running upgrades on multisite networks
|
|
|
|
2 |
Release-ready
|
3 |
1.0.1 - 2011-09-28 - Chris Jean
|
4 |
Fixed an issue with running upgrades on multisite networks
|
5 |
+
1.0.2 - 2013-08-20 - Chris Jean
|
6 |
+
Removed a stray <i> tag in the Install Plugins screen that caused problems with installing plugins on WPEngine sites.
|
init.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Easy Theme and Plugin Upgrades
|
5 |
-
Plugin URI: http://
|
6 |
Description: This plugin allows for installed themes to be upgraded by using the Appearance > Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
|
7 |
Author: Chris Jean
|
8 |
-
Version: 1.0.
|
9 |
Author URI: http://ithemes.com/
|
10 |
*/
|
11 |
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Easy Theme and Plugin Upgrades
|
5 |
+
Plugin URI: http://wordpress.org/extend/plugins/easy-theme-and-plugin-upgrades/
|
6 |
Description: This plugin allows for installed themes to be upgraded by using the Appearance > Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
|
7 |
Author: Chris Jean
|
8 |
+
Version: 1.0.2
|
9 |
Author URI: http://ithemes.com/
|
10 |
*/
|
11 |
|
modify-installer.php
CHANGED
@@ -28,7 +28,7 @@ if ( ! class_exists( 'ETUModifyInstaller' ) ) {
|
|
28 |
$text = "<div style='width:600px;'>\n";
|
29 |
$text .= "<p><i>By default, the installer will not overwrite an existing {$this->_type}. Change the following option to \"Yes\" to allow this installer to perform upgrades as well.</i></p>";
|
30 |
$text .= "<p>Upgrade existing {$this->_type}? <select name='upgrade_existing'><option value=''>No</option><option value='yes'>Yes</option></select></p>\n";
|
31 |
-
$text .= "<
|
32 |
$text .= "<ol>\n";
|
33 |
$text .= "<li>A backup zip of the existing {$this->_type} will be created and added to the <a href='" . admin_url( 'upload.php' ) . "'>Media Library</a>.</li>\n";
|
34 |
$text .= "<li>If the selected {$this->_type} is active, the site will display a 'Site being updated' message until the upgrade has finished. This typically lasts a few seconds at most.</li>\n";
|
28 |
$text = "<div style='width:600px;'>\n";
|
29 |
$text .= "<p><i>By default, the installer will not overwrite an existing {$this->_type}. Change the following option to \"Yes\" to allow this installer to perform upgrades as well.</i></p>";
|
30 |
$text .= "<p>Upgrade existing {$this->_type}? <select name='upgrade_existing'><option value=''>No</option><option value='yes'>Yes</option></select></p>\n";
|
31 |
+
$text .= "<p>If a {$this->_type} is upgraded, the following process will be used:</p>\n";
|
32 |
$text .= "<ol>\n";
|
33 |
$text .= "<li>A backup zip of the existing {$this->_type} will be created and added to the <a href='" . admin_url( 'upload.php' ) . "'>Media Library</a>.</li>\n";
|
34 |
$text .= "<li>If the selected {$this->_type} is active, the site will display a 'Site being updated' message until the upgrade has finished. This typically lasts a few seconds at most.</li>\n";
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: chrisbliss18
|
3 |
Tags: upload, plugins, themes, upgrade
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 1.0.
|
7 |
|
8 |
This plugin allows for installed themes to be upgraded by using the Appearance Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
|
9 |
|
@@ -46,3 +46,4 @@ __Easy Theme and Plugin Upgrades__ was created to make the life of WordPress use
|
|
46 |
|
47 |
* 1.0.0 - 2011-07-06 - Initial release version
|
48 |
* 1.0.1 - 2011-09-28 - Fixed an issue with the "The site is being updated and will be back in a few minutes" message showing on the frontend of the site for a few minutes after an upgrade. This only happened on multisite networks.
|
|
2 |
Contributors: chrisbliss18
|
3 |
Tags: upload, plugins, themes, upgrade
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 3.6
|
6 |
+
Stable tag: 1.0.2
|
7 |
|
8 |
This plugin allows for installed themes to be upgraded by using the Appearance Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
|
9 |
|
46 |
|
47 |
* 1.0.0 - 2011-07-06 - Initial release version
|
48 |
* 1.0.1 - 2011-09-28 - Fixed an issue with the "The site is being updated and will be back in a few minutes" message showing on the frontend of the site for a few minutes after an upgrade. This only happened on multisite networks.
|
49 |
+
* 1.0.2 - 2013-08-20 - Removed a stray <i> tag in the Install Plugins screen that caused problems with installing plugins on WPEngine sites.
|