Version Description
- 24/10/2022 = Changed: Responsive tab settings no longer collapse on setting disabling. ( #690 ) Fixed: Misc settings nonce bug. ( #697 )
Download this release
Release Info
Developer | raldea89 |
Plugin | Gallery – Photo Gallery – Image Gallery |
Version | 2.6.92 |
Comparing to | |
See all releases |
Code changes from version 2.6.91 to 2.6.92
- Modula.php +2 -2
- assets/js/admin/wp-modula-conditions.js +7 -9
- changelog.txt +4 -0
- includes/admin/tabs/troubleshooting-options.php +1 -1
- readme.txt +5 -2
Modula.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://wp-modula.com/
|
5 |
* Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks.
|
6 |
* Author: WPChill
|
7 |
-
* Version: 2.6.
|
8 |
* Author URI: https://www.wpchill.com/
|
9 |
* License: GPLv3 or later
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -47,7 +47,7 @@
|
|
47 |
* @since 2.0.2
|
48 |
*/
|
49 |
|
50 |
-
define( 'MODULA_LITE_VERSION' , '2.6.
|
51 |
define( 'MODULA_PATH' , plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MODULA_URL' , plugin_dir_url( __FILE__ ) );
|
53 |
defined( 'MODULA_PRO_STORE_URL' ) || define( 'MODULA_PRO_STORE_URL' , 'https://wp-modula.com' );
|
4 |
* Plugin URI: https://wp-modula.com/
|
5 |
* Description: Modula is the most powerful, user-friendly WordPress gallery plugin. Add galleries, masonry grids and more in a few clicks.
|
6 |
* Author: WPChill
|
7 |
+
* Version: 2.6.92
|
8 |
* Author URI: https://www.wpchill.com/
|
9 |
* License: GPLv3 or later
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
47 |
* @since 2.0.2
|
48 |
*/
|
49 |
|
50 |
+
define( 'MODULA_LITE_VERSION' , '2.6.92' );
|
51 |
define( 'MODULA_PATH' , plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MODULA_URL' , plugin_dir_url( __FILE__ ) );
|
53 |
defined( 'MODULA_PRO_STORE_URL' ) || define( 'MODULA_PRO_STORE_URL' , 'https://wp-modula.com' );
|
assets/js/admin/wp-modula-conditions.js
CHANGED
@@ -250,23 +250,21 @@ var modulaGalleryConditions = Backbone.Model.extend({
|
|
250 |
|
251 |
var child = jQuery('[data-container="'+item+'"]');
|
252 |
|
253 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
254 |
child.css('opacity', '1');
|
255 |
child.find('input, textarea, select, button').removeAttr('disabled');
|
256 |
child.show();
|
257 |
-
|
258 |
-
}else{
|
259 |
-
child.hide();
|
260 |
-
}
|
261 |
|
262 |
});
|
263 |
|
264 |
if( 1 == value ) {
|
265 |
-
rows.filter( '[data-container="tablet_columns"],[data-container="mobile_columns"]').setting_state( this, 'on');
|
266 |
currentRow.addClass( 'modula_accordion_open' );
|
267 |
-
}else {
|
268 |
-
rows.filter( '[data-container="tablet_columns"],[data-container="mobile_columns"]').setting_state( this, 'off');
|
269 |
-
currentRow.removeClass( 'modula_accordion_open' );
|
270 |
}
|
271 |
},
|
272 |
|
250 |
|
251 |
var child = jQuery('[data-container="'+item+'"]');
|
252 |
|
253 |
+
if ( 0 == value && currentRow.hasClass( 'modula_accordion_open' )) {
|
254 |
+
child.setting_state( this, 'off');
|
255 |
+
child.show();
|
256 |
+
}else if( 0 == value ){
|
257 |
+
child.hide();
|
258 |
+
}else{
|
259 |
child.css('opacity', '1');
|
260 |
child.find('input, textarea, select, button').removeAttr('disabled');
|
261 |
child.show();
|
262 |
+
}
|
|
|
|
|
|
|
263 |
|
264 |
});
|
265 |
|
266 |
if( 1 == value ) {
|
|
|
267 |
currentRow.addClass( 'modula_accordion_open' );
|
|
|
|
|
|
|
268 |
}
|
269 |
},
|
270 |
|
changelog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= 2.6.91 - 20/10/2022 =
|
2 |
Changed: Metabox Accordeons no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|
3 |
Fixed: Show only image size that is in effect on "Image Size" admin setting. ( [#692](https://github.com/WPChill/modula-lite/issues/692) )
|
1 |
+
= 2.6.92 - 24/10/2022 =
|
2 |
+
Changed: Responsive tab settings no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|
3 |
+
Fixed: Misc settings nonce bug. ( [#697](https://github.com/WPChill/modula-lite/issues/697) )
|
4 |
+
|
5 |
= 2.6.91 - 20/10/2022 =
|
6 |
Changed: Metabox Accordeons no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|
7 |
Fixed: Show only image size that is in effect on "Image Size" admin setting. ( [#692](https://github.com/WPChill/modula-lite/issues/692) )
|
includes/admin/tabs/troubleshooting-options.php
CHANGED
@@ -95,7 +95,7 @@ uasort( $troubleshooting_fields, array( 'Modula_Helper', 'sort_data_by_priority'
|
|
95 |
<?php
|
96 |
$nonce = wp_create_nonce( 'modula_troubleshooting_option_post' )
|
97 |
?>
|
98 |
-
<input type="hidden" name="nonce" value="
|
99 |
<table class="form-table">
|
100 |
<tbody>
|
101 |
<?php
|
95 |
<?php
|
96 |
$nonce = wp_create_nonce( 'modula_troubleshooting_option_post' )
|
97 |
?>
|
98 |
+
<input type="hidden" name="nonce" value="<?php echo $nonce; ?>" />
|
99 |
<table class="form-table">
|
100 |
<tbody>
|
101 |
<?php
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: wpchill, silkalns
|
3 |
Tags: best gallery plugin, image gallery, video gallery, free gallery, wordpress gallery plugin, best gallery plugin, masonry gallery, media gallery, portfolio gallery, simple gallery, responsive gallery, photo gallery, grid gallery, product gallery,
|
4 |
Requires at least: 5.2
|
5 |
-
Tested up to: 6.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 2.6.
|
8 |
License: GNU General Public License v3.0 or later
|
9 |
The WordPress gallery plugin that's highly customizable & you can use to impress your clients. Create beautiful image galleries in minutes.
|
10 |
|
@@ -262,6 +262,9 @@ Free support is included only with a PRO license: [Buy Modula PRO](https://wp-mo
|
|
262 |
4. Responsive galleries created with Modula
|
263 |
|
264 |
== Changelog ==
|
|
|
|
|
|
|
265 |
|
266 |
= 2.6.91 - 20/10/2022 =
|
267 |
Changed: Metabox Accordeons no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|
2 |
Contributors: wpchill, silkalns
|
3 |
Tags: best gallery plugin, image gallery, video gallery, free gallery, wordpress gallery plugin, best gallery plugin, masonry gallery, media gallery, portfolio gallery, simple gallery, responsive gallery, photo gallery, grid gallery, product gallery,
|
4 |
Requires at least: 5.2
|
5 |
+
Tested up to: 6.1
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 2.6.92
|
8 |
License: GNU General Public License v3.0 or later
|
9 |
The WordPress gallery plugin that's highly customizable & you can use to impress your clients. Create beautiful image galleries in minutes.
|
10 |
|
262 |
4. Responsive galleries created with Modula
|
263 |
|
264 |
== Changelog ==
|
265 |
+
= 2.6.92 - 24/10/2022 =
|
266 |
+
Changed: Responsive tab settings no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|
267 |
+
Fixed: Misc settings nonce bug. ( [#697](https://github.com/WPChill/modula-lite/issues/697) )
|
268 |
|
269 |
= 2.6.91 - 20/10/2022 =
|
270 |
Changed: Metabox Accordeons no longer collapse on setting disabling. ( [#690](https://github.com/WPChill/modula-lite/issues/690) )
|