Version Description
Download this release
Release Info
Developer | giucu91 |
Plugin | Gallery – Photo Gallery – Image Gallery |
Version | 2.5.5 |
Comparing to | |
See all releases |
Code changes from version 2.5.4 to 2.5.5
- Modula.php +2 -2
- changelog.txt +3 -0
- includes/class-modula.php +4 -0
- readme.txt +2 -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.5.
|
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.5.
|
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.5.5
|
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.5.5' );
|
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' );
|
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 2.5.4 - 14/09/2021 =
|
2 |
Changed: Upsells update
|
3 |
Fixed: Image cropping based on image alignment
|
1 |
+
= 2.5.5 - 04/10/2021 =
|
2 |
+
Fixed: WP Cron fatal error.
|
3 |
+
|
4 |
= 2.5.4 - 14/09/2021 =
|
5 |
Changed: Upsells update
|
6 |
Fixed: Image cropping based on image alignment
|
includes/class-modula.php
CHANGED
@@ -128,6 +128,10 @@ class Modula {
|
|
128 |
return;
|
129 |
}
|
130 |
|
|
|
|
|
|
|
|
|
131 |
new Modula_Upsells();
|
132 |
|
133 |
$upgrades = Modula_Upgrades::get_instance();
|
128 |
return;
|
129 |
}
|
130 |
|
131 |
+
if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
|
132 |
+
return;
|
133 |
+
}
|
134 |
+
|
135 |
new Modula_Upsells();
|
136 |
|
137 |
$upgrades = Modula_Upgrades::get_instance();
|
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: 5.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 2.5.
|
8 |
License: GNU General Public License v3.0 or later
|
9 |
|
10 |
The WordPress gallery plugin that's highlighy customizable & you can use to impress your clients. Create beautiful image galleries in minutes.
|
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: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 2.5.5
|
8 |
License: GNU General Public License v3.0 or later
|
9 |
|
10 |
The WordPress gallery plugin that's highlighy customizable & you can use to impress your clients. Create beautiful image galleries in minutes.
|