Version Description
- Update to read me, no feature updates unfortunately
Download this release
Release Info
Developer | jepsonrae |
Plugin | Resize Image After Upload |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- readme.txt +9 -11
- resize-image-after-upload.php +3 -3
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Resize Image After Upload ===
|
2 |
-
Contributors: jepsonrae
|
3 |
-
Donate link: http://www.jepsonrae.com
|
4 |
Tags: image, plugin, resize, upload
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.4.2
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -34,17 +34,15 @@ The plugin uses a class originally from Jacob Wyke (www.redvodkajelly.com) and i
|
|
34 |
== Frequently Asked Questions ==
|
35 |
|
36 |
Q. Why not reduce images in height?
|
37 |
-
A. The reason I wrote the plugin was to stop breaking the layout with
|
38 |
-
images that are to large. Height is not always an issue. Maybe in
|
39 |
-
future this option will be added.
|
40 |
|
41 |
Q. Does it keep my EXIF data?
|
42 |
-
A. No. Although it is programmatically possible to extract that data
|
43 |
-
first and put it somewhere in the metadata, which is not implemented
|
44 |
-
off course, but a possibility, the data is lost in the process of
|
45 |
-
resizing.
|
46 |
|
47 |
== Changelog ==
|
48 |
|
49 |
-
= 1.0 =
|
|
|
|
|
|
|
50 |
* Created initial plugin.
|
1 |
=== Resize Image After Upload ===
|
2 |
+
Contributors: jepsonrae
|
3 |
+
Donate link: http://www.jepsonrae.com/?utm_medium=plugins&utm_campaign=referrals&utm_source=wp-resize-image-after-upload
|
4 |
Tags: image, plugin, resize, upload
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.4.2
|
7 |
+
Stable tag: 1.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
34 |
== Frequently Asked Questions ==
|
35 |
|
36 |
Q. Why not reduce images in height?
|
37 |
+
A. The reason I wrote the plugin was to stop breaking the layout with images that are to large. Height is not always an issue. Maybe in future this option will be added.
|
|
|
|
|
38 |
|
39 |
Q. Does it keep my EXIF data?
|
40 |
+
A. No. Although it is programmatically possible to extract that data first and put it somewhere in the metadata, which is not currently implemented, but a possibility for future releases.
|
|
|
|
|
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
44 |
+
= 1.0.1 =
|
45 |
+
* Update to read me, no feature updates unfortunately
|
46 |
+
|
47 |
+
= 1.0.0 =
|
48 |
* Created initial plugin.
|
resize-image-after-upload.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Resize Image After Upload
|
4 |
-
Plugin URI: http://www.jepsonrae.com
|
5 |
Description: This plugin resizes uploaded images to a given width after uploading, discarding the original uploaded file in the process.
|
6 |
Author: Jepson+Rae
|
7 |
-
Version: 1.0.
|
8 |
-
Author URI: http://www.jepsonrae.com
|
9 |
|
10 |
|
11 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Resize Image After Upload
|
4 |
+
Plugin URI: http://www.jepsonrae.com/?utm_medium=plugins&utm_campaign=referrals&utm_source=wp-resize-image-after-upload
|
5 |
Description: This plugin resizes uploaded images to a given width after uploading, discarding the original uploaded file in the process.
|
6 |
Author: Jepson+Rae
|
7 |
+
Version: 1.0.1
|
8 |
+
Author URI: http://www.jepsonrae.com/?utm_medium=plugins&utm_campaign=referrals&utm_source=wp-resize-image-after-upload
|
9 |
|
10 |
|
11 |
|