Gallery – Photo Gallery and Images Gallery - Version 2.6.7

Version Description

  • Code fixes and optimization of some functionality implementation
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 2.6.7
Comparing to
See all releases

Code changes from version 2.6.6 to 2.6.7

includes/frontend/rbs_gallery_class.php CHANGED
@@ -1,14 +1,14 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 2.5.2
5
  * By Robosoft
6
  *
7
  * Contact: http://robosoft.co
8
- * Created: 2015
9
  * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
  *
11
- * Copyright (c) 2014-2016, Robosoft. All rights reserved.
12
  * Available only in http://robosoft.co/robogallery
13
  */
14
 
@@ -607,7 +607,8 @@ class roboGallery extends roboGalleryUtils{
607
 
608
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchEnable', true ) ){
609
  $retHtml .= '<div class="rbs_search_wrap">';
610
- $retHtml .= '<input type="text" class="rbs-search" placeholder="'.get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchLabel', true ).'">';
 
611
  $retHtml .= '</div>';
612
  $this->helper->setValue( 'search', '#'.$this->galleryId.'filter .rbs-search' );
613
  $this->helper->setValue( 'searchTarget', '.rbs-img-image' );
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 2.6.6
5
  * By Robosoft
6
  *
7
  * Contact: http://robosoft.co
8
+ * Created: 2017
9
  * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
  *
11
+ * Copyright (c) 2014-2017, Robosoft. All rights reserved.
12
  * Available only in http://robosoft.co/robogallery
13
  */
14
 
607
 
608
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchEnable', true ) ){
609
  $retHtml .= '<div class="rbs_search_wrap">';
610
+ $searchLabel = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchLabel', true );
611
+ $retHtml .= '<input type="text" class="rbs-search" placeholder="'.$searchLabel.'">';
612
  $retHtml .= '</div>';
613
  $this->helper->setValue( 'search', '#'.$this->galleryId.'filter .rbs-search' );
614
  $this->helper->setValue( 'searchTarget', '.rbs-img-image' );
includes/rbs_gallery_settings.php CHANGED
@@ -189,6 +189,4 @@ wp_enqueue_style ( 'robosoft-gallery-about', ROBO_GALLERY_URL.'css/admin/about.
189
 
190
  </form>
191
  </div>
192
- <?php
193
- echo '<div class="rbs_about_string2">Copyright &copy; 2014 - 2016 <a href="http://robosoft.co/robogallery">RoboSoft</a> '.__('All Rights Reserved', 'rbs_gallery').'.</div>
194
- ';
189
 
190
  </form>
191
  </div>
192
+ <div class="rbs_about_string2">Copyright &copy; 2014 - 2017 <a href="http://robosoft.co/robogallery">RoboSoft</a> All Rights Reserved</div>
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://robosoft.co/robogallery
4
  Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.7
7
- Stable tag: 2.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -254,6 +254,9 @@ If any problem occurs, please contact us.
254
 
255
  == Changelog ==
256
 
 
 
 
257
  = 2.6.6 =
258
  * Updated hover mode for gallery thumbnails on mobile devices
259
 
@@ -355,6 +358,9 @@ If any problem occurs, please contact us.
355
 
356
  == Upgrade Notice ==
357
 
 
 
 
358
  = 2.6.6 =
359
  Updated hover mode for gallery thumbnails on mobile devices
360
 
4
  Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.7
7
+ Stable tag: 2.6.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
254
 
255
  == Changelog ==
256
 
257
+ = 2.6.7 =
258
+ * Code fixes and optimization of some functionality implementation
259
+
260
  = 2.6.6 =
261
  * Updated hover mode for gallery thumbnails on mobile devices
262
 
358
 
359
  == Upgrade Notice ==
360
 
361
+ = 2.6.7 =
362
+ Code fixes and optimization of some functionality implementation
363
+
364
  = 2.6.6 =
365
  Updated hover mode for gallery thumbnails on mobile devices
366
 
robogallery.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Robo Gallery
4
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
5
- Version: 2.6.6
6
  Author: RoboSoft
7
  Plugin URI: http://robosoft.co/gallery
8
  Author URI: http://robosoft.co/gallery
@@ -15,12 +15,12 @@ if(!defined('WPINC'))die;
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
- define("ROBO_GALLERY_VERSION", '2.6.6');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
22
- define("ROBO_GALLERY_SPECIAL", 1);
23
- define("ROBO_GALLERY_EVENT_DATE", '2017-02-24');
24
  define("ROBO_GALLERY_EVENT_HOUR", 20);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
2
  /*
3
  Plugin Name: Robo Gallery
4
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
5
+ Version: 2.6.7
6
  Author: RoboSoft
7
  Plugin URI: http://robosoft.co/gallery
8
  Author URI: http://robosoft.co/gallery
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
+ define("ROBO_GALLERY_VERSION", '2.6.7');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
22
+ define("ROBO_GALLERY_SPECIAL", 0);
23
+ define("ROBO_GALLERY_EVENT_DATE", '2016-12-08');
24
  define("ROBO_GALLERY_EVENT_HOUR", 20);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );