Version Description
- Added: Units label to Column Gutter Width and Margin Below Each Image settings
Download this release
Release Info
Developer | n7studios |
Plugin | Photo Gallery by Envira – Responsive Image Gallery for WordPress |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- envira-gallery-lite.php +2 -2
- includes/admin/metaboxes.php +2 -0
- readme.txt +3 -0
envira-gallery-lite.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Envira Gallery is best responsive WordPress gallery plugin. This is the lite version.
|
6 |
* Author: Thomas Griffin
|
7 |
* Author URI: http://thomasgriffinmedia.com
|
8 |
-
* Version: 1.3.
|
9 |
* Text Domain: envira-gallery
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -54,7 +54,7 @@ class Envira_Gallery_Lite {
|
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
-
public $version = '1.3.
|
58 |
|
59 |
/**
|
60 |
* The name of the plugin.
|
5 |
* Description: Envira Gallery is best responsive WordPress gallery plugin. This is the lite version.
|
6 |
* Author: Thomas Griffin
|
7 |
* Author URI: http://thomasgriffinmedia.com
|
8 |
+
* Version: 1.3.2
|
9 |
* Text Domain: envira-gallery
|
10 |
* Domain Path: languages
|
11 |
*
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
+
public $version = '1.3.2';
|
58 |
|
59 |
/**
|
60 |
* The name of the plugin.
|
includes/admin/metaboxes.php
CHANGED
@@ -576,6 +576,7 @@ class Envira_Gallery_Metaboxes_Lite {
|
|
576 |
</th>
|
577 |
<td>
|
578 |
<input id="envira-config-gutter" type="number" name="_envira_gallery[gutter]" value="<?php echo $this->get_config( 'gutter', $this->get_config_default( 'gutter' ) ); ?>" />
|
|
|
579 |
<p class="description"><?php _e( 'Sets the space between the columns (defaults to 10).', 'envira-gallery' ); ?></p>
|
580 |
</td>
|
581 |
</tr>
|
@@ -585,6 +586,7 @@ class Envira_Gallery_Metaboxes_Lite {
|
|
585 |
</th>
|
586 |
<td>
|
587 |
<input id="envira-config-margin" type="number" name="_envira_gallery[margin]" value="<?php echo $this->get_config( 'margin', $this->get_config_default( 'margin' ) ); ?>" />
|
|
|
588 |
<p class="description"><?php _e( 'Sets the space below each item in the gallery.', 'envira-gallery' ); ?></p>
|
589 |
</td>
|
590 |
</tr>
|
576 |
</th>
|
577 |
<td>
|
578 |
<input id="envira-config-gutter" type="number" name="_envira_gallery[gutter]" value="<?php echo $this->get_config( 'gutter', $this->get_config_default( 'gutter' ) ); ?>" />
|
579 |
+
<span class="envira-unit"><?php _e( 'px', 'envira-gallery' ); ?></span>
|
580 |
<p class="description"><?php _e( 'Sets the space between the columns (defaults to 10).', 'envira-gallery' ); ?></p>
|
581 |
</td>
|
582 |
</tr>
|
586 |
</th>
|
587 |
<td>
|
588 |
<input id="envira-config-margin" type="number" name="_envira_gallery[margin]" value="<?php echo $this->get_config( 'margin', $this->get_config_default( 'margin' ) ); ?>" />
|
589 |
+
<span class="envira-unit"><?php _e( 'px', 'envira-gallery' ); ?></span>
|
590 |
<p class="description"><?php _e( 'Sets the space below each item in the gallery.', 'envira-gallery' ); ?></p>
|
591 |
</td>
|
592 |
</tr>
|
readme.txt
CHANGED
@@ -57,6 +57,9 @@ Also, I'm an <a href="https://thomasgriffin.io" rel="me" title="WordPress Develo
|
|
57 |
|
58 |
== Changelog ==
|
59 |
|
|
|
|
|
|
|
60 |
= 1.3.1 =
|
61 |
* Fix: Force gallery ID on save, to ensure compat with WPML and duplication plugins
|
62 |
|
57 |
|
58 |
== Changelog ==
|
59 |
|
60 |
+
= 1.3.2 =
|
61 |
+
* Added: Units label to Column Gutter Width and Margin Below Each Image settings
|
62 |
+
|
63 |
= 1.3.1 =
|
64 |
* Fix: Force gallery ID on save, to ensure compat with WPML and duplication plugins
|
65 |
|