Gallery – Photo Gallery and Images Gallery - Version 2.4.0

Version Description

  • Added multi tags field for every image
  • New tags functionality for images filtering in PRO version
Download this release

Release Info

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

Code changes from version 2.3.3 to 2.4.0

cmb2/fields/border/cmb-field-border.php CHANGED
@@ -34,10 +34,6 @@ function rbs_border_get_state_options( $value = false ) {
34
  return $state_options;
35
  }
36
 
37
- function jt_cmb2_border_field( $metakey, $post_id = 0 ) {
38
- echo jt_cmb2_get_border_field( $metakey, $post_id );
39
- }
40
-
41
  function rbs_border_render_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
42
 
43
  $value = wp_parse_args( $value, array(
34
  return $state_options;
35
  }
36
 
 
 
 
 
37
  function rbs_border_render_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
38
 
39
  $value = wp_parse_args( $value, array(
cmb2/fields/gallery/css/style.css CHANGED
@@ -20,6 +20,7 @@ table.compat-attachment-fields tr.compat-field-rsg_gallery_col,
20
  table.compat-attachment-fields tr.compat-field-rsg_gallery_video_link,
21
  table.compat-attachment-fields tr.compat-field-rsg_gallery_type_link,
22
  table.compat-attachment-fields tr.compat-field-rsg_gallery_link,
 
23
  table.compat-attachment-fields tr.compat-field-rsg_gallery_effect{
24
  display:block !important;
25
  }
20
  table.compat-attachment-fields tr.compat-field-rsg_gallery_video_link,
21
  table.compat-attachment-fields tr.compat-field-rsg_gallery_type_link,
22
  table.compat-attachment-fields tr.compat-field-rsg_gallery_link,
23
+ table.compat-attachment-fields tr.compat-field-rsg_gallery_tags,
24
  table.compat-attachment-fields tr.compat-field-rsg_gallery_effect{
25
  display:block !important;
26
  }
cmb2/fields/switch/cmb-field-switch.php CHANGED
@@ -20,36 +20,38 @@ function jt_cmb2_switch_field( $metakey, $post_id = 0 ) {
20
  function jt_cmb2_render_switch_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
21
 
22
  if( empty($value) ) $value = $field->args('default');
23
-
24
- $bs = $field->args('bootstrap_style');
25
 
26
  $level = $field->args('level') ? 1 : 0 ;
 
 
 
 
27
 
 
28
  $onText = $field->args('onText');
29
  $offText = $field->args('offText');
30
 
 
 
 
31
  if($field->args('showhide')){
32
  $onText='Show';
33
  $offText='Hide';
34
  }
35
 
36
- if($bs){
37
  ?>
38
  <div class="form-horizontal">
39
  <div class="form-group">
40
  <label class="col-sm-2 control-label" for="<?php echo $field_type_object->_id(); ?>'"><?php echo $field->args('name'); ?></label>
41
- <div class="col-sm-<?php echo $level?'8 rbs_disabled':'10'; ?>">
42
- <?php
43
- } else {
44
- ?>
45
- <div>
46
- <div class="alignleft">
47
  <?php
48
- }
49
  echo
50
- '<input type="checkbox" data-toggle="toggle" data-onstyle="info" '
51
- .($onText?' data-on="'.__($onText, 'rbs_gallery').'" ':'')
52
- .($offText?' data-off="'.__($offText, 'rbs_gallery').'" ':'')
 
 
 
53
  .($field->args('depends')?'class="rbs_action_element" ':'')
54
  .'name="'.$field_type_object->_name( ).'" '
55
  .'id="'. $field_type_object->_id( ).'" '
@@ -59,10 +61,15 @@ if($bs){
59
  ?>
60
  </div>
61
  <?php if($level){ ?>
62
- <div class="col-sm-2 rbs-block-pro"><?php echo ROBO_GALLERY_LABEL_PRO; ?></div>
 
 
 
63
  <?php } ?>
 
64
  </div>
 
65
  <?php
66
- if($bs) echo "</div>";
67
  }
 
68
  add_filter( 'cmb2_render_switch', 'jt_cmb2_render_switch_field_callback', 10, 5 );
20
  function jt_cmb2_render_switch_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
21
 
22
  if( empty($value) ) $value = $field->args('default');
 
 
23
 
24
  $level = $field->args('level') ? 1 : 0 ;
25
+ $update = $field->args('update');
26
+ if( !$level && ROBO_GALLERY_PRO && $update && version_compare( ROBO_GALLERY_KEY_VERSION , $update, '<') ){
27
+ $update = '1';
28
+ } else $update = 0;
29
 
30
+
31
  $onText = $field->args('onText');
32
  $offText = $field->args('offText');
33
 
34
+ $onStyle = $field->args('onStyle');
35
+ $offStyle = $field->args('offStyle');
36
+
37
  if($field->args('showhide')){
38
  $onText='Show';
39
  $offText='Hide';
40
  }
41
 
 
42
  ?>
43
  <div class="form-horizontal">
44
  <div class="form-group">
45
  <label class="col-sm-2 control-label" for="<?php echo $field_type_object->_id(); ?>'"><?php echo $field->args('name'); ?></label>
46
+ <div class="col-sm-<?php echo ($level||$update)?'7 rbs_disabled':'10'; ?>">
 
 
 
 
 
47
  <?php
 
48
  echo
49
+ '<input type="checkbox" data-toggle="toggle" '
50
+ .($onStyle?' data-onstyle="'.$onStyle.'" ' :' data-onstyle="info" ')
51
+ .($offStyle?' data-offstyle="'.$offStyle.'" ' :' data-offstyle="default" ')
52
+
53
+ .($onText?' data-on="'.$onText.'" ':'')
54
+ .($offText?' data-off="'.$offText.'" ':'')
55
  .($field->args('depends')?'class="rbs_action_element" ':'')
56
  .'name="'.$field_type_object->_name( ).'" '
57
  .'id="'. $field_type_object->_id( ).'" '
61
  ?>
62
  </div>
63
  <?php if($level){ ?>
64
+ <div class="col-sm-3 rbs-block-pro"><?php echo ROBO_GALLERY_LABEL_PRO; ?></div>
65
+ <?php } ?>
66
+ <?php if($update){ ?>
67
+ <div class="col-sm-3 rbs-block-update-pro"><?php echo ROBO_GALLERY_LABEL_UPDATE_PRO; ?></div>
68
  <?php } ?>
69
+
70
  </div>
71
+ </div>
72
  <?php
 
73
  }
74
+
75
  add_filter( 'cmb2_render_switch', 'jt_cmb2_render_switch_field_callback', 10, 5 );
cmb2/fields/toolbox/cmb-field-toolbox.php CHANGED
@@ -18,6 +18,7 @@ class RBS_TOOLBOX {
18
  public function hooks() {
19
  add_action( 'admin_enqueue_scripts', array( $this, 'rbs_setup_admin_scripts' ) );
20
  if(!ROBO_GALLERY_PRO) add_action( 'in_admin_header', array( $this, 'rbs_setup_admin_header' ) );
 
21
  add_action( 'in_admin_header', array( $this, 'rbs_setup_admin_script' ) );
22
  }
23
 
@@ -40,6 +41,23 @@ class RBS_TOOLBOX {
40
  .'</div>';
41
  }
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  public function rbs_setup_admin_scripts() {
44
 
45
  wp_enqueue_media();
@@ -51,11 +69,14 @@ class RBS_TOOLBOX {
51
  wp_enqueue_style ('robo-gallery-info', ROBO_GALLERY_URL.'css/admin/info.css', array( ), ROBO_GALLERY_VERSION );
52
  }
53
 
 
 
 
 
54
  //bootstrap
55
  wp_enqueue_script( 'rbs_bootstrap', ROBO_GALLERY_URL.'addons/bootstrap/js/bootstrap.min.js', array('jquery'), ROBO_GALLERY_VERSION, false);
56
  wp_enqueue_style ( 'rbs_bootstrap', ROBO_GALLERY_URL.'addons/bootstrap/css/bootstrap.css', array(), ROBO_GALLERY_VERSION, 'all');
57
- //wp_enqueue_style ( 'rbs_bootstrap_theme', ROBO_GALLERY_URL.'addons/bootstrap/bootstrap-theme.css' );
58
-
59
  //checkbox
60
  wp_enqueue_script( 'rbs-toolbox-toggles-js', ROBO_GALLERY_URL.'addons/toggles/js/bootstrap-toggle.js', array( 'jquery', 'rbs_bootstrap' ), ROBO_GALLERY_VERSION, false );
61
  wp_enqueue_style( 'rbs-toolbox-toggles-css', ROBO_GALLERY_URL.'addons/toggles/css/bootstrap-toggle.css', array(), ROBO_GALLERY_VERSION, 'all' );
18
  public function hooks() {
19
  add_action( 'admin_enqueue_scripts', array( $this, 'rbs_setup_admin_scripts' ) );
20
  if(!ROBO_GALLERY_PRO) add_action( 'in_admin_header', array( $this, 'rbs_setup_admin_header' ) );
21
+ if(ROBO_GALLERY_PRO) add_action( 'in_admin_header', array( $this, 'rbs_gallery_dialog_updatepro' ) );
22
  add_action( 'in_admin_header', array( $this, 'rbs_setup_admin_script' ) );
23
  }
24
 
41
  .'</div>';
42
  }
43
 
44
+ public function rbs_gallery_dialog_updatepro(){
45
+ echo '<div id="rbs_dialog_update_pro_key" '
46
+ .'style="display: none;" '
47
+ .'data-body="rbs_edit" '
48
+ .'data-open="0" '
49
+ .'data-title="'.__('Update Robo Gallery PRO Key', 'rbs_gallery').'" '
50
+ .'data-close="'.__('Close', 'rbs_gallery').'" '
51
+ .'data-info="'.__('Goto Clients section', 'rbs_gallery').'"'
52
+ .'>'
53
+ .__('This function available in latest versions of the plugin. <br/>
54
+ Please login to <a href="http://robosoft.co/clients/" target="_blank">client member place section</a> and download latest version of the <strong>Robo Gallery Key plugin</strong>.<br/><br/>
55
+ Install this key on the website and all features will be enabled.<br/>
56
+ All previous functionality will be available with old Pro Key. <br/>
57
+ Update required only for the case if you wish to enable all latest functions implemented in new version of the plugin.', 'rbs_gallery')
58
+ .'</div>';
59
+ }
60
+
61
  public function rbs_setup_admin_scripts() {
62
 
63
  wp_enqueue_media();
69
  wp_enqueue_style ('robo-gallery-info', ROBO_GALLERY_URL.'css/admin/info.css', array( ), ROBO_GALLERY_VERSION );
70
  }
71
 
72
+ if(ROBO_GALLERY_PRO){
73
+ wp_enqueue_script('robo-gallery-dialog-update-pro', ROBO_GALLERY_URL.'js/admin/update.js', array( 'jquery' ), ROBO_GALLERY_VERSION, false );
74
+ }
75
+
76
  //bootstrap
77
  wp_enqueue_script( 'rbs_bootstrap', ROBO_GALLERY_URL.'addons/bootstrap/js/bootstrap.min.js', array('jquery'), ROBO_GALLERY_VERSION, false);
78
  wp_enqueue_style ( 'rbs_bootstrap', ROBO_GALLERY_URL.'addons/bootstrap/css/bootstrap.css', array(), ROBO_GALLERY_VERSION, 'all');
79
+
 
80
  //checkbox
81
  wp_enqueue_script( 'rbs-toolbox-toggles-js', ROBO_GALLERY_URL.'addons/toggles/js/bootstrap-toggle.js', array( 'jquery', 'rbs_bootstrap' ), ROBO_GALLERY_VERSION, false );
82
  wp_enqueue_style( 'rbs-toolbox-toggles-css', ROBO_GALLERY_URL.'addons/toggles/css/bootstrap-toggle.css', array(), ROBO_GALLERY_VERSION, 'all' );
css/admin/edit.css CHANGED
@@ -1 +1 @@
1
- /*
2
  z-index: 1000;
3
  opacity: 0.4;
4
  pointer-events: none;
5
  z-index: 1000;
6
  opacity: 0.1;
7
  pointer-events: none;
8
  padding-top: 7px;
9
  text-align: right;
10
  cursor: pointer;
 
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
 
1
  z-index: 1000;
2
  opacity: 0.4;
3
  pointer-events: none;
4
  z-index: 1000;
5
  opacity: 0.1;
6
  pointer-events: none;
7
  padding-top: 7px;
8
  text-align: right;
9
  cursor: pointer;
10
+ /*
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
includes/extensions/backup/backup.form.php CHANGED
@@ -75,12 +75,12 @@ if(!function_exists('rbs_get_file_upload_max_size')){
75
  if(isset($_POST['rbsGalleryBackupDuplicate']) && $_POST['rbsGalleryBackupDuplicate'] ){
76
  $export->duplicate = 1;
77
  }
78
- //echo $tmp_name;
79
  if( isset($_FILES['rbsBackupFile']['name']) && $_FILES['rbsBackupFile']['name'] ){
80
  $realName = $_FILES['rbsBackupFile']['name'];
81
  $info = pathinfo( $realName );
82
  if (isset($info["extension"]) && $info["extension"] ) {
83
- //echo $info["extension"];
84
  switch ( strtolower( $info["extension"] ) ) {
85
  case 'zip':
86
  $result = $export->importPostsZip($tmp_name, $realName);
@@ -125,7 +125,6 @@ if(!function_exists('rbs_get_file_upload_max_size')){
125
  }
126
  }
127
  echo '</div>';
128
- //print_r($result);
129
  } else {
130
  echo rbs_backup_error_message( __('Error: please check backup file', 'rbs_gallery') );
131
  }
@@ -136,7 +135,7 @@ if(!function_exists('rbs_get_file_upload_max_size')){
136
  if(!function_exists('rbs_backup_tabs')){
137
  function rbs_backup_tabs( $current = 'export' ) {
138
  $tabs = array( 'exportfull' => 'Full Export Gallery', 'export' => 'Export Gallery', 'import' => 'Import Gallery' );
139
- //echo '<div id="icon-themes" class="icon32"><br></div>';
140
  echo '<h2 class="nav-tab-wrapper">';
141
  foreach( $tabs as $tab => $name ){
142
  $class = ( $tab == $current ) ? ' nav-tab-active' : '';
75
  if(isset($_POST['rbsGalleryBackupDuplicate']) && $_POST['rbsGalleryBackupDuplicate'] ){
76
  $export->duplicate = 1;
77
  }
78
+
79
  if( isset($_FILES['rbsBackupFile']['name']) && $_FILES['rbsBackupFile']['name'] ){
80
  $realName = $_FILES['rbsBackupFile']['name'];
81
  $info = pathinfo( $realName );
82
  if (isset($info["extension"]) && $info["extension"] ) {
83
+
84
  switch ( strtolower( $info["extension"] ) ) {
85
  case 'zip':
86
  $result = $export->importPostsZip($tmp_name, $realName);
125
  }
126
  }
127
  echo '</div>';
 
128
  } else {
129
  echo rbs_backup_error_message( __('Error: please check backup file', 'rbs_gallery') );
130
  }
135
  if(!function_exists('rbs_backup_tabs')){
136
  function rbs_backup_tabs( $current = 'export' ) {
137
  $tabs = array( 'exportfull' => 'Full Export Gallery', 'export' => 'Export Gallery', 'import' => 'Import Gallery' );
138
+
139
  echo '<h2 class="nav-tab-wrapper">';
140
  foreach( $tabs as $tab => $name ){
141
  $class = ( $tab == $current ) ? ' nav-tab-active' : '';
includes/frontend/rbs_gallery_class.php CHANGED
@@ -547,8 +547,17 @@ class roboGallery extends roboGalleryUtils{
547
  .'<img src="'.$img['thumb'].'" title="'.$lightboxText.'" alt="'.$lightboxText.'" >'
548
  .($seo==1 ? '</a>' : '' );
549
  }
 
 
 
 
 
 
 
 
 
550
  $this->returnHtml .=
551
- '<div class="rbs-img category'.$img['catid'].'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>'.$lineBrake.$newLine
552
  .'<div class="rbs-img-image '.(!$this->thumbClick?' rbs-lightbox':'').'" '.$descBoxData.' '.( isset($img['effect']) && $img['effect'] ?' data-overlay-effect="'.$img['effect'].'" ' :'').' >'.$lineBrake.$newLine.$newLine
553
  .'<div data-thumbnail="'.$img['thumb'].'" title="'.$lightboxText.'" data-width="'.( $sizeType ? $width : $img['sizeW'] ).'" data-height="'.($sizeType?$height:$img['sizeH']).'" ></div>'.$lineBrake.$newLine.$newLine
554
  .'<div data-popup="'.$link.'" title="'.$lightboxText.'" '.($lightboxCaption?'data-caption="'.$lightboxCaption.'"':'').'></div>'.$lineBrake.$newLine.$newLine
@@ -640,17 +649,22 @@ class roboGallery extends roboGalleryUtils{
640
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'menuRoot', true ) ){
641
  $retHtml .= '<a class="button '.$class.' active" '.($style?'style="'.$style.'"':'').' href="#" data-filter="*">'.get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'menuRootLabel', true ).'</a>';
642
  }
643
-
644
- for ($i=0; $i < count($this->selectImages->catArray); $i++) {
645
- $category = $this->selectImages->catArray[$i];
646
- $retHtml .= '<a href="#" '
647
- .' data-filter=".category'.$category['id'].'"'
648
- .' class="button '.$class.'"'
649
- .' '.($style?'style="'.$style.'"':'')
650
- .'>'
651
- .esc_attr($category['title'])
652
- .'</a>';
 
 
 
 
653
  }
 
654
  $retHtml .= '</div>';
655
  return $retHtml;
656
  }
547
  .'<img src="'.$img['thumb'].'" title="'.$lightboxText.'" alt="'.$lightboxText.'" >'
548
  .($seo==1 ? '</a>' : '' );
549
  }
550
+
551
+ $tagId = '';
552
+ //print_r( array_keys($this->selectImages->tags) );
553
+ for ($l=0; $l < count($img['tags']); $l++) {
554
+ //echo "fff2";
555
+ $tagId .= ' tag_id'.array_search($img['tags'][$l], $this->selectImages->tags ).' ';
556
+ }
557
+ //echo $tagId."<br/>";
558
+
559
  $this->returnHtml .=
560
+ '<div class="rbs-img category'.$img['catid'].' '.$tagId.'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>'.$lineBrake.$newLine
561
  .'<div class="rbs-img-image '.(!$this->thumbClick?' rbs-lightbox':'').'" '.$descBoxData.' '.( isset($img['effect']) && $img['effect'] ?' data-overlay-effect="'.$img['effect'].'" ' :'').' >'.$lineBrake.$newLine.$newLine
562
  .'<div data-thumbnail="'.$img['thumb'].'" title="'.$lightboxText.'" data-width="'.( $sizeType ? $width : $img['sizeW'] ).'" data-height="'.($sizeType?$height:$img['sizeH']).'" ></div>'.$lineBrake.$newLine.$newLine
563
  .'<div data-popup="'.$link.'" title="'.$lightboxText.'" '.($lightboxCaption?'data-caption="'.$lightboxCaption.'"':'').'></div>'.$lineBrake.$newLine.$newLine
649
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'menuRoot', true ) ){
650
  $retHtml .= '<a class="button '.$class.' active" '.($style?'style="'.$style.'"':'').' href="#" data-filter="*">'.get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'menuRootLabel', true ).'</a>';
651
  }
652
+
653
+ if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'menuTag', true ) && $this->pro && method_exists( $this ,'getTagsMenu') ){
654
+ $retHtml .= $this->getTagsMenu($class, $style);
655
+ } else {
656
+ for ($i=0; $i < count($this->selectImages->catArray); $i++) {
657
+ $category = $this->selectImages->catArray[$i];
658
+ $retHtml .= '<a href="#" '
659
+ .' data-filter=".category'.$category['id'].'"'
660
+ .' class="button '.$class.'"'
661
+ .' '.($style?'style="'.$style.'"':'')
662
+ .'>'
663
+ .esc_attr($category['title'])
664
+ .'</a>';
665
+ }
666
  }
667
+
668
  $retHtml .= '</div>';
669
  return $retHtml;
670
  }
includes/frontend/rbs_gallery_class_utils.php CHANGED
@@ -14,9 +14,7 @@
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
- if( ROBO_GALLERY_PRO ){
18
- include_once( ROBO_GALLERY_KEY_PATH );
19
- } else {
20
  class roboGalleryParent{ public $pro = 0; }
21
  }
22
 
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
+ if( !ROBO_GALLERY_PRO || !class_exists('roboGalleryParent')){
 
 
18
  class roboGalleryParent{ public $pro = 0; }
19
  }
20
 
includes/frontend/rbs_gallery_source.php CHANGED
@@ -19,6 +19,7 @@ class roboGalleryImages{
19
  public $cloneId = 0;
20
  public $imgArray = array();
21
  public $catArray = array();
 
22
 
23
  public $width = 0;
24
  public $height = 0;
@@ -110,9 +111,24 @@ class roboGalleryImages{
110
  $this->imgArray[$i]['videolink']= get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_video_link', true );
111
  $this->imgArray[$i]['col'] = get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_col', true );
112
  $this->imgArray[$i]['effect'] = get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_effect', true );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  }
114
 
115
  }
 
116
 
117
  switch ( $this->orderby ) {
118
  case 'random': shuffle ($this->imgArray); break;
19
  public $cloneId = 0;
20
  public $imgArray = array();
21
  public $catArray = array();
22
+ public $tags = array();
23
 
24
  public $width = 0;
25
  public $height = 0;
111
  $this->imgArray[$i]['videolink']= get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_video_link', true );
112
  $this->imgArray[$i]['col'] = get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_col', true );
113
  $this->imgArray[$i]['effect'] = get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_effect', true );
114
+
115
+ $this->imgArray[$i]['tags'] = array();
116
+
117
+ if( $tags = get_post_meta( $img['id'], ROBO_GALLERY_PREFIX.'gallery_tags', true ) ){
118
+ $tags = explode( ',', $tags);
119
+ if(count($tags)){
120
+ for ($j=0; $j < count($tags); $j++) {
121
+ $clearTag = trim($tags[$j]);
122
+ $tags[$j] = $clearTag ;
123
+ if( array_search($clearTag, $this->tags)===false ) $this->tags[] = $clearTag;
124
+ }
125
+ }
126
+ $this->imgArray[$i]['tags'] =$tags;
127
+ }
128
  }
129
 
130
  }
131
+ //print_r($this->tags);
132
 
133
  switch ( $this->orderby ) {
134
  case 'random': shuffle ($this->imgArray); break;
includes/options/rbs_gallery_options_button.php CHANGED
@@ -59,6 +59,21 @@ $button_group->add_field( array(
59
  </div>',
60
  ));
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  $button_group->add_field( array(
63
  'name' => __('Self Label', 'rbs_gallery' ),
64
  'id' => ROBO_GALLERY_PREFIX . 'menuSelf',
59
  </div>',
60
  ));
61
 
62
+ $button_group->add_field( array(
63
+ 'name' => __('Menu mode', 'rbs_gallery' ),
64
+ 'id' => ROBO_GALLERY_PREFIX . 'menuTag',
65
+ 'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
66
+ 'type' => 'switch',
67
+ 'level' => !ROBO_GALLERY_PRO,
68
+ 'update' => '1.4',
69
+ 'onText' => __('Tags', 'rbs_gallery' ),
70
+ 'offText' => __('Categories', 'rbs_gallery' ),
71
+ 'onStyle' => __('primary', 'rbs_gallery' ),
72
+ 'offStyle' => __('info', 'rbs_gallery' ),
73
+ 'bootstrap_style'=> 1,
74
+ ));
75
+
76
+
77
  $button_group->add_field( array(
78
  'name' => __('Self Label', 'rbs_gallery' ),
79
  'id' => ROBO_GALLERY_PREFIX . 'menuSelf',
includes/rbs_gallery_about.php CHANGED
@@ -14,7 +14,7 @@
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
- wp_enqueue_style ( 'toolbox-gallery-about', ROBO_GALLERY_URL.'css/admin/about.css', array( ), ROBO_GALLERY_VERSION );
18
 
19
  echo '
20
  <div class="rbs_about_header">
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
+ wp_enqueue_style ( 'robosoft-gallery-about', ROBO_GALLERY_URL.'css/admin/about.css', array( ), ROBO_GALLERY_VERSION );
18
 
19
  echo '
20
  <div class="rbs_about_header">
includes/rbs_gallery_init.php CHANGED
@@ -20,6 +20,9 @@ define( "ROBO_GALLERY_TYPE_POST", 'robo_gallery_table');
20
  define( "ROBO_GALLERY_ICON_PRO", '<button type="button" class="btn btn-danger btn-xs rbs-label-pro">Pro</button>');
21
  define( "ROBO_GALLERY_LABEL_PRO", '<span>'.__( 'Available in', 'rbs_gallery' ).'</span> '.ROBO_GALLERY_ICON_PRO);
22
 
 
 
 
23
  if(!function_exists('rbs_gallery_include')){
24
  function rbs_gallery_include( $filesForInclude, $path = '' ){
25
  $filesArray = array();
20
  define( "ROBO_GALLERY_ICON_PRO", '<button type="button" class="btn btn-danger btn-xs rbs-label-pro">Pro</button>');
21
  define( "ROBO_GALLERY_LABEL_PRO", '<span>'.__( 'Available in', 'rbs_gallery' ).'</span> '.ROBO_GALLERY_ICON_PRO);
22
 
23
+ define( "ROBO_GALLERY_ICON_UPDATE_PRO", '<button type="button" class="btn btn-success btn-xs rbs-label-pro">Pro</button>');
24
+ define( "ROBO_GALLERY_LABEL_UPDATE_PRO", '<span>'.__( 'Please update ', 'rbs_gallery' ).'</span> '.ROBO_GALLERY_ICON_UPDATE_PRO.'<span>'.__( ' key', 'rbs_gallery' ).'</span> ');
25
+
26
  if(!function_exists('rbs_gallery_include')){
27
  function rbs_gallery_include( $filesForInclude, $path = '' ){
28
  $filesArray = array();
includes/rbs_gallery_media.php CHANGED
@@ -22,9 +22,16 @@ function robo_gallery_hide_fieldattachment() {
22
  .".compat-attachment-fields tr.compat-field-rsg_gallery_type_link,"
23
  .".compat-attachment-fields tr.compat-field-rsg_gallery_video_link,"
24
  .".compat-attachment-fields tr.compat-field-rsg_gallery_effect,"
25
- .".compat-attachment-fields tr.compat-field-rsg_gallery_link{display:none; "
 
 
 
 
 
 
26
  .(!ROBO_GALLERY_PRO?"z-index: 1000;opacity: 0.4;pointer-events: none;":"")
27
- ."}</style>";
 
28
  }
29
  add_action('admin_head', 'robo_gallery_hide_fieldattachment');
30
 
@@ -42,9 +49,15 @@ add_action('admin_head', 'robo_gallery_hide_fieldattachment');
42
  $form_fields[ROBO_GALLERY_PREFIX.'gallery_line'] = array(
43
  'label' => '',
44
  'input' => 'html',
45
- 'html' => ( !ROBO_GALLERY_PRO ?'<br/><br/><span>Available in PRO Version Robo Gallery</span>':'<h4>'.__('Robo Gallery', 'rbs_gallery').'</h4>')
46
  );
47
 
 
 
 
 
 
 
48
  $value = get_post_meta( $post->ID, ROBO_GALLERY_PREFIX.'gallery_col', true );
49
  $selectBox =
50
  "<select name='attachments[{$post->ID}][".ROBO_GALLERY_PREFIX."gallery_col]' id='attachments[{$post->ID}][".ROBO_GALLERY_PREFIX."gallery_col]'>
@@ -128,12 +141,18 @@ add_action('admin_head', 'robo_gallery_hide_fieldattachment');
128
  }
129
  add_filter( 'attachment_fields_to_edit', 'robo_gallery_attachment_field_credit', 10, 2 );
130
 
 
 
131
  function robo_gallery_attachment_field_credit_save( $post, $attachment ) {
 
 
 
132
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) )
133
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_video_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) );
134
 
135
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_link'] ) )
136
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_link'] ) );
 
137
 
138
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] ) )
139
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_type_link', $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] );
22
  .".compat-attachment-fields tr.compat-field-rsg_gallery_type_link,"
23
  .".compat-attachment-fields tr.compat-field-rsg_gallery_video_link,"
24
  .".compat-attachment-fields tr.compat-field-rsg_gallery_effect,"
25
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_tags,"
26
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_link{display:none;}"
27
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_col,"
28
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_type_link,"
29
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_video_link,"
30
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_effect,"
31
+ .".compat-attachment-fields tr.compat-field-rsg_gallery_link{"
32
  .(!ROBO_GALLERY_PRO?"z-index: 1000;opacity: 0.4;pointer-events: none;":"")
33
+ ."}
34
+ </style>";
35
  }
36
  add_action('admin_head', 'robo_gallery_hide_fieldattachment');
37
 
49
  $form_fields[ROBO_GALLERY_PREFIX.'gallery_line'] = array(
50
  'label' => '',
51
  'input' => 'html',
52
+ 'html' => ( !ROBO_GALLERY_PRO ?'<br/><br/><span>Robo Gallery <br> Available in PRO </span>':'<h4>'.__('Robo Gallery', 'rbs_gallery').'</h4>')
53
  );
54
 
55
+ $form_fields[ROBO_GALLERY_PREFIX.'gallery_tags'] = array(
56
+ 'label' => __('Tags'),
57
+ 'input' => 'textarea',
58
+ 'value' => get_post_meta( $post->ID, ROBO_GALLERY_PREFIX.'gallery_tags', true ),
59
+ );
60
+
61
  $value = get_post_meta( $post->ID, ROBO_GALLERY_PREFIX.'gallery_col', true );
62
  $selectBox =
63
  "<select name='attachments[{$post->ID}][".ROBO_GALLERY_PREFIX."gallery_col]' id='attachments[{$post->ID}][".ROBO_GALLERY_PREFIX."gallery_col]'>
141
  }
142
  add_filter( 'attachment_fields_to_edit', 'robo_gallery_attachment_field_credit', 10, 2 );
143
 
144
+
145
+
146
  function robo_gallery_attachment_field_credit_save( $post, $attachment ) {
147
+ if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_tags'] ) )
148
+ update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_tags', $attachment[ROBO_GALLERY_PREFIX.'gallery_tags'] );
149
+
150
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) )
151
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_video_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) );
152
 
153
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_link'] ) )
154
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_link'] ) );
155
+
156
 
157
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] ) )
158
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_type_link', $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] );
includes/rbs_gallery_menu.php CHANGED
@@ -45,18 +45,14 @@ if(!function_exists('robo_gallery_settings_submenu_page')){
45
 
46
  add_action( 'admin_init', 'robo_gallery_settings_init' );
47
  function robo_gallery_settings_init() {
48
- //register our settings
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'jqueryVersion' );
50
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
51
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
52
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
53
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'debugEnable' );
54
-
55
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'categoryShow' );
56
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'seo' );
57
-
58
  }
59
-
60
  }
61
 
62
  if(!function_exists('robo_gallery_about_submenu_page')){
45
 
46
  add_action( 'admin_init', 'robo_gallery_settings_init' );
47
  function robo_gallery_settings_init() {
 
48
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'jqueryVersion' );
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
50
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
51
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
52
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'debugEnable' );
 
53
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'categoryShow' );
54
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'seo' );
 
55
  }
 
56
  }
57
 
58
  if(!function_exists('robo_gallery_about_submenu_page')){
includes/rbs_gallery_settings.php CHANGED
@@ -13,7 +13,7 @@
13
  */
14
  if ( ! defined( 'ABSPATH' ) ) exit;
15
 
16
- wp_enqueue_style ( 'toolbox-gallery-about', ROBO_GALLERY_URL.'css/admin/about.css', array( ), ROBO_GALLERY_VERSION );
17
  ?>
18
  <div class="wrap">
19
  <h2><?php _e('Compatibility Settings', 'rbs_gallery'); ?></h2>
13
  */
14
  if ( ! defined( 'ABSPATH' ) ) exit;
15
 
16
+ wp_enqueue_style ( 'robosoft-gallery-about', ROBO_GALLERY_URL.'css/admin/about.css', array( ), ROBO_GALLERY_VERSION );
17
  ?>
18
  <div class="wrap">
19
  <h2><?php _e('Compatibility Settings', 'rbs_gallery'); ?></h2>
js/admin/update.js ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Robo Gallery
3
+ * Version: 2.4
4
+ * By Robosoft
5
+ *
6
+ * Contact: http://robosoft.co
7
+ * Created: 2016
8
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
9
+ *
10
+ * Copyright (c) 2014-2016, Robosoft. All rights reserved.
11
+ * Available only in http://robosoft.co/robogallery
12
+ */
13
+
14
+ jQuery(function(){
15
+ var roboGalleryUpdateProDialog = jQuery("#rbs_dialog_update_pro_key");
16
+
17
+ var bodyClass = roboGalleryUpdateProDialog.data("body");
18
+ if(bodyClass) jQuery("body").addClass(bodyClass);
19
+ roboGalleryUpdateProDialog.dialog({
20
+ 'dialogClass' : 'wp-dialog',
21
+ 'title': roboGalleryUpdateProDialog.data('title'),
22
+ 'modal' : true,
23
+ 'autoOpen' : roboGalleryUpdateProDialog.data('open'),
24
+ 'width': '450', // overcomes width:'auto' and maxWidth bug
25
+ 'maxWidth': 450,
26
+ 'height': 'auto',
27
+ 'fluid': true,
28
+ 'resizable': false,
29
+ 'responsive': true,
30
+ 'draggable': false,
31
+ 'closeOnEscape' : true,
32
+ 'buttons' : [{
33
+ 'text' : roboGalleryUpdateProDialog.data('close'),
34
+ 'class' : 'button button-default rbs_dialog_close',
35
+ 'click' : function() { jQuery(this).dialog('close'); }
36
+ },
37
+ {
38
+ 'text' : roboGalleryUpdateProDialog.data('info'),
39
+ 'class' : 'button-primary rbs_close_dialog',
40
+ 'click' : function(){
41
+ window.open("http://robosoft.co/go.php?product=gallery&task=support",'_blank');
42
+ }
43
+ }
44
+ ],
45
+ open: function( event, ui ) {}
46
+ });
47
+ window['roboGalleryUpdateProDialog'] = roboGalleryUpdateProDialog;
48
+ jQuery(".ui-dialog-titlebar-close").addClass("ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close");
49
+
50
+ jQuery('.rbs-block-update-pro').click( function(event ){
51
+ event.preventDefault();
52
+ roboGalleryUpdateProDialog.dialog("open");
53
+ });
54
+ });
README.txt → readme.txt RENAMED
@@ -1,1310 +1,1323 @@
1
- === Gallery - Photo Gallery and Images Gallery ===
2
- Contributors: robosoft
3
- Donate link: http://www.robosoft.co/robogallery
4
- Tags: gallery, images, photo gallery, images gallery, responsive gallery, categories gallery, Polaroid gallery, Gallery Plugin, gallery lightbox, pictures, portvolio gallery, video gallery
5
- Requires at least: 3.3
6
- Tested up to: 4.5
7
- Stable tag: 2.3.3
8
- License: GPLv2 or later
9
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
-
11
- Gallery with multi categories, responsive and mobile friendly, all interface elements highly customizable, gallery support videos, links and lightbox
12
-
13
- == Description ==
14
-
15
- #### [Gallery Most Easy and Powerful plugin to create attractive image section on your WordPress website.](http://robosoft.co/robogallery/#overview)
16
-
17
- #### Gallery on your website it's really attractive and very important part of your pages. If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](http://robosoft.co/robogallery/#overview) Gallery where even newbie in Wordpress will be able to create your first gallery in few minutes and at the same time Wordpress professionals get advanced tools and freedom of creativity. Just download this Gallery and you'll not look for any other gallery any more! [Fall in Love with this Gallery like we do!](http://robosoft.co/robogallery/#overview)
18
-
19
- = Install and create your first Wordpress gallery in few minutes =
20
-
21
- [youtube https://www.youtube.com/watch?v=m9XIeqMnhYI&feature=youtu.be]
22
-
23
- > #### Gallery Demos
24
- >
25
- >[Multi Categories Cars Gallery Demo](http://robosoft.co/demo/gallery/cars-gallery-demo/)
26
- >
27
- >[Grid Layout Gallery Demo with Fade hover effect](http://robosoft.co/demo/gallery/custom-layout/)
28
- >
29
- >[Multi Categories Polaroid style Movie Gallery Demo with classic layout](http://robosoft.co/demo/gallery/gallery-demo-movie/)
30
- >
31
- >[Design Sketch Gallery Demo with grid layout](http://robosoft.co/demo/gallery/gallery-design/)
32
- >
33
- >[Multi Categories Gallery Demo with custom interface colors and classic layout](http://robosoft.co/demo/gallery/push-effect-demo/)
34
- >
35
- >[Video Gallery Demo with grid layout](http://robosoft.co/demo/gallery/design-video-gallery)
36
-
37
-
38
- = Gallery Key Features =
39
-
40
- * Fully responsive and Mobile features
41
- * Fade effects
42
- * Batch images upload
43
- * Auto-resizing for thumbnails and images
44
- * Customizable 15 hover effects
45
- * Implemented to avoid AJAX libs conflicts
46
- * Polaroid style gallery
47
- * Advanced Polaroid Styles
48
- * Build in colors selector
49
- * Social sharing
50
- * Build in borders and shadows settings
51
- * Font settings
52
- * Different resolutions
53
- * Implemented in native Wordpress style using native classes
54
- * Multi Categories
55
- * Classic gallery layout
56
- * Advanced pagination function
57
- * Work in IE, Firefox, Safari, Opera, Chrome
58
- * Lazy loading option
59
- * Advanced cache options
60
- * Overlay effects
61
- * Backend text settings preview
62
- * Resizing crop function
63
- * Optional mobile touch support
64
- * Custom ordering of the images
65
- * Ability to insert gallery to the Wordpress post, page, widget
66
- * Gallery lightbox social buttons
67
- * Gallery lightbox background color
68
- * Gallery lightbox background transparency
69
- * Gallery lightbox font color
70
- * Gallery lightbox font transparency
71
- * Advanced Compatibility
72
- * Advanced Social Sharing
73
- * Click Thumbnails
74
- * Gallery alignment
75
- * Gallery Padding
76
- * Post generator
77
- * Description Panel
78
- * Swipe in Lightbox
79
- * Advanced Link Button Design
80
- * Hover Description Template
81
- * Gallery Plugin Compatibility Settings
82
- * Gallery Admin Interface Modes
83
- * Video Links
84
- * Images Custom Ratio
85
- * Thumbnails Fade Effect
86
- * Advanced Load more function
87
- * SEO code optimization
88
- * Template
89
-
90
- = Gallery Pro Key Features =
91
-
92
- * Grid layout
93
- * Support Videos
94
- * Smart Links
95
- * Hover layout template
96
- * Customizable Grid
97
- * Customizable hover icons
98
- * Ability to insert gallery to the Wordpress widget
99
- * Clone gallery
100
- * Custom Thumbnails Shadows
101
- * Gallery Statistics
102
- * Gallery Backup
103
- * Multisite Support
104
- * Drag and Drop Category Manager
105
-
106
-
107
- > #### Useful Gallery Links
108
- >
109
- >[Multi Categories Cars Gallery Demo](http://robosoft.co/demo/gallery/cars-gallery-demo/)
110
- >
111
- >[Grid Layout Gallery Demo with Fade hover effect](http://robosoft.co/demo/gallery/custom-layout/)
112
- >
113
- >[Multi Categories Polaroid style Movie Gallery Demo with classic layout](http://robosoft.co/demo/gallery/gallery-demo-movie/)
114
- >
115
- >[Design Sketch Gallery Demo with grid layout](http://robosoft.co/demo/gallery/gallery-design/)
116
- >
117
- >[Multi Categories Gallery Demo with custom interface colors and classic layout](http://robosoft.co/demo/gallery/push-effect-demo/)
118
- >
119
- >[Video Gallery Demo with grid layout](http://robosoft.co/demo/gallery/design-video-gallery)
120
- >
121
- >[Technical Support for Robo Gallery](http://robosoft.co/robogallery)
122
- >
123
- >[Find More Details about Robo Gallery](http://robosoft.co/robogallery)
124
-
125
-
126
- == Installation ==
127
-
128
- You don't need do any additional configurations or manual code changes. You can install it through the regular installer of the Wordpress. Just download plugin and install it manually or automatically using Wordpress repository. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
129
-
130
- == Frequently Asked Questions ==
131
-
132
- = How to upload images to the gallery? =
133
-
134
- When you create new gallery or open already existent gallery for edit on the right side of the edit gallery section you'll see gallery images manager button. When you open gallery images manager you'll be able there edit all gallery images. Upload, edit or delete. In gallery images manager you can use drag and drop gallery images upload tool.
135
-
136
- = How to change quality of the gallery thumbnails? =
137
-
138
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
139
-
140
- = Where it's possible to define vertical and horizontal paddings? =
141
-
142
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
143
-
144
- = Do you have some limit for images size in gallery? =
145
-
146
- No, we don't have any limits for image size in our gallery.
147
-
148
- = How I can create custom (grid) layout of the thumbnails? =
149
-
150
- In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
151
-
152
- = Is it possible to insert video as gallery link? =
153
-
154
- Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have video link field in gallery image options, where you can define some custom link to the online video.
155
-
156
- = How to define size of the gallery images thumbnails? =
157
-
158
- Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
159
-
160
- = How to load more function work? =
161
-
162
- In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
163
-
164
- = How to change amount of the columns in gallery layout? =
165
-
166
- In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
167
-
168
- == Screenshots ==
169
-
170
- 1. Gallery Demo 1
171
- 2. Gallery Demo 2
172
- 3. Gallery Demo 3
173
- 4. Gallery Demo 4
174
- 5. Gallery Demo 5
175
- 6. Gallery Demo 6
176
- 7. Gallery general and size settings
177
- 8. Gallery layout settings
178
- 9. Gallery shadow and border settings
179
- 10. Gallery hover and menu settings
180
- 11. Gallery loading and Polaroid settings
181
- 12. Gallery buttons settings
182
-
183
- == Other Notes ==
184
-
185
- = Minimum requirements for Wordpress Robo Gallery =
186
-
187
- WordPress 3.3
188
- PHP 5.x
189
- MySQL 5.x
190
-
191
- = Gallery Compatibility =
192
-
193
- Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](http://robosoft.co/clients) and we'll to sort everything in short time.
194
-
195
- If any problem occurs, please contact us.
196
-
197
- == Changelog ==
198
-
199
- = 2.3.3 =
200
- * Fixes of the code related with core code strucutre
201
-
202
- = 2.3.2 =
203
- * Updated English and Russian language files
204
-
205
- = 2.3.1 =
206
- * Updated gallery front end code
207
- * SEO configuration option for thumbnails and links code
208
-
209
- = 2.3.0 =
210
- * Updated gallery code front end code
211
- * SEO option for enable/disable additional optimization
212
-
213
- = 2.2.0 =
214
- * Updated multisite functionality
215
-
216
- = 2.1.11 =
217
- * New lightbox description panel style, added new Green theme
218
-
219
- = 2.1.10 =
220
- * New lightbox description panel style, added new Blue theme
221
-
222
- = 2.1.9 =
223
- * New lightbox description panel style, added new Red theme
224
-
225
- = 2.1.8 =
226
- * Optimization of the admin lightbox settings
227
-
228
- = 2.1.7 =
229
- * Added images alt elements
230
-
231
- = 2.1.6 =
232
- * Updated background styles of the lightbox description panel settings
233
-
234
- = 2.1.5 =
235
- * Added dark and light styles for lightbox description panel
236
-
237
- = 2.1.4 =
238
- * Added background to lightbox description panel
239
-
240
- = 2.1.3 =
241
- * Added description panel source option
242
-
243
- = 2.1.2 =
244
- * Updated description panel style
245
-
246
- = 2.1.1 =
247
- * Added description panel in alternative JQuery mode
248
-
249
- = 2.1.0 =
250
- * Lightbox update
251
- * New description panel implemented
252
- * Added new option show/hide description panel
253
-
254
- = 2.0.41 =
255
- * Code modification related with position of description panel in lightbox
256
-
257
- = 2.0.40 =
258
- * Updated debug, added format html debug
259
-
260
- = 2.0.39 =
261
- * Update Polish language
262
-
263
- = 2.0.38 =
264
- * Update Russian language
265
-
266
- = 2.0.37 =
267
- * Added debug styles
268
-
269
- = 2.0.36 =
270
- * JS config output into debug console
271
-
272
- = 2.0.35 =
273
- * Debug section, data output in the case of excluded jQuery and alt jQuery
274
-
275
- = 2.0.34 =
276
- * Debug section, publishing information about alternative jQuery
277
-
278
- = 2.0.33 =
279
- * Debug section, added jQuery access check
280
-
281
- = 2.0.32 =
282
- * Added into debug section information output into console
283
-
284
- = 2.0.31 =
285
- * Updated debug functionality
286
-
287
- = 2.0.30 =
288
- * Added additional debug option, js files
289
-
290
- = 2.0.29 =
291
- * Added new debug options
292
-
293
- = 2.0.28 =
294
- * Fixed notice messages in the case of damaged meta data of images
295
-
296
- = 2.0.27 =
297
- * Fixed notice messages in the case of damaged images
298
-
299
- = 2.0.26 =
300
- * Changed method in code, improve security
301
-
302
- = 2.0.25 =
303
- * Updated statistics section
304
- * Added new total galleries value
305
-
306
- = 2.0.24 =
307
- * Updated statistics section
308
- * Added new total images value
309
-
310
- = 2.0.23 =
311
- * Code optimization
312
- * Changes in create post dialog
313
-
314
- = 2.0.22 =
315
- * Update for Polish language
316
-
317
- = 2.0.21 =
318
- * Update for Ukrainian and Russian language
319
-
320
- = 2.0.20 =
321
- * Added support of the old wordpress versions
322
-
323
- = 2.0.19 =
324
- * Security update v3
325
-
326
- = 2.0.18 =
327
- * Fixed warning in empty gallery (no images)
328
- * Fixed red boxes in empty gallery
329
-
330
- = 2.0.17 =
331
- * Security update v2
332
-
333
- = 2.0.16 =
334
- * Security update
335
-
336
- = 2.0.15 =
337
- * Security update, fixed ajax security
338
-
339
- = 2.0.14 =
340
- * Updated configuration and code optimization
341
-
342
- = 2.0.13 =
343
- * Updated video guides section, key installation guide
344
-
345
- = 2.0.12 =
346
- * Added Alt's for gallery images
347
-
348
- = 2.0.11 =
349
- * Additional fixes for Swipe and Alternative JQuery conflict
350
-
351
- = 2.0.10 =
352
- * Updated Swipe function
353
- * Fixed iOS scrolling problem
354
-
355
- = 2.0.9 =
356
- * Updated Polish language file
357
-
358
- = 2.0.8 =
359
- * Updated gallery menu alignment options
360
- * Added center alignment option
361
-
362
- = 2.0.7 =
363
- * Updated gallery menu alignment options
364
- * Added left/right alignment option
365
-
366
- = 2.0.6 =
367
- * Optimization of the HTML and JS code
368
-
369
- = 2.0.5 =
370
- * Updated Ukrainian language file
371
-
372
- = 2.0.4 =
373
- * Updated gallery lightbox functionality
374
- * Added button for download image source
375
-
376
- = 2.0.3 =
377
- * Updated Russian language file
378
-
379
- = 2.0.2 =
380
- * Updated gallery lightbox functionality
381
- * Added new mobile theme of lightbox
382
-
383
- = 2.0.1 =
384
- * Updated English language file
385
-
386
- = 2.0.0 =
387
- * Added new algorithm of mobile devices Swipe support
388
- * Implemented Android devices swipe support
389
- * Implemented iOS devices swipe support
390
-
391
- = 1.9.16 =
392
- * Updated structure of the core files
393
- * Preparation for update to version 2
394
-
395
- = 1.9.15 =
396
- * Updated video guide section
397
- * Added new Drag and Drop Categories manager video guide
398
-
399
- = 1.9.14 =
400
- * Fixed problem in clone gallery functionality
401
- * Fixed problem with Self label option
402
- * Fixed problem with Self images option
403
-
404
- = 1.9.13 =
405
- * Fixed PHP warning in images manager
406
-
407
- = 1.9.12 =
408
- * Update Russian language main file
409
-
410
- = 1.9.11 =
411
- * Update English language main file
412
-
413
- = 1.9.10 =
414
- * Code optimization and small code fixes
415
-
416
- = 1.9.9 =
417
- * Updated categories manager
418
- * Fixed conflict of removing parent category item
419
-
420
- = 1.9.8 =
421
- * Added views block in statistics section
422
-
423
- = 1.9.7 =
424
- * Fixed conflict with Flash
425
-
426
- = 1.9.6 =
427
- * Updated general gallery settings
428
- * Added option for switch between old style or drag and drop style categories manager
429
-
430
- = 1.9.5 =
431
- * Added new clean statistics confirmation dialog
432
-
433
- = 1.9.4 =
434
- * Fixed wordpress themes conflict
435
- * Fixed gallery menu conflict with wordpress themes
436
-
437
- = 1.9.3 =
438
- * Fixed wordpress theme conflict related with empty spacing replace by P tag
439
-
440
- = 1.9.2 =
441
- * Fixed problem related with old PHP version
442
-
443
- = 1.9.1 =
444
- * Fixed problem in gallery backend section in MacOS and Unix systems
445
- * Fixed problem with Statistics section on MacOS
446
- * Fixed problem with Backup section on MacOS
447
- * Fixed problem with Categories management section on MacOS
448
-
449
- = 1.9.0 =
450
- * Updated gallery categories management section
451
- * Added drag and drop categories manager
452
-
453
- = 1.8.9 =
454
- * Added new gallery reset views option in gallery edit mode, in statistics block
455
-
456
- = 1.8.8 =
457
- * Added new gallery views field in gallery listing section
458
-
459
- = 1.8.7 =
460
- * Added new statistics value in gallery
461
- * New gallery view value
462
-
463
- = 1.8.6 =
464
- * Fixed bug of the backend blocks status save
465
- * Added new engine for collection gallery views statistics
466
-
467
- = 1.8.5 =
468
- * Updated statistics gallery section
469
- * New trash gallery value
470
-
471
- = 1.8.4 =
472
- * Added new statistics section in gallery
473
- * Gallery drafts amount value
474
-
475
- = 1.8.3 =
476
- * Added new statistics section in gallery
477
- * Published galleries amount value
478
-
479
- = 1.8.2 =
480
- * Updated backup section functionality
481
- * Maximum POST size information section
482
-
483
- = 1.8.1 =
484
- * Updated backup section functionality
485
- * Updated full back up data processing
486
- * Added new statistic block about upload limit on server settings
487
-
488
- = 1.8.0 =
489
- * Updated backup section functionality
490
- * Added full backup with images mode
491
- * Backup create archive with settings and all gallery images inside
492
-
493
- = 1.7.13 =
494
- * Updated backup section functionality
495
- * Added new full backup section
496
-
497
- = 1.7.12 =
498
- * Updated backup section interface
499
- * Added doubled images statistics block
500
-
501
- = 1.7.11 =
502
- * Fixed conflict with plugin Page Builder developed by SiteOrigin
503
- * Fixed problem with Editor Plugin
504
-
505
- = 1.7.10 =
506
- * Updated backup section interface
507
- * Added new check for duplicated images for import
508
- * Added new check for duplicated galleries for import
509
- * Added option for skip or add duplicated elements
510
-
511
- = 1.7.9 =
512
- * Updated backup section interface
513
- * Added new tabbed section for export / import galleries settings
514
-
515
- = 1.7.8 =
516
- * Updated backup section functionality
517
- * Added new custom backup filename field
518
-
519
- = 1.7.7 =
520
- * Updated backup section functionality
521
- * Added new export file name with current date generated
522
-
523
- = 1.7.6 =
524
- * Updated backup section functionality
525
- * Added new import data statistics with notification of doubled posts and images
526
-
527
- = 1.7.5 =
528
- * Updated backup section functionality
529
- * Added statistics of the imported galleries
530
- * Added statistics of the imported images
531
-
532
- = 1.7.4 =
533
- * Updated code structure of the backup module
534
- * Fixed backup import security issues
535
- * Fixed backup export security issues
536
- * Optimized import/export code algorithm
537
-
538
- = 1.7.3 =
539
- * Backend interface of the backup functionality updates
540
- * Added new backup management button on gallery listing section
541
-
542
- = 1.7.2 =
543
- * Added new content to video guides section
544
- * Added link to images upload video guide
545
-
546
- = 1.7.1 =
547
- * Fixed error in backup module
548
-
549
- = 1.7.0 =
550
- * Added new gallery backup functionality
551
- * Implemented galleries export mode
552
- * Implemented galleries import mode
553
-
554
- = 1.6.9 =
555
- * Added new content to video guides section
556
- * Added link to gallery shortcode tools video guide
557
-
558
- = 1.6.8 =
559
- * Added new content to video guides section
560
- * Added link to gallery posts management video guide
561
-
562
- = 1.6.7 =
563
- * Added new content to video guides section
564
- * Added link to categories management gallery video guide
565
-
566
- = 1.6.6 =
567
- * Added new content to video guides section
568
- * Added link to Polaroid style gallery video guide
569
-
570
- = 1.6.5 =
571
- * Updated language translation files
572
- * Added new translation elements into Russian and Ukrainian languages
573
-
574
- = 1.6.4 =
575
- * Updated structure of the back end content management
576
- * Added new configuration features to the guides section
577
-
578
- = 1.6.3 =
579
- * Added gallery password protection support on the front end
580
- * Changed configuration of the gallery
581
-
582
- = 1.6.2 =
583
- * Updated notification section configuration
584
- * Added new content into video user guide section
585
- * Optimization of the back end code
586
-
587
- = 1.6.1 =
588
- * Added new video guides to the admin backend
589
- * Added link into guides library to: grid gallery layout video guide
590
-
591
- = 1.6.0 =
592
- * Added new translation to Portuguese
593
-
594
- = 1.5.10 =
595
- * New configuration option for post generator management
596
- * New Show/Hide post text field in plugin settings
597
-
598
- = 1.5.9 =
599
- * New options for post generator
600
- * Text filed for post generator wizard
601
- * Ability to customize text of new post with gallery tag inside it
602
-
603
- = 1.5.8 =
604
- * New options for post generator
605
- * Status option in generated posts list
606
-
607
- = 1.5.7 =
608
- * New options for post generator
609
- * Preview option in generated posts list
610
-
611
- = 1.5.6 =
612
- * New options for post generator
613
- * Edit option in generated posts list
614
-
615
- = 1.5.5 =
616
- * New options for post generator
617
- * Added new section with the list of the posts for current gallery
618
- * Edit mode for post list in generator section
619
-
620
- = 1.5.4 =
621
- * New option for post generator
622
- * Added edit post button in post dialog wizard
623
-
624
- = 1.5.3 =
625
- * New option for post generator
626
- * Added preview button in post dialog wizard
627
-
628
- = 1.5.2 =
629
- * New option for post generator
630
- * Possible define custom slug for new gallery post
631
-
632
- = 1.5.1 =
633
- * New option for post generator
634
- * Possible define custom title for new gallery post
635
-
636
- = 1.5.0 =
637
- * New gallery admin tools implemented
638
- * New post with gallery generator implemented
639
- * New wizard for target category for gallery post selection
640
- * Auto short tag generator in new created post
641
-
642
- = 1.4.7 =
643
- * Code optimization
644
- * Update of the API structure
645
- * Implemented new backend API structures
646
- * Backend code structure prepared to new interface elements
647
- * Small code fixes
648
-
649
- = 1.4.6 =
650
- * Added new text additional options
651
- * Implemented After Text option with HTML support
652
-
653
- = 1.4.5 =
654
- * Added new text additional options
655
- * Implemented PreText option with HTML support
656
-
657
- = 1.4.4 =
658
- * Updated image description processing code
659
- * Fixed HTML support in images description
660
- * Added more flexible HTML tags support in description
661
-
662
-
663
- = 1.4.3 =
664
- * Added new padding gallery options
665
- * Added left gallery padding value
666
- * Added top gallery padding value
667
- * Added right gallery padding value
668
- * Added bottom gallery padding value
669
-
670
- = 1.4.2 =
671
- * Added new values for gallery align in content option
672
- * Added left side alignment
673
- * Added right side alignment
674
-
675
- = 1.4.1 =
676
- * Added new gallery align in content option
677
- * Added gallery center alignment
678
- * Updated gallery output workflow
679
-
680
- = 1.4.0 =
681
- * Added new gallery width option
682
- * Gallery width values in pixels
683
- * Gallery width values in percents
684
- * Small code fixes and optimization
685
-
686
-
687
- = 1.3.9 =
688
- * Fixed self show images options
689
- * Enabled to show self images by default after gallery update
690
- * Updated configuration options
691
-
692
- = 1.3.8 =
693
- * Updated navigation functionality
694
- * Added new show/hide self images function
695
-
696
- = 1.3.7 =
697
- * Updated lightbox functionality
698
- * Implemented new show/hide navigation arrows option
699
- * Fixed minor notifications
700
- * Code optimization
701
-
702
- = 1.3.6 =
703
- * Added lightbox functionality
704
- * Created new show/hide close button option
705
- * Fixed few conflicts in gallery backend
706
- * Updated implementation of some navigation interface elements
707
- * Improved media manager implementation to avoid conflicts
708
-
709
- = 1.3.5 =
710
- * Updated lightbox functionality
711
- * Implemented new show/hide images counter option
712
-
713
- = 1.3.4 =
714
- * New thumbnails click mode
715
- * Added new feature for enable/disable click with disabled buttons
716
- * Switch between lightbox and link mode with disabled buttons
717
-
718
- = 1.3.3 =
719
- * Added new lightbox options
720
- * Possibility to select caption, title or description below image in lightbox
721
-
722
- = 1.3.2 =
723
- * Line height option for description, link and zoom button
724
-
725
- = 1.3.1 =
726
- * Updated categories workflow
727
- * Empty gallery support
728
- * More complicated categories structure support
729
-
730
-
731
- = 1.3.0 =
732
- * Implemented smart links processing
733
- * Auto detection links with turned off link navigation button
734
- * Auto detection video link with turned off video navigation button
735
- * New linking processing mode
736
- * New video processing mode
737
-
738
- = 1.2.5 =
739
- * Added German language
740
- * Added Czech language
741
-
742
- = 1.2.4 =
743
- * Added Dutch language
744
-
745
- = 1.2.3 =
746
- * Updated lightbox background color settings
747
- * Updated lightbox navigation elements code structure to avoid conflicts
748
- * Updeded language files
749
-
750
-
751
- = 1.2.2 =
752
- * Added new feature to avoid not included JS/CSS files because of incorrect coding in Wordpress theme
753
- * Added option to switch between JQuery usage modes
754
- * Updated social sharing workflow in lightbox
755
- * Added function to enable deep linking in facebook
756
- * Added function to enable deep linking in twitter
757
- * Added function to enable deep linking in pinterest
758
- * Added function to enable deep linking in google+
759
-
760
- = 1.2.1 =
761
- * Fixed PHP Notices
762
-
763
- = 1.2.0 =
764
- * Updated interface elements in back end
765
- * Wordpress 4.3 support
766
- * Implemented additional interface optimization options
767
- * New backend style interface modes
768
- * Added new compatibility settings to avoid jQuery conflicts
769
-
770
- = 1.1.5 =
771
- * Updated admin interface settings modes
772
- * Code optimization
773
- * Small bugs fixing
774
-
775
- = 1.1.4 =
776
- * Added hide image title in lightbox option
777
- * Сode optimization
778
-
779
- = 1.1.3 =
780
- * Added new compatibility settings for backend interface element to avoid conflicts
781
-
782
- = 1.1.2 =
783
- * Added new compatibility settings to avoid jQuery conflicts
784
-
785
- = 1.1.1 =
786
- * Java script code optimization
787
- * Minor bugs fixed
788
-
789
- = 1.1.0 =
790
- * Added new clone gallery settings function
791
- * Fast inheriting of the gallery settings from another gallery
792
- * Define gallery settings in one place and create as much galleries with the same interface as you need. Just create new gallery, upload images and inherit settings from another created gallery. Very useful tools for websites with a lot of galleries
793
- * Life and time saver for webmasters
794
-
795
- = 1.0.6 =
796
- * Code optimization and structure update
797
- * Minor bugs fixed
798
-
799
- = 1.0.5 =
800
- * Updated compatibility functionality
801
- * Minor bugs fixed
802
-
803
- = 1.0.4 =
804
- * Changed default settings of the gallery
805
- * Default gallery settings the same as Movie Gallery demo
806
-
807
- = 1.0.3 =
808
- * Added compatibility with editor plugins
809
- * More stable workflow with Wordpress editors
810
- * Added support of the old versions of the PHP (which didn't support anonymous functions)
811
- * Updated default settings set
812
- * Updated algorithm of the files paths processing
813
-
814
- = 1.0.2 =
815
- * By request of our gallery users we add new features:
816
- * Added new lightbox settings block
817
- * Added ability to edit background color of the lightbox
818
- * Added ability to change transparency of the background in lightbox
819
- * Added color and transparency settings for lightbox text
820
- * Added function for enable/disable social buttons in lightbox
821
-
822
- = 1.0.1 =
823
- * Updates of admin backend functionality
824
- * Fixed categories error
825
- * Fixed images sorting
826
- * Fixed thumbnails layout functionality
827
-
828
- = 1.0 =
829
- * First release
830
-
831
- == Upgrade Notice ==
832
-
833
- = 2.3.3 =
834
- Fixes of the code related with core code strucutre
835
-
836
- = 2.3.2 =
837
- Updated English and Russian language files
838
-
839
- = 2.3.1 =
840
- Updated gallery front end code
841
- SEO configuration option for thumbnails and links code
842
-
843
- = 2.3.0 =
844
- Updated gallery code front end code
845
- SEO option for enable/disable additional optimization
846
-
847
- = 2.2.0 =
848
- Updated multisite functionality
849
-
850
- = 2.1.11 =
851
- New lightbox description panel style, added new Green theme
852
-
853
- = 2.1.10 =
854
- New lightbox description panel style, added new Blue theme
855
-
856
- = 2.1.9 =
857
- New lightbox description panel style, added new Red theme
858
-
859
- = 2.1.8 =
860
- Optimization of the admin lightbox settings
861
-
862
- = 2.1.7 =
863
- Added images alt elements
864
-
865
- = 2.1.6 =
866
- Updated background styles of the lightbox description panel settings
867
-
868
- = 2.1.5 =
869
- Added dark and light styles for lightbox description panel
870
-
871
- = 2.1.4 =
872
- Added background to lightbox description panel
873
-
874
- = 2.1.3 =
875
- Added description panel source option
876
-
877
- = 2.1.2 =
878
- Updated description panel style
879
-
880
- = 2.1.1 =
881
- Added description panel in alternative JQuery mode
882
-
883
- = 2.1.0 =
884
- Lightbox update
885
- New description panel implemented
886
- Added new option show/hide description panel
887
-
888
- = 2.0.41 =
889
- Code modification related with position of description panel in lightbox
890
-
891
- = 2.0.40 =
892
- Updated debug, added format html debug
893
-
894
- = 2.0.39 =
895
- Update Polish language
896
-
897
- = 2.0.38 =
898
- Update Russian language
899
-
900
- = 2.0.37 =
901
- Added debug styles
902
-
903
- = 2.0.36 =
904
- JS config output into debug console
905
-
906
- = 2.0.35 =
907
- Debug section, data output in the case of excluded jQuery and alt jQuery
908
-
909
- = 2.0.34 =
910
- Debug section, publishing information about alternative jQuery
911
-
912
- = 2.0.33 =
913
- Debug section, added jQuery access check
914
-
915
- = 2.0.32 =
916
- Added into debug section information output into console
917
-
918
- = 2.0.31 =
919
- Updated debug functionality
920
-
921
- = 2.0.30 =
922
- Added additional debug option, js files
923
-
924
- = 2.0.29 =
925
- Added new debug options
926
-
927
- = 2.0.28 =
928
- Fixed notice messages in the case of damaged meta data of images
929
-
930
- = 2.0.27 =
931
- Fixed notice messages in the case of damaged images
932
-
933
- = 2.0.26 =
934
- Changed method in code, improve security
935
-
936
- = 2.0.25 =
937
- Updated statistics section, added new total galleries value
938
-
939
- = 2.0.24 =
940
- Updated statistics section, added new total images value
941
-
942
- = 2.0.23 =
943
- Code optimization, changes in create post dialog
944
-
945
- = 2.0.22 =
946
- Update for Polish language
947
-
948
- = 2.0.21 =
949
- Update for Ukrainian and Russian language
950
-
951
- = 2.0.20 =
952
- Added support of the old wordpress versions
953
-
954
- = 2.0.19 =
955
- Security update v3
956
-
957
- = 2.0.18 =
958
- Fixed warning in empty gallery (no images), fixed red boxes in empty gallery
959
-
960
- = 2.0.17 =
961
- Security update v2
962
-
963
- = 2.0.16 =
964
- Security update
965
-
966
- = 2.0.15 =
967
- Security update, fixed ajax security
968
-
969
- = 2.0.14 =
970
- Updated configuration and code optimization
971
-
972
- = 2.0.13 =
973
- Updated video guides section, key installation guide
974
-
975
- = 2.0.12 =
976
- Added Alt's for gallery images
977
-
978
- = 2.0.11 =
979
- Additional fixes for Swipe and Alternative JQuery conflict
980
-
981
- = 2.0.10 =
982
- Updated Swipe function, fixed iOS scrolling problem
983
-
984
- = 2.0.9 =
985
- Updated Polish language file
986
-
987
- = 2.0.8 =
988
- Updated gallery menu alignment options, added center alignment option
989
-
990
- = 2.0.7 =
991
- Updated gallery menu alignment options, added left/right alignment option
992
-
993
- = 2.0.6 =
994
- Optimization of the HTML and JS code
995
-
996
- = 2.0.5 =
997
- Updated Ukrainian language file
998
-
999
- = 2.0.4 =
1000
- Updated gallery lightbox functionality, added button for download image source
1001
-
1002
- = 2.0.3 =
1003
- Updated Russian language file
1004
-
1005
- = 2.0.2 =
1006
- Updated gallery lightbox functionality, added new mobile theme of lightbox
1007
-
1008
- = 2.0.1 =
1009
- Updated English language file
1010
-
1011
- = 2.0.0 =
1012
- Added new algorithm of mobile devices Swipe support, implemented Android and iOS devices swipe support
1013
-
1014
- = 1.9.16 =
1015
- Updated structure of the core files, preparation for update to version 2
1016
-
1017
- = 1.9.15 =
1018
- Updated video guide section, added new Drag and Drop Categories manager video guide
1019
-
1020
- = 1.9.14 =
1021
- Fixed problem in clone gallery functionality, fixed problem with Self label and images option
1022
-
1023
- = 1.9.13 =
1024
- Fixed PHP warning in images manager
1025
-
1026
- = 1.9.12 =
1027
- Update Russian language main file
1028
-
1029
- = 1.9.11 =
1030
- Update English language main file
1031
-
1032
- = 1.9.10 =
1033
- Code optimization and small code fixes
1034
-
1035
- = 1.9.9 =
1036
- Updated categories manager
1037
- Fixed conflict of removing parent category item
1038
-
1039
- = 1.9.8 =
1040
- Added views block in statistics section
1041
-
1042
- = 1.9.7 =
1043
- Fixed conflict with Flash
1044
-
1045
- = 1.9.6 =
1046
- Added option for switch between old style or drag and drop style categories manager
1047
-
1048
- = 1.9.5 =
1049
- Added new clean statistics confirmation dialog
1050
-
1051
- = 1.9.4 =
1052
- Fixed wordpress themes conflict, fixed gallery menu conflict with wordpress themes
1053
-
1054
- = 1.9.3 =
1055
- Fixed wordpress theme conflict related with empty spacing replace by P tag
1056
-
1057
- = 1.9.2 =
1058
- Fixed problem related with old PHP version
1059
-
1060
- = 1.9.1 =
1061
- Fixed problem in gallery backend Categories, Statistics and Backup sections in MacOS and Unix systems
1062
-
1063
- = 1.9.0 =
1064
- Updated gallery categories management section, added drag and drop categories manager
1065
-
1066
- = 1.8.9 =
1067
- Added new gallery reset views option in gallery edit mode, in statistics block
1068
-
1069
- = 1.8.8 =
1070
- Added new gallery views field in gallery listing section
1071
-
1072
- = 1.8.7 =
1073
- Added new statistics value in gallery, new gallery view value
1074
-
1075
- = 1.8.6 =
1076
- Fixed bug of the backend blocks status save, added new engine for collection gallery views statistics
1077
-
1078
- = 1.8.5 =
1079
- Updated statistics gallery section, new trash gallery value
1080
-
1081
- = 1.8.4 =
1082
- Added new statistics section in gallery, gallery drafts amount value
1083
-
1084
- = 1.8.3 =
1085
- Added new statistics section in gallery, published galleries amount value
1086
-
1087
- = 1.8.2 =
1088
- Updated backup section functionality, maximum POST size information section
1089
-
1090
- = 1.8.1 =
1091
- Updated full back up data processing, Added new statistic block about upload limit on server settings
1092
-
1093
- = 1.8.0 =
1094
- Added full backup with images mode, backup create archive with settings and all gallery images inside
1095
-
1096
- = 1.7.13 =
1097
- Updated backup section functionality, added new full backup section
1098
-
1099
- = 1.7.12 =
1100
- Updated backup section interface, added doubled images statistics block
1101
-
1102
- = 1.7.11 =
1103
- Fixed conflict with plugin Page Builder developed by SiteOrigin, fixed problem with Editor Plugin
1104
-
1105
- = 1.7.10 =
1106
- Updated backup section interface, added option for skip or add duplicated elements
1107
-
1108
- = 1.7.9 =
1109
- Updated backup section interface, added new tabbed section for export / import galleries settings
1110
-
1111
- = 1.7.8 =
1112
- Updated backup section functionality, added new custom backup filename field
1113
-
1114
- = 1.7.7 =
1115
- Updated backup section functionality, added new export file name with current date generated
1116
-
1117
- = 1.7.6 =
1118
- Updated backup section functionality, added new import notification of doubled posts and images
1119
-
1120
- = 1.7.5 =
1121
- Updated backup section functionality, added statistics of the imported galleries and images
1122
-
1123
- = 1.7.4 =
1124
- Updated code structure of the backup module, fixed backup import/export security issues, optimized code algorithm
1125
-
1126
- = 1.7.3 =
1127
- Backend interface of the backup functionality updates, added new backup management button on gallery listing section
1128
-
1129
- = 1.7.2 =
1130
- Added new content to video guides section, added link to images upload video guide
1131
-
1132
- = 1.7.1 =
1133
- Fixed error in backup module
1134
-
1135
- = 1.7.0 =
1136
- Added new gallery backup functionality, Implemented galleries export/import mode
1137
-
1138
- = 1.6.9 =
1139
- Added new content to video guides section, added link to gallery shortcode tools video guide
1140
-
1141
- = 1.6.8 =
1142
- Added new content to video guides section, added link to gallery posts management video guide
1143
-
1144
- = 1.6.7 =
1145
- Added new content to video guides section, added link to categories management gallery guide
1146
-
1147
- = 1.6.6 =
1148
- Added new content to video guides section, added link to Polaroid style gallery video guide
1149
-
1150
- = 1.6.5 =
1151
- Updated language translation files, added new translation elements into Russian and Ukrainian languages
1152
-
1153
- = 1.6.4 =
1154
- Updated structure of the back end content management, Added new configuration features to the guides
1155
-
1156
- = 1.6.3 =
1157
- Added gallery password protection support on the front end, changed configuration of the gallery
1158
-
1159
- = 1.6.2 =
1160
- Updated notification section configuration, added new content into video user guide section
1161
-
1162
- = 1.6.1 =
1163
- Added video guides to the admin backend, added link into guides library to: grid gallery layout guide
1164
-
1165
- = 1.6.0 =
1166
- Added new translation to Portuguese
1167
-
1168
- = 1.5.10 =
1169
- New configuration option for post generator management, Show/Hide post text field in plugin settings
1170
-
1171
- = 1.5.9 =
1172
- Text filed for post generator wizard, ability to customize text of new post with gallery tag inside it
1173
-
1174
- = 1.5.8 =
1175
- New options for post generator, status option in generated posts list
1176
-
1177
- = 1.5.7 =
1178
- New options for post generator, preview option in generated posts list
1179
-
1180
- = 1.5.6 =
1181
- New options for post generator, edit option in generated posts list
1182
-
1183
- = 1.5.5 =
1184
- Added new section with the list of the posts for current gallery, edit mode for post list in generator section
1185
-
1186
- = 1.5.4 =
1187
- New option for post generator, added edit post button in post dialog wizard
1188
-
1189
- = 1.5.3 =
1190
- New option for post generator, added preview button in post dialog wizard
1191
-
1192
- = 1.5.2 =
1193
- New option for post generator, possible define custom slug for new gallery post
1194
-
1195
- = 1.5.1 =
1196
- New option for post generator, possible define custom title for new gallery post
1197
-
1198
- = 1.5.0 =
1199
- New wizard for auto post generation with shortcode inside it, new gallery admin tools implemented
1200
-
1201
- = 1.4.7 =
1202
- Implemented new backend API structures, prepared new interface elements
1203
-
1204
- = 1.4.6 =
1205
- Added new text additional options, implemented After Text option with HTML support
1206
-
1207
- = 1.4.5 =
1208
- Added new text additional options, implemented PreText option with HTML support
1209
-
1210
- = 1.4.4 =
1211
- Added more flexible HTML tags support in description, fixed HTML processing in images description field
1212
-
1213
- = 1.4.3 =
1214
- Added new padding gallery options. Added left, top, right and bottom gallery padding value
1215
-
1216
- = 1.4.2 =
1217
- Added new left and right values for gallery align in content option
1218
-
1219
- = 1.4.1 =
1220
- Added new gallery align in content option, added gallery center alignment, updated output workflow
1221
-
1222
- = 1.4.0 =
1223
- Added new gallery width option, gallery width values in pixels and percents
1224
-
1225
- = 1.3.9 =
1226
- Fixed self show images options, enabled to show self images by default after gallery update
1227
-
1228
- = 1.3.8 =
1229
- Updated navigation functionality, added new show/hide self images function
1230
-
1231
- = 1.3.7 =
1232
- Updated lightbox functionality, new show/hide navigation arrows option, fixed minor notifications
1233
-
1234
- = 1.3.6 =
1235
- Updated lightbox functionality, implemented show/hide close button option, fixed backend conflicts
1236
-
1237
- = 1.3.5 =
1238
- Updated lightbox functionality, implemented new show/hide images counter option
1239
-
1240
- = 1.3.4 =
1241
- Switch between lightbox and link mode with disabled buttons
1242
-
1243
- = 1.3.3 =
1244
- New lightbox options, possibility to select caption, title or description below image in lightbox
1245
-
1246
- = 1.3.2 =
1247
- Line height option for description, link and zoom button
1248
-
1249
- = 1.3.1 =
1250
- Updated categories workflow, empty gallery support, more complicated categories structure support
1251
-
1252
- = 1.3.0 =
1253
- Implemented smart links processing, auto detection links and videos with turned off navigation button
1254
-
1255
- = 1.2.5 =
1256
- Added German and Czech language
1257
-
1258
- = 1.2.4 =
1259
- Added Dutch language
1260
-
1261
- = 1.2.3 =
1262
- Updated lightbox background, navigation elements code and language files
1263
-
1264
- = 1.2.2 =
1265
- Added social deep linking option, new feature to fix problems with JS/CSS including caused by theme
1266
-
1267
- = 1.2.1 =
1268
- Fixed PHP Notices
1269
-
1270
- = 1.2.0 =
1271
- Updated interface elements in back end, Wordpress 4.3 support, interface optimization options
1272
-
1273
- = 1.1.5 =
1274
- Updated admin interface settings modes, code optimization
1275
-
1276
- = 1.1.4 =
1277
- Added hide image title in lightbox option
1278
-
1279
- = 1.1.3 =
1280
- Added new compatibility settings for backend interface element to avoid conflicts
1281
-
1282
- = 1.1.2 =
1283
- Added new compatibility settings to avoid jQuery conflicts
1284
-
1285
- = 1.1.1 =
1286
- Java script code optimization, minor bugs fixed
1287
-
1288
- = 1.1.0 =
1289
- Added new clone gallery settings. Advanced tool to save a lot of time for webmaster
1290
-
1291
- = 1.0.6 =
1292
- Code optimization and structure update, minor bugs fixed
1293
-
1294
- = 1.0.5 =
1295
- Updated compatibility functionality, minor bugs fixed
1296
-
1297
- = 1.0.4 =
1298
- By request of our customers: Default gallery settings the same as Movie Gallery demo
1299
-
1300
- = 1.0.3 =
1301
- By request of our customers: updated plugin workflow with editors, old PHP version support, paths management
1302
-
1303
- = 1.0.2 =
1304
- By request of our customers: added new lightbox settings. Background color, text color, social buttons enable/disable.
1305
-
1306
- = 1.0.1 =
1307
- Upgraded backend functionality. Fixed categories errors, images sorting and thumbnails layout functionality
1308
-
1309
- = 1.0 =
1310
- This is first release of the plugin
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Gallery - Photo Gallery and Images Gallery ===
2
+ Contributors: robosoft
3
+ Tags: gallery, Gallery Plugin, photo gallery, images gallery, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, pictures, portfolio gallery, video gallery, images
4
+ Requires at least: 3.3
5
+ Tested up to: 4.5
6
+ Stable tag: 2.4.0
7
+ License: GPLv2 or later
8
+ License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
+
10
+ Gallery. It's really attractive part of your pages. Gallery with categories, highly customizable gallery with videos, links and lightbox
11
+
12
+ == Description ==
13
+
14
+ #### [Gallery Most Easy and Powerful plugin to create attractive image section on your WordPress website.](http://robosoft.co/robogallery/#overview)
15
+
16
+ #### Gallery on your website it's really attractive and very important part of your pages. If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](http://robosoft.co/robogallery/#overview) Gallery where even newbie in Wordpress will be able to create your first gallery in few minutes and at the same time Wordpress professionals get advanced tools and freedom of creativity. Just download this Gallery and you'll not look for any other gallery any more! [Fall in Love with this Gallery like we do!](http://robosoft.co/robogallery/#overview)
17
+
18
+ > #### New function
19
+ >
20
+ > Tags for gallery images. It's alternative navigation mode in gallery. You can easily switch between regular gallery categories filter on top to the tags mode
21
+ >
22
+
23
+ = Install and create your first Wordpress gallery in few minutes =
24
+
25
+ [youtube https://www.youtube.com/watch?v=m9XIeqMnhYI&feature=youtu.be]
26
+
27
+ > #### Gallery Demos
28
+ >
29
+ >[Multi Categories Cars Gallery Demo](http://robosoft.co/demo/gallery/cars-gallery-demo/)
30
+ >
31
+ >[Grid Layout Gallery Demo with Fade hover effect](http://robosoft.co/demo/gallery/custom-layout/)
32
+ >
33
+ >[Multi Categories Polaroid style Movie Gallery Demo with classic layout](http://robosoft.co/demo/gallery/gallery-demo-movie/)
34
+ >
35
+ >[Design Sketch Gallery Demo with grid layout](http://robosoft.co/demo/gallery/gallery-design/)
36
+ >
37
+ >[Multi Categories Gallery Demo with custom interface colors and classic layout](http://robosoft.co/demo/gallery/push-effect-demo/)
38
+ >
39
+ >[Video Gallery Demo with grid layout](http://robosoft.co/demo/gallery/design-video-gallery)
40
+
41
+
42
+ = Gallery Key Features =
43
+
44
+ * Fully responsive and Mobile features
45
+ * Fade effects
46
+ * Batch images upload
47
+ * Auto-resizing for thumbnails and images
48
+ * Customizable 15 hover effects
49
+ * Implemented to avoid AJAX libs conflicts
50
+ * Polaroid style gallery
51
+ * Advanced Polaroid Styles
52
+ * Build in colors selector
53
+ * Social sharing
54
+ * Build in borders and shadows settings
55
+ * Font settings
56
+ * Different resolutions
57
+ * Implemented in native Wordpress style using native classes
58
+ * Multi Categories
59
+ * Classic gallery layout
60
+ * Advanced pagination function
61
+ * Work in IE, Firefox, Safari, Opera, Chrome
62
+ * Lazy loading option
63
+ * Advanced cache options
64
+ * Overlay effects
65
+ * Backend text settings preview
66
+ * Resizing crop function
67
+ * Optional mobile touch support
68
+ * Custom ordering of the images
69
+ * Ability to insert gallery to the Wordpress post, page, widget
70
+ * Gallery lightbox social buttons
71
+ * Gallery lightbox background color
72
+ * Gallery lightbox background transparency
73
+ * Gallery lightbox font color
74
+ * Gallery lightbox font transparency
75
+ * Advanced Compatibility
76
+ * Advanced Social Sharing
77
+ * Click Thumbnails
78
+ * Gallery alignment
79
+ * Gallery Padding
80
+ * Post generator
81
+ * Description Panel
82
+ * Swipe in Lightbox
83
+ * Advanced Link Button Design
84
+ * Hover Description Template
85
+ * Gallery Plugin Compatibility Settings
86
+ * Gallery Admin Interface Modes
87
+ * Video Links
88
+ * Images Custom Ratio
89
+ * Thumbnails Fade Effect
90
+ * Advanced Load more function
91
+ * SEO code optimization
92
+ * Template
93
+
94
+ = Gallery Pro Key Features =
95
+
96
+ * Tags for gallery images
97
+ * Grid layout
98
+ * Support Videos
99
+ * Smart Links
100
+ * Hover layout template
101
+ * Customizable Grid
102
+ * Customizable hover icons
103
+ * Ability to insert gallery to the Wordpress widget
104
+ * Clone gallery
105
+ * Custom Thumbnails Shadows
106
+ * Gallery Statistics
107
+ * Gallery Backup
108
+ * Multisite Support
109
+ * Drag and Drop Category Manager
110
+
111
+
112
+ > #### Useful Gallery Links
113
+ >
114
+ >[Multi Categories Cars Gallery Demo](http://robosoft.co/demo/gallery/cars-gallery-demo/)
115
+ >
116
+ >[Grid Layout Gallery Demo with Fade hover effect](http://robosoft.co/demo/gallery/custom-layout/)
117
+ >
118
+ >[Multi Categories Polaroid style Movie Gallery Demo with classic layout](http://robosoft.co/demo/gallery/gallery-demo-movie/)
119
+ >
120
+ >[Design Sketch Gallery Demo with grid layout](http://robosoft.co/demo/gallery/gallery-design/)
121
+ >
122
+ >[Multi Categories Gallery Demo with custom interface colors and classic layout](http://robosoft.co/demo/gallery/push-effect-demo/)
123
+ >
124
+ >[Video Gallery Demo with grid layout](http://robosoft.co/demo/gallery/design-video-gallery)
125
+ >
126
+ >[Technical Support for Robo Gallery](http://robosoft.co/robogallery)
127
+ >
128
+ >[Find More Details about Robo Gallery](http://robosoft.co/robogallery)
129
+
130
+
131
+ == Installation ==
132
+
133
+ You don't need do any additional configurations or manual code changes. You can install it through the regular installer of the Wordpress. Just download plugin and install it manually or automatically using Wordpress repository. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
134
+
135
+ == Frequently Asked Questions ==
136
+
137
+ = How to upload images to the gallery? =
138
+
139
+ When you create new gallery or open already existent gallery for edit on the right side of the edit gallery section you'll see gallery images manager button. When you open gallery images manager you'll be able there edit all gallery images. Upload, edit or delete. In gallery images manager you can use drag and drop gallery images upload tool.
140
+
141
+ = How to change quality of the gallery thumbnails? =
142
+
143
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
144
+
145
+ = Where it's possible to define vertical and horizontal paddings? =
146
+
147
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
148
+
149
+ = Do you have some limit for images size in gallery? =
150
+
151
+ No, we don't have any limits for image size in our gallery.
152
+
153
+ = How I can create custom (grid) layout of the thumbnails? =
154
+
155
+ In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
156
+
157
+ = Is it possible to insert video as gallery link? =
158
+
159
+ Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have video link field in gallery image options, where you can define some custom link to the online video.
160
+
161
+ = How to define size of the gallery images thumbnails? =
162
+
163
+ Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
164
+
165
+ = How to load more function work? =
166
+
167
+ In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
168
+
169
+ = How to change amount of the columns in gallery layout? =
170
+
171
+ In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
172
+
173
+ == Screenshots ==
174
+
175
+ 1. Gallery Demo 1
176
+ 2. Gallery Demo 2
177
+ 3. Gallery Demo 3
178
+ 4. Gallery Demo 4
179
+ 5. Gallery Demo 5
180
+ 6. Gallery Demo 6
181
+ 7. Gallery general and size settings
182
+ 8. Gallery layout settings
183
+ 9. Gallery shadow and border settings
184
+ 10. Gallery hover and menu settings
185
+ 11. Gallery loading and Polaroid settings
186
+ 12. Gallery buttons settings
187
+
188
+ == Other Notes ==
189
+
190
+ = Minimum requirements for Wordpress Robo Gallery =
191
+
192
+ WordPress 3.3
193
+ PHP 5.x
194
+ MySQL 5.x
195
+
196
+ = Gallery Compatibility =
197
+
198
+ Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](http://robosoft.co/clients) and we'll to sort everything in short time.
199
+
200
+ If any problem occurs, please contact us.
201
+
202
+ == Changelog ==
203
+
204
+ = 2.4.0 =
205
+ * Added multi tags field for every image
206
+ * New tags functionality for images filtering in PRO version
207
+
208
+ = 2.3.3 =
209
+ * Fixes of the code related with core code strucutre
210
+
211
+ = 2.3.2 =
212
+ * Updated English and Russian language files
213
+
214
+ = 2.3.1 =
215
+ * Updated gallery front end code
216
+ * SEO configuration option for thumbnails and links code
217
+
218
+ = 2.3.0 =
219
+ * Updated gallery code front end code
220
+ * SEO option for enable/disable additional optimization
221
+
222
+ = 2.2.0 =
223
+ * Updated multisite functionality
224
+
225
+ = 2.1.11 =
226
+ * New lightbox description panel style, added new Green theme
227
+
228
+ = 2.1.10 =
229
+ * New lightbox description panel style, added new Blue theme
230
+
231
+ = 2.1.9 =
232
+ * New lightbox description panel style, added new Red theme
233
+
234
+ = 2.1.8 =
235
+ * Optimization of the admin lightbox settings
236
+
237
+ = 2.1.7 =
238
+ * Added images alt elements
239
+
240
+ = 2.1.6 =
241
+ * Updated background styles of the lightbox description panel settings
242
+
243
+ = 2.1.5 =
244
+ * Added dark and light styles for lightbox description panel
245
+
246
+ = 2.1.4 =
247
+ * Added background to lightbox description panel
248
+
249
+ = 2.1.3 =
250
+ * Added description panel source option
251
+
252
+ = 2.1.2 =
253
+ * Updated description panel style
254
+
255
+ = 2.1.1 =
256
+ * Added description panel in alternative JQuery mode
257
+
258
+ = 2.1.0 =
259
+ * Lightbox update
260
+ * New description panel implemented
261
+ * Added new option show/hide description panel
262
+
263
+ = 2.0.41 =
264
+ * Code modification related with position of description panel in lightbox
265
+
266
+ = 2.0.40 =
267
+ * Updated debug, added format html debug
268
+
269
+ = 2.0.39 =
270
+ * Update Polish language
271
+
272
+ = 2.0.38 =
273
+ * Update Russian language
274
+
275
+ = 2.0.37 =
276
+ * Added debug styles
277
+
278
+ = 2.0.36 =
279
+ * JS config output into debug console
280
+
281
+ = 2.0.35 =
282
+ * Debug section, data output in the case of excluded jQuery and alt jQuery
283
+
284
+ = 2.0.34 =
285
+ * Debug section, publishing information about alternative jQuery
286
+
287
+ = 2.0.33 =
288
+ * Debug section, added jQuery access check
289
+
290
+ = 2.0.32 =
291
+ * Added into debug section information output into console
292
+
293
+ = 2.0.31 =
294
+ * Updated debug functionality
295
+
296
+ = 2.0.30 =
297
+ * Added additional debug option, js files
298
+
299
+ = 2.0.29 =
300
+ * Added new debug options
301
+
302
+ = 2.0.28 =
303
+ * Fixed notice messages in the case of damaged meta data of images
304
+
305
+ = 2.0.27 =
306
+ * Fixed notice messages in the case of damaged images
307
+
308
+ = 2.0.26 =
309
+ * Changed method in code, improve security
310
+
311
+ = 2.0.25 =
312
+ * Updated statistics section
313
+ * Added new total galleries value
314
+
315
+ = 2.0.24 =
316
+ * Updated statistics section
317
+ * Added new total images value
318
+
319
+ = 2.0.23 =
320
+ * Code optimization
321
+ * Changes in create post dialog
322
+
323
+ = 2.0.22 =
324
+ * Update for Polish language
325
+
326
+ = 2.0.21 =
327
+ * Update for Ukrainian and Russian language
328
+
329
+ = 2.0.20 =
330
+ * Added support of the old wordpress versions
331
+
332
+ = 2.0.19 =
333
+ * Security update v3
334
+
335
+ = 2.0.18 =
336
+ * Fixed warning in empty gallery (no images)
337
+ * Fixed red boxes in empty gallery
338
+
339
+ = 2.0.17 =
340
+ * Security update v2
341
+
342
+ = 2.0.16 =
343
+ * Security update
344
+
345
+ = 2.0.15 =
346
+ * Security update, fixed ajax security
347
+
348
+ = 2.0.14 =
349
+ * Updated configuration and code optimization
350
+
351
+ = 2.0.13 =
352
+ * Updated video guides section, key installation guide
353
+
354
+ = 2.0.12 =
355
+ * Added Alt's for gallery images
356
+
357
+ = 2.0.11 =
358
+ * Additional fixes for Swipe and Alternative JQuery conflict
359
+
360
+ = 2.0.10 =
361
+ * Updated Swipe function
362
+ * Fixed iOS scrolling problem
363
+
364
+ = 2.0.9 =
365
+ * Updated Polish language file
366
+
367
+ = 2.0.8 =
368
+ * Updated gallery menu alignment options
369
+ * Added center alignment option
370
+
371
+ = 2.0.7 =
372
+ * Updated gallery menu alignment options
373
+ * Added left/right alignment option
374
+
375
+ = 2.0.6 =
376
+ * Optimization of the HTML and JS code
377
+
378
+ = 2.0.5 =
379
+ * Updated Ukrainian language file
380
+
381
+ = 2.0.4 =
382
+ * Updated gallery lightbox functionality
383
+ * Added button for download image source
384
+
385
+ = 2.0.3 =
386
+ * Updated Russian language file
387
+
388
+ = 2.0.2 =
389
+ * Updated gallery lightbox functionality
390
+ * Added new mobile theme of lightbox
391
+
392
+ = 2.0.1 =
393
+ * Updated English language file
394
+
395
+ = 2.0.0 =
396
+ * Added new algorithm of mobile devices Swipe support
397
+ * Implemented Android devices swipe support
398
+ * Implemented iOS devices swipe support
399
+
400
+ = 1.9.16 =
401
+ * Updated structure of the core files
402
+ * Preparation for update to version 2
403
+
404
+ = 1.9.15 =
405
+ * Updated video guide section
406
+ * Added new Drag and Drop Categories manager video guide
407
+
408
+ = 1.9.14 =
409
+ * Fixed problem in clone gallery functionality
410
+ * Fixed problem with Self label option
411
+ * Fixed problem with Self images option
412
+
413
+ = 1.9.13 =
414
+ * Fixed PHP warning in images manager
415
+
416
+ = 1.9.12 =
417
+ * Update Russian language main file
418
+
419
+ = 1.9.11 =
420
+ * Update English language main file
421
+
422
+ = 1.9.10 =
423
+ * Code optimization and small code fixes
424
+
425
+ = 1.9.9 =
426
+ * Updated categories manager
427
+ * Fixed conflict of removing parent category item
428
+
429
+ = 1.9.8 =
430
+ * Added views block in statistics section
431
+
432
+ = 1.9.7 =
433
+ * Fixed conflict with Flash
434
+
435
+ = 1.9.6 =
436
+ * Updated general gallery settings
437
+ * Added option for switch between old style or drag and drop style categories manager
438
+
439
+ = 1.9.5 =
440
+ * Added new clean statistics confirmation dialog
441
+
442
+ = 1.9.4 =
443
+ * Fixed wordpress themes conflict
444
+ * Fixed gallery menu conflict with wordpress themes
445
+
446
+ = 1.9.3 =
447
+ * Fixed wordpress theme conflict related with empty spacing replace by P tag
448
+
449
+ = 1.9.2 =
450
+ * Fixed problem related with old PHP version
451
+
452
+ = 1.9.1 =
453
+ * Fixed problem in gallery backend section in MacOS and Unix systems
454
+ * Fixed problem with Statistics section on MacOS
455
+ * Fixed problem with Backup section on MacOS
456
+ * Fixed problem with Categories management section on MacOS
457
+
458
+ = 1.9.0 =
459
+ * Updated gallery categories management section
460
+ * Added drag and drop categories manager
461
+
462
+ = 1.8.9 =
463
+ * Added new gallery reset views option in gallery edit mode, in statistics block
464
+
465
+ = 1.8.8 =
466
+ * Added new gallery views field in gallery listing section
467
+
468
+ = 1.8.7 =
469
+ * Added new statistics value in gallery
470
+ * New gallery view value
471
+
472
+ = 1.8.6 =
473
+ * Fixed bug of the backend blocks status save
474
+ * Added new engine for collection gallery views statistics
475
+
476
+ = 1.8.5 =
477
+ * Updated statistics gallery section
478
+ * New trash gallery value
479
+
480
+ = 1.8.4 =
481
+ * Added new statistics section in gallery
482
+ * Gallery drafts amount value
483
+
484
+ = 1.8.3 =
485
+ * Added new statistics section in gallery
486
+ * Published galleries amount value
487
+
488
+ = 1.8.2 =
489
+ * Updated backup section functionality
490
+ * Maximum POST size information section
491
+
492
+ = 1.8.1 =
493
+ * Updated backup section functionality
494
+ * Updated full back up data processing
495
+ * Added new statistic block about upload limit on server settings
496
+
497
+ = 1.8.0 =
498
+ * Updated backup section functionality
499
+ * Added full backup with images mode
500
+ * Backup create archive with settings and all gallery images inside
501
+
502
+ = 1.7.13 =
503
+ * Updated backup section functionality
504
+ * Added new full backup section
505
+
506
+ = 1.7.12 =
507
+ * Updated backup section interface
508
+ * Added doubled images statistics block
509
+
510
+ = 1.7.11 =
511
+ * Fixed conflict with plugin Page Builder developed by SiteOrigin
512
+ * Fixed problem with Editor Plugin
513
+
514
+ = 1.7.10 =
515
+ * Updated backup section interface
516
+ * Added new check for duplicated images for import
517
+ * Added new check for duplicated galleries for import
518
+ * Added option for skip or add duplicated elements
519
+
520
+ = 1.7.9 =
521
+ * Updated backup section interface
522
+ * Added new tabbed section for export / import galleries settings
523
+
524
+ = 1.7.8 =
525
+ * Updated backup section functionality
526
+ * Added new custom backup filename field
527
+
528
+ = 1.7.7 =
529
+ * Updated backup section functionality
530
+ * Added new export file name with current date generated
531
+
532
+ = 1.7.6 =
533
+ * Updated backup section functionality
534
+ * Added new import data statistics with notification of doubled posts and images
535
+
536
+ = 1.7.5 =
537
+ * Updated backup section functionality
538
+ * Added statistics of the imported galleries
539
+ * Added statistics of the imported images
540
+
541
+ = 1.7.4 =
542
+ * Updated code structure of the backup module
543
+ * Fixed backup import security issues
544
+ * Fixed backup export security issues
545
+ * Optimized import/export code algorithm
546
+
547
+ = 1.7.3 =
548
+ * Backend interface of the backup functionality updates
549
+ * Added new backup management button on gallery listing section
550
+
551
+ = 1.7.2 =
552
+ * Added new content to video guides section
553
+ * Added link to images upload video guide
554
+
555
+ = 1.7.1 =
556
+ * Fixed error in backup module
557
+
558
+ = 1.7.0 =
559
+ * Added new gallery backup functionality
560
+ * Implemented galleries export mode
561
+ * Implemented galleries import mode
562
+
563
+ = 1.6.9 =
564
+ * Added new content to video guides section
565
+ * Added link to gallery shortcode tools video guide
566
+
567
+ = 1.6.8 =
568
+ * Added new content to video guides section
569
+ * Added link to gallery posts management video guide
570
+
571
+ = 1.6.7 =
572
+ * Added new content to video guides section
573
+ * Added link to categories management gallery video guide
574
+
575
+ = 1.6.6 =
576
+ * Added new content to video guides section
577
+ * Added link to Polaroid style gallery video guide
578
+
579
+ = 1.6.5 =
580
+ * Updated language translation files
581
+ * Added new translation elements into Russian and Ukrainian languages
582
+
583
+ = 1.6.4 =
584
+ * Updated structure of the back end content management
585
+ * Added new configuration features to the guides section
586
+
587
+ = 1.6.3 =
588
+ * Added gallery password protection support on the front end
589
+ * Changed configuration of the gallery
590
+
591
+ = 1.6.2 =
592
+ * Updated notification section configuration
593
+ * Added new content into video user guide section
594
+ * Optimization of the back end code
595
+
596
+ = 1.6.1 =
597
+ * Added new video guides to the admin backend
598
+ * Added link into guides library to: grid gallery layout video guide
599
+
600
+ = 1.6.0 =
601
+ * Added new translation to Portuguese
602
+
603
+ = 1.5.10 =
604
+ * New configuration option for post generator management
605
+ * New Show/Hide post text field in plugin settings
606
+
607
+ = 1.5.9 =
608
+ * New options for post generator
609
+ * Text filed for post generator wizard
610
+ * Ability to customize text of new post with gallery tag inside it
611
+
612
+ = 1.5.8 =
613
+ * New options for post generator
614
+ * Status option in generated posts list
615
+
616
+ = 1.5.7 =
617
+ * New options for post generator
618
+ * Preview option in generated posts list
619
+
620
+ = 1.5.6 =
621
+ * New options for post generator
622
+ * Edit option in generated posts list
623
+
624
+ = 1.5.5 =
625
+ * New options for post generator
626
+ * Added new section with the list of the posts for current gallery
627
+ * Edit mode for post list in generator section
628
+
629
+ = 1.5.4 =
630
+ * New option for post generator
631
+ * Added edit post button in post dialog wizard
632
+
633
+ = 1.5.3 =
634
+ * New option for post generator
635
+ * Added preview button in post dialog wizard
636
+
637
+ = 1.5.2 =
638
+ * New option for post generator
639
+ * Possible define custom slug for new gallery post
640
+
641
+ = 1.5.1 =
642
+ * New option for post generator
643
+ * Possible define custom title for new gallery post
644
+
645
+ = 1.5.0 =
646
+ * New gallery admin tools implemented
647
+ * New post with gallery generator implemented
648
+ * New wizard for target category for gallery post selection
649
+ * Auto short tag generator in new created post
650
+
651
+ = 1.4.7 =
652
+ * Code optimization
653
+ * Update of the API structure
654
+ * Implemented new backend API structures
655
+ * Backend code structure prepared to new interface elements
656
+ * Small code fixes
657
+
658
+ = 1.4.6 =
659
+ * Added new text additional options
660
+ * Implemented After Text option with HTML support
661
+
662
+ = 1.4.5 =
663
+ * Added new text additional options
664
+ * Implemented PreText option with HTML support
665
+
666
+ = 1.4.4 =
667
+ * Updated image description processing code
668
+ * Fixed HTML support in images description
669
+ * Added more flexible HTML tags support in description
670
+
671
+
672
+ = 1.4.3 =
673
+ * Added new padding gallery options
674
+ * Added left gallery padding value
675
+ * Added top gallery padding value
676
+ * Added right gallery padding value
677
+ * Added bottom gallery padding value
678
+
679
+ = 1.4.2 =
680
+ * Added new values for gallery align in content option
681
+ * Added left side alignment
682
+ * Added right side alignment
683
+
684
+ = 1.4.1 =
685
+ * Added new gallery align in content option
686
+ * Added gallery center alignment
687
+ * Updated gallery output workflow
688
+
689
+ = 1.4.0 =
690
+ * Added new gallery width option
691
+ * Gallery width values in pixels
692
+ * Gallery width values in percents
693
+ * Small code fixes and optimization
694
+
695
+
696
+ = 1.3.9 =
697
+ * Fixed self show images options
698
+ * Enabled to show self images by default after gallery update
699
+ * Updated configuration options
700
+
701
+ = 1.3.8 =
702
+ * Updated navigation functionality
703
+ * Added new show/hide self images function
704
+
705
+ = 1.3.7 =
706
+ * Updated lightbox functionality
707
+ * Implemented new show/hide navigation arrows option
708
+ * Fixed minor notifications
709
+ * Code optimization
710
+
711
+ = 1.3.6 =
712
+ * Added lightbox functionality
713
+ * Created new show/hide close button option
714
+ * Fixed few conflicts in gallery backend
715
+ * Updated implementation of some navigation interface elements
716
+ * Improved media manager implementation to avoid conflicts
717
+
718
+ = 1.3.5 =
719
+ * Updated lightbox functionality
720
+ * Implemented new show/hide images counter option
721
+
722
+ = 1.3.4 =
723
+ * New thumbnails click mode
724
+ * Added new feature for enable/disable click with disabled buttons
725
+ * Switch between lightbox and link mode with disabled buttons
726
+
727
+ = 1.3.3 =
728
+ * Added new lightbox options
729
+ * Possibility to select caption, title or description below image in lightbox
730
+
731
+ = 1.3.2 =
732
+ * Line height option for description, link and zoom button
733
+
734
+ = 1.3.1 =
735
+ * Updated categories workflow
736
+ * Empty gallery support
737
+ * More complicated categories structure support
738
+
739
+
740
+ = 1.3.0 =
741
+ * Implemented smart links processing
742
+ * Auto detection links with turned off link navigation button
743
+ * Auto detection video link with turned off video navigation button
744
+ * New linking processing mode
745
+ * New video processing mode
746
+
747
+ = 1.2.5 =
748
+ * Added German language
749
+ * Added Czech language
750
+
751
+ = 1.2.4 =
752
+ * Added Dutch language
753
+
754
+ = 1.2.3 =
755
+ * Updated lightbox background color settings
756
+ * Updated lightbox navigation elements code structure to avoid conflicts
757
+ * Updeded language files
758
+
759
+
760
+ = 1.2.2 =
761
+ * Added new feature to avoid not included JS/CSS files because of incorrect coding in Wordpress theme
762
+ * Added option to switch between JQuery usage modes
763
+ * Updated social sharing workflow in lightbox
764
+ * Added function to enable deep linking in facebook
765
+ * Added function to enable deep linking in twitter
766
+ * Added function to enable deep linking in pinterest
767
+ * Added function to enable deep linking in google+
768
+
769
+ = 1.2.1 =
770
+ * Fixed PHP Notices
771
+
772
+ = 1.2.0 =
773
+ * Updated interface elements in back end
774
+ * Wordpress 4.3 support
775
+ * Implemented additional interface optimization options
776
+ * New backend style interface modes
777
+ * Added new compatibility settings to avoid jQuery conflicts
778
+
779
+ = 1.1.5 =
780
+ * Updated admin interface settings modes
781
+ * Code optimization
782
+ * Small bugs fixing
783
+
784
+ = 1.1.4 =
785
+ * Added hide image title in lightbox option
786
+ * Сode optimization
787
+
788
+ = 1.1.3 =
789
+ * Added new compatibility settings for backend interface element to avoid conflicts
790
+
791
+ = 1.1.2 =
792
+ * Added new compatibility settings to avoid jQuery conflicts
793
+
794
+ = 1.1.1 =
795
+ * Java script code optimization
796
+ * Minor bugs fixed
797
+
798
+ = 1.1.0 =
799
+ * Added new clone gallery settings function
800
+ * Fast inheriting of the gallery settings from another gallery
801
+ * Define gallery settings in one place and create as much galleries with the same interface as you need. Just create new gallery, upload images and inherit settings from another created gallery. Very useful tools for websites with a lot of galleries
802
+ * Life and time saver for webmasters
803
+
804
+ = 1.0.6 =
805
+ * Code optimization and structure update
806
+ * Minor bugs fixed
807
+
808
+ = 1.0.5 =
809
+ * Updated compatibility functionality
810
+ * Minor bugs fixed
811
+
812
+ = 1.0.4 =
813
+ * Changed default settings of the gallery
814
+ * Default gallery settings the same as Movie Gallery demo
815
+
816
+ = 1.0.3 =
817
+ * Added compatibility with editor plugins
818
+ * More stable workflow with Wordpress editors
819
+ * Added support of the old versions of the PHP (which didn't support anonymous functions)
820
+ * Updated default settings set
821
+ * Updated algorithm of the files paths processing
822
+
823
+ = 1.0.2 =
824
+ * By request of our gallery users we add new features:
825
+ * Added new lightbox settings block
826
+ * Added ability to edit background color of the lightbox
827
+ * Added ability to change transparency of the background in lightbox
828
+ * Added color and transparency settings for lightbox text
829
+ * Added function for enable/disable social buttons in lightbox
830
+
831
+ = 1.0.1 =
832
+ * Updates of admin backend functionality
833
+ * Fixed categories error
834
+ * Fixed images sorting
835
+ * Fixed thumbnails layout functionality
836
+
837
+ = 1.0 =
838
+ * First release
839
+
840
+ == Upgrade Notice ==
841
+
842
+ = 2.4.0 =
843
+ Added multi tags field for every image
844
+ New tags functionality for images filtering in PRO version
845
+
846
+ = 2.3.3 =
847
+ Fixes of the code related with core code strucutre
848
+
849
+ = 2.3.2 =
850
+ Updated English and Russian language files
851
+
852
+ = 2.3.1 =
853
+ Updated gallery front end code
854
+ SEO configuration option for thumbnails and links code
855
+
856
+ = 2.3.0 =
857
+ Updated gallery code front end code
858
+ SEO option for enable/disable additional optimization
859
+
860
+ = 2.2.0 =
861
+ Updated multisite functionality
862
+
863
+ = 2.1.11 =
864
+ New lightbox description panel style, added new Green theme
865
+
866
+ = 2.1.10 =
867
+ New lightbox description panel style, added new Blue theme
868
+
869
+ = 2.1.9 =
870
+ New lightbox description panel style, added new Red theme
871
+
872
+ = 2.1.8 =
873
+ Optimization of the admin lightbox settings
874
+
875
+ = 2.1.7 =
876
+ Added images alt elements
877
+
878
+ = 2.1.6 =
879
+ Updated background styles of the lightbox description panel settings
880
+
881
+ = 2.1.5 =
882
+ Added dark and light styles for lightbox description panel
883
+
884
+ = 2.1.4 =
885
+ Added background to lightbox description panel
886
+
887
+ = 2.1.3 =
888
+ Added description panel source option
889
+
890
+ = 2.1.2 =
891
+ Updated description panel style
892
+
893
+ = 2.1.1 =
894
+ Added description panel in alternative JQuery mode
895
+
896
+ = 2.1.0 =
897
+ Lightbox update
898
+ New description panel implemented
899
+ Added new option show/hide description panel
900
+
901
+ = 2.0.41 =
902
+ Code modification related with position of description panel in lightbox
903
+
904
+ = 2.0.40 =
905
+ Updated debug, added format html debug
906
+
907
+ = 2.0.39 =
908
+ Update Polish language
909
+
910
+ = 2.0.38 =
911
+ Update Russian language
912
+
913
+ = 2.0.37 =
914
+ Added debug styles
915
+
916
+ = 2.0.36 =
917
+ JS config output into debug console
918
+
919
+ = 2.0.35 =
920
+ Debug section, data output in the case of excluded jQuery and alt jQuery
921
+
922
+ = 2.0.34 =
923
+ Debug section, publishing information about alternative jQuery
924
+
925
+ = 2.0.33 =
926
+ Debug section, added jQuery access check
927
+
928
+ = 2.0.32 =
929
+ Added into debug section information output into console
930
+
931
+ = 2.0.31 =
932
+ Updated debug functionality
933
+
934
+ = 2.0.30 =
935
+ Added additional debug option, js files
936
+
937
+ = 2.0.29 =
938
+ Added new debug options
939
+
940
+ = 2.0.28 =
941
+ Fixed notice messages in the case of damaged meta data of images
942
+
943
+ = 2.0.27 =
944
+ Fixed notice messages in the case of damaged images
945
+
946
+ = 2.0.26 =
947
+ Changed method in code, improve security
948
+
949
+ = 2.0.25 =
950
+ Updated statistics section, added new total galleries value
951
+
952
+ = 2.0.24 =
953
+ Updated statistics section, added new total images value
954
+
955
+ = 2.0.23 =
956
+ Code optimization, changes in create post dialog
957
+
958
+ = 2.0.22 =
959
+ Update for Polish language
960
+
961
+ = 2.0.21 =
962
+ Update for Ukrainian and Russian language
963
+
964
+ = 2.0.20 =
965
+ Added support of the old wordpress versions
966
+
967
+ = 2.0.19 =
968
+ Security update v3
969
+
970
+ = 2.0.18 =
971
+ Fixed warning in empty gallery (no images), fixed red boxes in empty gallery
972
+
973
+ = 2.0.17 =
974
+ Security update v2
975
+
976
+ = 2.0.16 =
977
+ Security update
978
+
979
+ = 2.0.15 =
980
+ Security update, fixed ajax security
981
+
982
+ = 2.0.14 =
983
+ Updated configuration and code optimization
984
+
985
+ = 2.0.13 =
986
+ Updated video guides section, key installation guide
987
+
988
+ = 2.0.12 =
989
+ Added Alt's for gallery images
990
+
991
+ = 2.0.11 =
992
+ Additional fixes for Swipe and Alternative JQuery conflict
993
+
994
+ = 2.0.10 =
995
+ Updated Swipe function, fixed iOS scrolling problem
996
+
997
+ = 2.0.9 =
998
+ Updated Polish language file
999
+
1000
+ = 2.0.8 =
1001
+ Updated gallery menu alignment options, added center alignment option
1002
+
1003
+ = 2.0.7 =
1004
+ Updated gallery menu alignment options, added left/right alignment option
1005
+
1006
+ = 2.0.6 =
1007
+ Optimization of the HTML and JS code
1008
+
1009
+ = 2.0.5 =
1010
+ Updated Ukrainian language file
1011
+
1012
+ = 2.0.4 =
1013
+ Updated gallery lightbox functionality, added button for download image source
1014
+
1015
+ = 2.0.3 =
1016
+ Updated Russian language file
1017
+
1018
+ = 2.0.2 =
1019
+ Updated gallery lightbox functionality, added new mobile theme of lightbox
1020
+
1021
+ = 2.0.1 =
1022
+ Updated English language file
1023
+
1024
+ = 2.0.0 =
1025
+ Added new algorithm of mobile devices Swipe support, implemented Android and iOS devices swipe support
1026
+
1027
+ = 1.9.16 =
1028
+ Updated structure of the core files, preparation for update to version 2
1029
+
1030
+ = 1.9.15 =
1031
+ Updated video guide section, added new Drag and Drop Categories manager video guide
1032
+
1033
+ = 1.9.14 =
1034
+ Fixed problem in clone gallery functionality, fixed problem with Self label and images option
1035
+
1036
+ = 1.9.13 =
1037
+ Fixed PHP warning in images manager
1038
+
1039
+ = 1.9.12 =
1040
+ Update Russian language main file
1041
+
1042
+ = 1.9.11 =
1043
+ Update English language main file
1044
+
1045
+ = 1.9.10 =
1046
+ Code optimization and small code fixes
1047
+
1048
+ = 1.9.9 =
1049
+ Updated categories manager
1050
+ Fixed conflict of removing parent category item
1051
+
1052
+ = 1.9.8 =
1053
+ Added views block in statistics section
1054
+
1055
+ = 1.9.7 =
1056
+ Fixed conflict with Flash
1057
+
1058
+ = 1.9.6 =
1059
+ Added option for switch between old style or drag and drop style categories manager
1060
+
1061
+ = 1.9.5 =
1062
+ Added new clean statistics confirmation dialog
1063
+
1064
+ = 1.9.4 =
1065
+ Fixed wordpress themes conflict, fixed gallery menu conflict with wordpress themes
1066
+
1067
+ = 1.9.3 =
1068
+ Fixed wordpress theme conflict related with empty spacing replace by P tag
1069
+
1070
+ = 1.9.2 =
1071
+ Fixed problem related with old PHP version
1072
+
1073
+ = 1.9.1 =
1074
+ Fixed problem in gallery backend Categories, Statistics and Backup sections in MacOS and Unix systems
1075
+
1076
+ = 1.9.0 =
1077
+ Updated gallery categories management section, added drag and drop categories manager
1078
+
1079
+ = 1.8.9 =
1080
+ Added new gallery reset views option in gallery edit mode, in statistics block
1081
+
1082
+ = 1.8.8 =
1083
+ Added new gallery views field in gallery listing section
1084
+
1085
+ = 1.8.7 =
1086
+ Added new statistics value in gallery, new gallery view value
1087
+
1088
+ = 1.8.6 =
1089
+ Fixed bug of the backend blocks status save, added new engine for collection gallery views statistics
1090
+
1091
+ = 1.8.5 =
1092
+ Updated statistics gallery section, new trash gallery value
1093
+
1094
+ = 1.8.4 =
1095
+ Added new statistics section in gallery, gallery drafts amount value
1096
+
1097
+ = 1.8.3 =
1098
+ Added new statistics section in gallery, published galleries amount value
1099
+
1100
+ = 1.8.2 =
1101
+ Updated backup section functionality, maximum POST size information section
1102
+
1103
+ = 1.8.1 =
1104
+ Updated full back up data processing, Added new statistic block about upload limit on server settings
1105
+
1106
+ = 1.8.0 =
1107
+ Added full backup with images mode, backup create archive with settings and all gallery images inside
1108
+
1109
+ = 1.7.13 =
1110
+ Updated backup section functionality, added new full backup section
1111
+
1112
+ = 1.7.12 =
1113
+ Updated backup section interface, added doubled images statistics block
1114
+
1115
+ = 1.7.11 =
1116
+ Fixed conflict with plugin Page Builder developed by SiteOrigin, fixed problem with Editor Plugin
1117
+
1118
+ = 1.7.10 =
1119
+ Updated backup section interface, added option for skip or add duplicated elements
1120
+
1121
+ = 1.7.9 =
1122
+ Updated backup section interface, added new tabbed section for export / import galleries settings
1123
+
1124
+ = 1.7.8 =
1125
+ Updated backup section functionality, added new custom backup filename field
1126
+
1127
+ = 1.7.7 =
1128
+ Updated backup section functionality, added new export file name with current date generated
1129
+
1130
+ = 1.7.6 =
1131
+ Updated backup section functionality, added new import notification of doubled posts and images
1132
+
1133
+ = 1.7.5 =
1134
+ Updated backup section functionality, added statistics of the imported galleries and images
1135
+
1136
+ = 1.7.4 =
1137
+ Updated code structure of the backup module, fixed backup import/export security issues, optimized code algorithm
1138
+
1139
+ = 1.7.3 =
1140
+ Backend interface of the backup functionality updates, added new backup management button on gallery listing section
1141
+
1142
+ = 1.7.2 =
1143
+ Added new content to video guides section, added link to images upload video guide
1144
+
1145
+ = 1.7.1 =
1146
+ Fixed error in backup module
1147
+
1148
+ = 1.7.0 =
1149
+ Added new gallery backup functionality, Implemented galleries export/import mode
1150
+
1151
+ = 1.6.9 =
1152
+ Added new content to video guides section, added link to gallery shortcode tools video guide
1153
+
1154
+ = 1.6.8 =
1155
+ Added new content to video guides section, added link to gallery posts management video guide
1156
+
1157
+ = 1.6.7 =
1158
+ Added new content to video guides section, added link to categories management gallery guide
1159
+
1160
+ = 1.6.6 =
1161
+ Added new content to video guides section, added link to Polaroid style gallery video guide
1162
+
1163
+ = 1.6.5 =
1164
+ Updated language translation files, added new translation elements into Russian and Ukrainian languages
1165
+
1166
+ = 1.6.4 =
1167
+ Updated structure of the back end content management, Added new configuration features to the guides
1168
+
1169
+ = 1.6.3 =
1170
+ Added gallery password protection support on the front end, changed configuration of the gallery
1171
+
1172
+ = 1.6.2 =
1173
+ Updated notification section configuration, added new content into video user guide section
1174
+
1175
+ = 1.6.1 =
1176
+ Added video guides to the admin backend, added link into guides library to: grid gallery layout guide
1177
+
1178
+ = 1.6.0 =
1179
+ Added new translation to Portuguese
1180
+
1181
+ = 1.5.10 =
1182
+ New configuration option for post generator management, Show/Hide post text field in plugin settings
1183
+
1184
+ = 1.5.9 =
1185
+ Text filed for post generator wizard, ability to customize text of new post with gallery tag inside it
1186
+
1187
+ = 1.5.8 =
1188
+ New options for post generator, status option in generated posts list
1189
+
1190
+ = 1.5.7 =
1191
+ New options for post generator, preview option in generated posts list
1192
+
1193
+ = 1.5.6 =
1194
+ New options for post generator, edit option in generated posts list
1195
+
1196
+ = 1.5.5 =
1197
+ Added new section with the list of the posts for current gallery, edit mode for post list in generator section
1198
+
1199
+ = 1.5.4 =
1200
+ New option for post generator, added edit post button in post dialog wizard
1201
+
1202
+ = 1.5.3 =
1203
+ New option for post generator, added preview button in post dialog wizard
1204
+
1205
+ = 1.5.2 =
1206
+ New option for post generator, possible define custom slug for new gallery post
1207
+
1208
+ = 1.5.1 =
1209
+ New option for post generator, possible define custom title for new gallery post
1210
+
1211
+ = 1.5.0 =
1212
+ New wizard for auto post generation with shortcode inside it, new gallery admin tools implemented
1213
+
1214
+ = 1.4.7 =
1215
+ Implemented new backend API structures, prepared new interface elements
1216
+
1217
+ = 1.4.6 =
1218
+ Added new text additional options, implemented After Text option with HTML support
1219
+
1220
+ = 1.4.5 =
1221
+ Added new text additional options, implemented PreText option with HTML support
1222
+
1223
+ = 1.4.4 =
1224
+ Added more flexible HTML tags support in description, fixed HTML processing in images description field
1225
+
1226
+ = 1.4.3 =
1227
+ Added new padding gallery options. Added left, top, right and bottom gallery padding value
1228
+
1229
+ = 1.4.2 =
1230
+ Added new left and right values for gallery align in content option
1231
+
1232
+ = 1.4.1 =
1233
+ Added new gallery align in content option, added gallery center alignment, updated output workflow
1234
+
1235
+ = 1.4.0 =
1236
+ Added new gallery width option, gallery width values in pixels and percents
1237
+
1238
+ = 1.3.9 =
1239
+ Fixed self show images options, enabled to show self images by default after gallery update
1240
+
1241
+ = 1.3.8 =
1242
+ Updated navigation functionality, added new show/hide self images function
1243
+
1244
+ = 1.3.7 =
1245
+ Updated lightbox functionality, new show/hide navigation arrows option, fixed minor notifications
1246
+
1247
+ = 1.3.6 =
1248
+ Updated lightbox functionality, implemented show/hide close button option, fixed backend conflicts
1249
+
1250
+ = 1.3.5 =
1251
+ Updated lightbox functionality, implemented new show/hide images counter option
1252
+
1253
+ = 1.3.4 =
1254
+ Switch between lightbox and link mode with disabled buttons
1255
+
1256
+ = 1.3.3 =
1257
+ New lightbox options, possibility to select caption, title or description below image in lightbox
1258
+
1259
+ = 1.3.2 =
1260
+ Line height option for description, link and zoom button
1261
+
1262
+ = 1.3.1 =
1263
+ Updated categories workflow, empty gallery support, more complicated categories structure support
1264
+
1265
+ = 1.3.0 =
1266
+ Implemented smart links processing, auto detection links and videos with turned off navigation button
1267
+
1268
+ = 1.2.5 =
1269
+ Added German and Czech language
1270
+
1271
+ = 1.2.4 =
1272
+ Added Dutch language
1273
+
1274
+ = 1.2.3 =
1275
+ Updated lightbox background, navigation elements code and language files
1276
+
1277
+ = 1.2.2 =
1278
+ Added social deep linking option, new feature to fix problems with JS/CSS including caused by theme
1279
+
1280
+ = 1.2.1 =
1281
+ Fixed PHP Notices
1282
+
1283
+ = 1.2.0 =
1284
+ Updated interface elements in back end, Wordpress 4.3 support, interface optimization options
1285
+
1286
+ = 1.1.5 =
1287
+ Updated admin interface settings modes, code optimization
1288
+
1289
+ = 1.1.4 =
1290
+ Added hide image title in lightbox option
1291
+
1292
+ = 1.1.3 =
1293
+ Added new compatibility settings for backend interface element to avoid conflicts
1294
+
1295
+ = 1.1.2 =
1296
+ Added new compatibility settings to avoid jQuery conflicts
1297
+
1298
+ = 1.1.1 =
1299
+ Java script code optimization, minor bugs fixed
1300
+
1301
+ = 1.1.0 =
1302
+ Added new clone gallery settings. Advanced tool to save a lot of time for webmaster
1303
+
1304
+ = 1.0.6 =
1305
+ Code optimization and structure update, minor bugs fixed
1306
+
1307
+ = 1.0.5 =
1308
+ Updated compatibility functionality, minor bugs fixed
1309
+
1310
+ = 1.0.4 =
1311
+ By request of our customers: Default gallery settings the same as Movie Gallery demo
1312
+
1313
+ = 1.0.3 =
1314
+ By request of our customers: updated plugin workflow with editors, old PHP version support, paths management
1315
+
1316
+ = 1.0.2 =
1317
+ By request of our customers: added new lightbox settings. Background color, text color, social buttons enable/disable.
1318
+
1319
+ = 1.0.1 =
1320
+ Upgraded backend functionality. Fixed categories errors, images sorting and thumbnails layout functionality
1321
+
1322
+ = 1.0 =
1323
+ This is first release of the plugin
robogallery.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
- * Version: 2.3.3
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -20,7 +20,7 @@
20
  if ( ! defined( 'WPINC' ) ) die;
21
 
22
  define("ROBO_GALLERY", 1);
23
- define("ROBO_GALLERY_VERSION", '2.3.3');
24
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
25
  define("ROBO_GALLERY_SPECIAL", 0);
26
 
@@ -47,16 +47,17 @@ if(!function_exists('rbs_gallery_pro_check')){
47
  if( $keyResult=rbs_gallery_pro_check() ){
48
  define("ROBO_GALLERY_PRO", 1);
49
  define("ROBO_GALLERY_KEY_PATH", $keyResult );
 
50
  } else {
51
  define("ROBO_GALLERY_PRO", 0);
52
  }
53
 
54
- define("ROBO_GALLERY_INCLUDES_PATH", ROBO_GALLERY_PATH.'includes/');
55
- define("ROBO_GALLERY_FRONTEND_PATH", ROBO_GALLERY_INCLUDES_PATH.'frontend/');
56
- define("ROBO_GALLERY_OPTIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'options/');
57
- define("ROBO_GALLERY_EXTENSIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'extensions/');
58
- define("ROBO_GALLERY_CMB_PATH", ROBO_GALLERY_PATH.'cmb2/');
59
- define("ROBO_GALLERY_CMB_FILEDS_PATH", ROBO_GALLERY_CMB_PATH.'fields/');
60
 
61
  define("ROBO_GALLERY_URL", plugin_dir_url( __FILE__ ));
62
 
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
+ * Version: 2.4.0
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
20
  if ( ! defined( 'WPINC' ) ) die;
21
 
22
  define("ROBO_GALLERY", 1);
23
+ define("ROBO_GALLERY_VERSION", '2.4.0');
24
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
25
  define("ROBO_GALLERY_SPECIAL", 0);
26
 
47
  if( $keyResult=rbs_gallery_pro_check() ){
48
  define("ROBO_GALLERY_PRO", 1);
49
  define("ROBO_GALLERY_KEY_PATH", $keyResult );
50
+ include_once( ROBO_GALLERY_KEY_PATH );
51
  } else {
52
  define("ROBO_GALLERY_PRO", 0);
53
  }
54
 
55
+ define("ROBO_GALLERY_INCLUDES_PATH", ROBO_GALLERY_PATH.'includes/');
56
+ define("ROBO_GALLERY_FRONTEND_PATH", ROBO_GALLERY_INCLUDES_PATH.'frontend/');
57
+ define("ROBO_GALLERY_OPTIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'options/');
58
+ define("ROBO_GALLERY_EXTENSIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'extensions/');
59
+ define("ROBO_GALLERY_CMB_PATH", ROBO_GALLERY_PATH.'cmb2/');
60
+ define("ROBO_GALLERY_CMB_FILEDS_PATH", ROBO_GALLERY_CMB_PATH.'fields/');
61
 
62
  define("ROBO_GALLERY_URL", plugin_dir_url( __FILE__ ));
63