Version Description
- Bug Fix: Update script was failing following new release. This resolves that issue.
Download this release
Release Info
Developer | dan.rossiter |
Plugin | Document Gallery |
Version | 2.3.3 |
Comparing to | |
See all releases |
Code changes from version 2.3.2 to 2.3.3
- README.txt +4 -1
- document-gallery.php +2 -2
- inc/class-setup.php +2 -0
README.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: attachments, thumbnail, documents, gallery, MS office, pdf
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=EE5LWRLG933EN&lc=US&item_name=Document%20Gallery%20Plugin&item_number=document%2dgallery¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0.1
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -416,6 +416,9 @@ To see a list of features planned for the future as well as to propose your own
|
|
416 |
ideas for future Document Gallery development, take a look at our
|
417 |
[issue tracker](https://github.com/thenadz/document-gallery/issues).
|
418 |
|
|
|
|
|
|
|
419 |
= 2.3.2 =
|
420 |
* **Translation:** Russian and Ukrainian translations have been updated.
|
421 |
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=EE5LWRLG933EN&lc=US&item_name=Document%20Gallery%20Plugin&item_number=document%2dgallery¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0.1
|
7 |
+
Stable tag: 2.3.3
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
416 |
ideas for future Document Gallery development, take a look at our
|
417 |
[issue tracker](https://github.com/thenadz/document-gallery/issues).
|
418 |
|
419 |
+
= 2.3.3 =
|
420 |
+
* **Bug Fix:** Update script was failing following new release. This resolves that issue.
|
421 |
+
|
422 |
= 2.3.2 =
|
423 |
* **Translation:** Russian and Ukrainian translations have been updated.
|
424 |
|
document-gallery.php
CHANGED
@@ -5,14 +5,14 @@ defined('WPINC') OR exit;
|
|
5 |
Plugin Name: Document Gallery
|
6 |
Plugin URI: http://wordpress.org/extend/plugins/document-gallery/
|
7 |
Description: Display non-images (and images) in gallery format on a page or post with the [dg] shortcode.
|
8 |
-
Version: 2.3.
|
9 |
Author: Dan Rossiter
|
10 |
Author URI: http://danrossiter.org/
|
11 |
License: GPLv2
|
12 |
Text Domain: document-gallery
|
13 |
*/
|
14 |
|
15 |
-
define('DG_VERSION', '2.3.
|
16 |
|
17 |
// define helper paths & URLs
|
18 |
define('DG_BASENAME', plugin_basename(__FILE__));
|
5 |
Plugin Name: Document Gallery
|
6 |
Plugin URI: http://wordpress.org/extend/plugins/document-gallery/
|
7 |
Description: Display non-images (and images) in gallery format on a page or post with the [dg] shortcode.
|
8 |
+
Version: 2.3.3
|
9 |
Author: Dan Rossiter
|
10 |
Author URI: http://danrossiter.org/
|
11 |
License: GPLv2
|
12 |
Text Domain: document-gallery
|
13 |
*/
|
14 |
|
15 |
+
define('DG_VERSION', '2.3.3');
|
16 |
|
17 |
// define helper paths & URLs
|
18 |
define('DG_BASENAME', plugin_basename(__FILE__));
|
inc/class-setup.php
CHANGED
@@ -193,6 +193,8 @@ class DG_Setup {
|
|
193 |
*/
|
194 |
private static function twoPointThree(&$options) {
|
195 |
if (version_compare($options['version'], '2.3', '<')) {
|
|
|
|
|
196 |
unset($options['css']['last-modified']);
|
197 |
unset($options['css']['etag']);
|
198 |
unset($options['css']['version']);
|
193 |
*/
|
194 |
private static function twoPointThree(&$options) {
|
195 |
if (version_compare($options['version'], '2.3', '<')) {
|
196 |
+
include_once DG_PATH . 'inc/class-thumber.php';
|
197 |
+
|
198 |
unset($options['css']['last-modified']);
|
199 |
unset($options['css']['etag']);
|
200 |
unset($options['css']['version']);
|