Version Description
Download this release
Release Info
| Developer | wp_media |
| Plugin | |
| Version | 2.0.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.1 to 2.0.2
- readme.txt +4 -0
- upload-max-file-size.php +2 -2
- upload_max_file_size.php +11 -0
readme.txt
CHANGED
|
@@ -55,6 +55,10 @@ Yes, it works with all servers. But, please know that server adjusted limits can
|
|
| 55 |
|
| 56 |
== Changelog ==
|
| 57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
= v2.0.1 =
|
| 59 |
* 2019/11/13
|
| 60 |
* Regression fix: Avoid auto-deactivation after upgrading to 2.0.
|
| 55 |
|
| 56 |
== Changelog ==
|
| 57 |
|
| 58 |
+
= v2.0.2 =
|
| 59 |
+
* 2019/11/13
|
| 60 |
+
* Fix: The plugin does not have a valid header.
|
| 61 |
+
|
| 62 |
= v2.0.1 =
|
| 63 |
* 2019/11/13
|
| 64 |
* Regression fix: Avoid auto-deactivation after upgrading to 2.0.
|
upload-max-file-size.php
CHANGED
|
@@ -5,14 +5,14 @@
|
|
| 5 |
* Author: Imagify
|
| 6 |
* Author URI: https://wordpress.org/plugins/imagify/
|
| 7 |
* Plugin URI: https://wordpress.org/plugins/upload-max-file-size/
|
| 8 |
-
* Version: 2.0.
|
| 9 |
* License: GPL2
|
| 10 |
* Text Domain: upload-max-file-size
|
| 11 |
*/
|
| 12 |
|
| 13 |
namespace UMFS;
|
| 14 |
|
| 15 |
-
define( 'UMFS_VERSION', '2.0.
|
| 16 |
define( 'UMFS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
| 17 |
define( 'UMFS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 18 |
|
| 5 |
* Author: Imagify
|
| 6 |
* Author URI: https://wordpress.org/plugins/imagify/
|
| 7 |
* Plugin URI: https://wordpress.org/plugins/upload-max-file-size/
|
| 8 |
+
* Version: 2.0.2
|
| 9 |
* License: GPL2
|
| 10 |
* Text Domain: upload-max-file-size
|
| 11 |
*/
|
| 12 |
|
| 13 |
namespace UMFS;
|
| 14 |
|
| 15 |
+
define( 'UMFS_VERSION', '2.0.2' );
|
| 16 |
define( 'UMFS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
| 17 |
define( 'UMFS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 18 |
|
upload_max_file_size.php
CHANGED
|
@@ -1,3 +1,14 @@
|
|
| 1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
// Avoid auto-deactivation after upgrading to 2.0.
|
| 3 |
require_once plugin_dir_path( __FILE__ ) . 'upload-max-file-size.php';
|
| 1 |
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Plugin Name: Increase Maximum Upload File Size
|
| 4 |
+
* Description: Increase maximum upload file size with one click.
|
| 5 |
+
* Author: Imagify
|
| 6 |
+
* Author URI: https://wordpress.org/plugins/imagify/
|
| 7 |
+
* Plugin URI: https://wordpress.org/plugins/upload-max-file-size/
|
| 8 |
+
* Version: 2.0.2
|
| 9 |
+
* License: GPL2
|
| 10 |
+
* Text Domain: upload-max-file-size
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
// Avoid auto-deactivation after upgrading to 2.0.
|
| 14 |
require_once plugin_dir_path( __FILE__ ) . 'upload-max-file-size.php';
|
