Version Description
- Fixed small bugs, added new code structures
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 2.8.26 |
Comparing to | |
See all releases |
Code changes from version 2.8.25 to 2.8.26
- includes/frontend/rbs_gallery_class.php +6 -5
- readme.txt +7 -1
- robogallery.php +2 -2
includes/frontend/rbs_gallery_class.php
CHANGED
@@ -103,6 +103,8 @@ class roboGallery extends roboGalleryUtils{
|
|
103 |
|
104 |
public $html = '';
|
105 |
|
|
|
|
|
106 |
|
107 |
function updateCountView(){
|
108 |
if(!$this->id) return ;
|
@@ -152,6 +154,10 @@ class roboGallery extends roboGalleryUtils{
|
|
152 |
}
|
153 |
|
154 |
$this->debug = get_option( ROBO_GALLERY_PREFIX.'debugEnable', 0 );
|
|
|
|
|
|
|
|
|
155 |
}
|
156 |
|
157 |
function customCSS(){ return $this->customAssets('css'); }
|
@@ -290,11 +296,6 @@ class roboGallery extends roboGalleryUtils{
|
|
290 |
return $debugText.$cached_result;
|
291 |
}
|
292 |
|
293 |
-
|
294 |
-
|
295 |
-
//$galleryImages = get_post_meta( $this->options_id && $this->real_id ? $this->real_id : $this->id, ROBO_GALLERY_PREFIX.'galleryImages', true );;
|
296 |
-
//if( !$galleryImages || !is_array( $galleryImages ) || !count($galleryImages) || !(int)$galleryImages[0] ) return '';
|
297 |
-
|
298 |
$this->helper->setValue( 'filterContainer', '#'.$this->galleryId.'filter', 'string' );
|
299 |
$this->helper->setValue( 'loadingContainer', '#robo_gallery_loading_'.$this->galleryId, 'string' );
|
300 |
$this->helper->setValue( 'mainContainer', '#robo_gallery_main_block_'.$this->galleryId, 'string' );
|
103 |
|
104 |
public $html = '';
|
105 |
|
106 |
+
public $defaultConfig = array();
|
107 |
+
|
108 |
|
109 |
function updateCountView(){
|
110 |
if(!$this->id) return ;
|
154 |
}
|
155 |
|
156 |
$this->debug = get_option( ROBO_GALLERY_PREFIX.'debugEnable', 0 );
|
157 |
+
|
158 |
+
$this->defaultConfig['border'] = array();
|
159 |
+
$this->defaultConfig['shadow'] = array();
|
160 |
+
$this->defaultConfig['grid'] = array();
|
161 |
}
|
162 |
|
163 |
function customCSS(){ return $this->customAssets('css'); }
|
296 |
return $debugText.$cached_result;
|
297 |
}
|
298 |
|
|
|
|
|
|
|
|
|
|
|
299 |
$this->helper->setValue( 'filterContainer', '#'.$this->galleryId.'filter', 'string' );
|
300 |
$this->helper->setValue( 'loadingContainer', '#robo_gallery_loading_'.$this->galleryId, 'string' );
|
301 |
$this->helper->setValue( 'mainContainer', '#robo_gallery_main_block_'.$this->galleryId, 'string' );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://robosoft.co/robogallery
|
|
4 |
Tags: gallery, photo gallery, image gallery, wordpress gallery plugin, responsive gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -203,6 +203,9 @@ If any problem occurs, please contact us.
|
|
203 |
|
204 |
== Changelog ==
|
205 |
|
|
|
|
|
|
|
206 |
= 2.8.25 =
|
207 |
* Modification of the configuration fields, fix of the shortcode
|
208 |
|
@@ -515,6 +518,9 @@ If any problem occurs, please contact us.
|
|
515 |
|
516 |
== Upgrade Notice ==
|
517 |
|
|
|
|
|
|
|
518 |
= 2.8.25 =
|
519 |
Modification of the configuration fields, fix of the shortcode
|
520 |
|
4 |
Tags: gallery, photo gallery, image gallery, wordpress gallery plugin, responsive gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 2.8.26
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
203 |
|
204 |
== Changelog ==
|
205 |
|
206 |
+
= 2.8.26 =
|
207 |
+
* Fixed small bugs, added new code structures
|
208 |
+
|
209 |
= 2.8.25 =
|
210 |
* Modification of the configuration fields, fix of the shortcode
|
211 |
|
518 |
|
519 |
== Upgrade Notice ==
|
520 |
|
521 |
+
= 2.8.26 =
|
522 |
+
Fixed small bugs, added new code structures
|
523 |
+
|
524 |
= 2.8.25 =
|
525 |
Modification of the configuration fields, fix of the shortcode
|
526 |
|
robogallery.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Robo Gallery
|
4 |
Plugin URI: https://robosoft.co/wordpress-gallery-plugin
|
5 |
Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
6 |
-
Version: 2.8.
|
7 |
Author: RoboSoft
|
8 |
Author URI: https://robosoft.co/wordpress-gallery-plugin
|
9 |
License: GPLv3 or later
|
@@ -15,7 +15,7 @@ if(!defined('WPINC'))die;
|
|
15 |
if(!defined("ABSPATH"))exit;
|
16 |
|
17 |
define("ROBO_GALLERY", 1);
|
18 |
-
define("ROBO_GALLERY_VERSION", '2.8.
|
19 |
|
20 |
define("ROBO_GALLERY_OPTIONS", 'rbs_opt_');
|
21 |
|
3 |
Plugin Name: Robo Gallery
|
4 |
Plugin URI: https://robosoft.co/wordpress-gallery-plugin
|
5 |
Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
6 |
+
Version: 2.8.26
|
7 |
Author: RoboSoft
|
8 |
Author URI: https://robosoft.co/wordpress-gallery-plugin
|
9 |
License: GPLv3 or later
|
15 |
if(!defined("ABSPATH"))exit;
|
16 |
|
17 |
define("ROBO_GALLERY", 1);
|
18 |
+
define("ROBO_GALLERY_VERSION", '2.8.26');
|
19 |
|
20 |
define("ROBO_GALLERY_OPTIONS", 'rbs_opt_');
|
21 |
|