Gallery – Photo Gallery and Images Gallery - Version 1.6.2

Version Description

  • Updated notification section configuration
  • Added new content into video user guide section
  • Optimization of the back end code
Download this release

Release Info

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

Code changes from version 1.6.1 to 1.6.2

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/options/rbs_gallery_options_guides.php CHANGED
@@ -11,21 +11,24 @@
11
  * Copyright (c) 2014-2015, Robosoft. All rights reserved.
12
  * Available only in http://robosoft.co/
13
  */
 
 
 
14
 
15
- //guides
16
- $guides_group = new_cmb2_box( array(
17
- 'id' => ROBO_GALLERY_PREFIX . 'guides_metabox',
18
- 'title' => '<span class="dashicons dashicons-video-alt3 rbs-icon-red"></span> '.__( 'Video Guides', 'rbs_gallery' ),
19
- 'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
- 'context' => 'side',
21
- 'priority' => 'high',
22
- // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
- 'show_names' => false,
24
- ));
25
 
26
- $guides_group->add_field( array(
27
- 'id' => ROBO_GALLERY_PREFIX.'guide_desc',
28
- 'type' => 'title',
29
- 'before_row' => '<a href="https://www.youtube.com/watch?v=DdCpRuLFxzk" target="_blank" class="rbs_guide_red">How to make custom grid layout?</a>',
30
- 'after_row' => '',
31
- ));
 
 
11
  * Copyright (c) 2014-2015, Robosoft. All rights reserved.
12
  * Available only in http://robosoft.co/
13
  */
14
+ if( class_exists('RoboGalleryConfig') ){
15
+ $guide = RoboGalleryConfig::guides();
16
+ if( isset($guide) && count($guide) ){
17
 
18
+ $guides_group = new_cmb2_box( array(
19
+ 'id' => ROBO_GALLERY_PREFIX . 'guides_metabox',
20
+ 'title' => '<span class="dashicons dashicons-video-alt3 rbs-icon-red"></span> '.__( 'Video Guides', 'rbs_gallery' ),
21
+ 'object_types' => array( ROBO_GALLERY_TYPE_POST ),
22
+ 'context' => 'side',
23
+ 'priority' => 'high',
24
+ 'show_names' => false,
25
+ ));
 
 
26
 
27
+ $guides_group->add_field( array(
28
+ 'id' => ROBO_GALLERY_PREFIX.'guide_desc',
29
+ 'type' => 'title',
30
+ 'before_row' => '<a href="'.$guide['link'].'" target="_blank" class="rbs_guide rbs_guide_'.$guide['class'].'">'.$guide['text'].'</a>',
31
+ 'after_row' => '',
32
+ ));
33
+ }
34
+ }
includes/rbs_gallery_config.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 1.5
5
+ * By Robosoft
6
+ *
7
+ * Contact: http://robosoft.co
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+ *
11
+ * Copyright (c) 2014-2015, Robosoft. All rights reserved.
12
+ * Available only in http://robosoft.co/
13
+ */
14
+
15
+
16
+
17
+ if( !class_exists('RoboGalleryConfig') ){
18
+ class RoboGalleryConfig {
19
+
20
+ public static function guides() {
21
+
22
+ $guides = array(
23
+ array(
24
+ 'link'=> 'https://www.youtube.com/watch?v=DdCpRuLFxzk',
25
+ 'text'=> 'How to make custom grid layout?',
26
+ 'class'=> 'violet'
27
+ ),
28
+ );
29
+
30
+ return $guides[ array_rand( $guides ) ];
31
+ }
32
+ }
33
+ }
includes/rbs_gallery_init.php CHANGED
@@ -31,7 +31,8 @@ if(!function_exists('rbs_gallery_include')){
31
  }
32
  }
33
 
34
- rbs_gallery_include(array('rbs_gallery_button.php', 'rbs_gallery_widget.php'), ROBO_GALLERY_INCLUDES_PATH);
 
35
 
36
  if(!function_exists('rbs_gallery_is_edit_page')){
37
  function rbs_gallery_is_edit_page($new_edit = null){
31
  }
32
  }
33
 
34
+
35
+ rbs_gallery_include(array( 'rbs_gallery_config.php', 'rbs_gallery_button.php', 'rbs_gallery_widget.php'), ROBO_GALLERY_INCLUDES_PATH);
36
 
37
  if(!function_exists('rbs_gallery_is_edit_page')){
38
  function rbs_gallery_is_edit_page($new_edit = null){
includes/rbs_gallery_menu.php CHANGED
@@ -48,6 +48,7 @@ if(!function_exists('robo_gallery_settings_submenu_page')){
48
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
50
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
 
51
 
52
  }
53
 
48
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
50
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
51
+ register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
52
 
53
  }
54
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Robo Gallery - Photo Gallery and Images Gallery ===
2
  Contributors: robosoft
3
  Donate link: http://www.robosoft.co/robogallery
4
- Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
- Tested up to: 4.3
7
- Stable tag: 1.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -225,14 +225,6 @@ In gallery settings you can find general settings section where you can turn on/
225
 
226
  Yes, you can insert gallery into post with shortcode tag
227
 
228
- = How to change quality of the gallery thumbnails? =
229
-
230
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
231
-
232
- = How I can create custom (grid) layout of the thumbnails? =
233
-
234
- 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
235
-
236
  = How to change font size of the gallery image caption? =
237
 
238
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
@@ -245,6 +237,14 @@ In gallery setting you can select which text show below image in gallery lightbo
245
 
246
  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 custom effect field where you can select different hover effect for every image of the gallery.
247
 
 
 
 
 
 
 
 
 
248
  = How to enable lazy load in gallery options? =
249
 
250
  In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
@@ -261,10 +261,6 @@ Our gallery is fully responsive and gallery thumbnails size depend of a lot of f
261
 
262
  No, we don't have any limits for image size in our gallery.
263
 
264
- = How to hide titles of the gallery image in lightbox ? =
265
-
266
- In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
267
-
268
  = Do you have some limits for images amount in gallery? =
269
 
270
  No, we don't have any limits for amount of the images in gallery
@@ -277,17 +273,13 @@ Shadows of the thumbnails you can customize in gallery settings. With gallery se
277
 
278
  Yes, you can use generated direct link inside particular gallery settings
279
 
280
- = Where specify description of the gallery images? =
281
-
282
- When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
283
-
284
- = How to change color of the gallery interface elements? =
285
 
286
- Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
287
 
288
- = How to customize gallery layouts for different screen resolutions? =
289
 
290
- In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
291
 
292
  = How to change spacing between thumbnails? =
293
 
@@ -301,6 +293,14 @@ In gallery settings you can find section rounds where with special options you c
301
 
302
  Yes, you can use HTML tags inside gallery image description field
303
 
 
 
 
 
 
 
 
 
304
  = Is it possible to have different settings for hover and static interface elements? =
305
 
306
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
@@ -341,22 +341,6 @@ When you open gallery images manager you can define alt for every gallery image
341
 
342
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
343
 
344
- = Is it possible to customize gallery image caption ? =
345
-
346
- In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
347
-
348
- = How to flip uploaded gallery image? =
349
-
350
- When you open gallery images manager you'll find there image edit mode where you can flip source image
351
-
352
- = How to change font style of the gallery image caption? =
353
-
354
- In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
355
-
356
- = Is it possible to create target blank links? =
357
-
358
- 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 target blank field below link field of the gallery image.
359
-
360
  = How to change font color of the gallery image description text? =
361
 
362
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
@@ -385,6 +369,22 @@ In gallery settings you can find before/after text gallery field. This fields su
385
 
386
  When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  = How to change width of the gallery thumbnails border? =
389
 
390
  When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
@@ -393,6 +393,26 @@ When you enable border in gallery settings you will see multiply options for cus
393
 
394
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
395
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  = Is it possible to change transparency of the hover shutter? =
397
 
398
  Yes, it's possible to change transparency in gallery settings
@@ -433,26 +453,6 @@ For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
433
 
434
  When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
435
 
436
- = How to enable icons on gallery hover shutter? =
437
-
438
- In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
439
-
440
- = How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
441
-
442
- In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
443
-
444
- = Which style parameters I can change for the hover button icon? =
445
-
446
- You can select border color, background color and color of the icon, size of the icon
447
-
448
- = How many icons you have in build in icons library? =
449
-
450
- In build library of the icons in gallery you can find 533 icons
451
-
452
- = How to change transparency of the gallery thumbnails border? =
453
-
454
- When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
455
-
456
  = How to turn off social buttons in gallery lightbox? =
457
 
458
  When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
@@ -485,6 +485,10 @@ Our gallery do not require any special permissions for installation of the galle
485
 
486
  In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
487
 
 
 
 
 
488
  = How to change amount of the columns in gallery layout? =
489
 
490
  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.
@@ -493,10 +497,6 @@ In gallery general settings you can find gallery thumbnails columns options whic
493
 
494
  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.
495
 
496
- = Is it possible to change color of the hovered image in gallery? =
497
-
498
- Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
499
-
500
  = Is it possible to generate post with gallery inside it ? =
501
 
502
  In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
@@ -575,6 +575,11 @@ If any problem occurs, please contact us.
575
 
576
  == Changelog ==
577
 
 
 
 
 
 
578
  = 1.6.1 =
579
  * Added new video guides to the admin backend
580
  * Added link into guides library to: grid gallery layout video guide
@@ -821,6 +826,9 @@ If any problem occurs, please contact us.
821
 
822
  == Upgrade Notice ==
823
 
 
 
 
824
  = 1.6.1 =
825
  Added video guides to the admin backend, added link into guides library to: grid gallery layout guide
826
 
1
  === Robo Gallery - Photo Gallery and Images Gallery ===
2
  Contributors: robosoft
3
  Donate link: http://www.robosoft.co/robogallery
4
+ Tags: gallery, images, images gallery, photo gallery, photos, gallery plugin, photo gallery plugin, photo gallery plugins, add gallery, add galleries, add picture, add image
5
  Requires at least: 3.3
6
+ Tested up to: 4.4
7
+ Stable tag: 1.6.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
225
 
226
  Yes, you can insert gallery into post with shortcode tag
227
 
 
 
 
 
 
 
 
 
228
  = How to change font size of the gallery image caption? =
229
 
230
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
237
 
238
  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 custom effect field where you can select different hover effect for every image of the gallery.
239
 
240
+ = How to change quality of the gallery thumbnails? =
241
+
242
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
243
+
244
+ = How I can create custom (grid) layout of the thumbnails? =
245
+
246
+ 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
247
+
248
  = How to enable lazy load in gallery options? =
249
 
250
  In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
261
 
262
  No, we don't have any limits for image size in our gallery.
263
 
 
 
 
 
264
  = Do you have some limits for images amount in gallery? =
265
 
266
  No, we don't have any limits for amount of the images in gallery
273
 
274
  Yes, you can use generated direct link inside particular gallery settings
275
 
276
+ = How to hide titles of the gallery image in lightbox ? =
 
 
 
 
277
 
278
+ In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
279
 
280
+ = Where specify description of the gallery images? =
281
 
282
+ When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
283
 
284
  = How to change spacing between thumbnails? =
285
 
293
 
294
  Yes, you can use HTML tags inside gallery image description field
295
 
296
+ = How to change color of the gallery interface elements? =
297
+
298
+ Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
299
+
300
+ = How to customize gallery layouts for different screen resolutions? =
301
+
302
+ In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
303
+
304
  = Is it possible to have different settings for hover and static interface elements? =
305
 
306
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
341
 
342
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  = How to change font color of the gallery image description text? =
345
 
346
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
369
 
370
  When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
371
 
372
+ = Is it possible to customize gallery image caption ? =
373
+
374
+ In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
375
+
376
+ = How to flip uploaded gallery image? =
377
+
378
+ When you open gallery images manager you'll find there image edit mode where you can flip source image
379
+
380
+ = How to change font style of the gallery image caption? =
381
+
382
+ In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
383
+
384
+ = Is it possible to create target blank links? =
385
+
386
+ 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 target blank field below link field of the gallery image.
387
+
388
  = How to change width of the gallery thumbnails border? =
389
 
390
  When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
393
 
394
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
395
 
396
+ = How to enable icons on gallery hover shutter? =
397
+
398
+ In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
399
+
400
+ = How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
401
+
402
+ In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
403
+
404
+ = Which style parameters I can change for the hover button icon? =
405
+
406
+ You can select border color, background color and color of the icon, size of the icon
407
+
408
+ = How many icons you have in build in icons library? =
409
+
410
+ In build library of the icons in gallery you can find 533 icons
411
+
412
+ = How to change transparency of the gallery thumbnails border? =
413
+
414
+ When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
415
+
416
  = Is it possible to change transparency of the hover shutter? =
417
 
418
  Yes, it's possible to change transparency in gallery settings
453
 
454
  When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
456
  = How to turn off social buttons in gallery lightbox? =
457
 
458
  When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
485
 
486
  In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
487
 
488
+ = Is it possible to change color of the hovered image in gallery? =
489
+
490
+ Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
491
+
492
  = How to change amount of the columns in gallery layout? =
493
 
494
  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.
497
 
498
  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.
499
 
 
 
 
 
500
  = Is it possible to generate post with gallery inside it ? =
501
 
502
  In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
575
 
576
  == Changelog ==
577
 
578
+ = 1.6.2 =
579
+ * Updated notification section configuration
580
+ * Added new content into video user guide section
581
+ * Optimization of the back end code
582
+
583
  = 1.6.1 =
584
  * Added new video guides to the admin backend
585
  * Added link into guides library to: grid gallery layout video guide
826
 
827
  == Upgrade Notice ==
828
 
829
+ = 1.6.2 =
830
+ Updated notification section configuration, added new content into video user guide section
831
+
832
  = 1.6.1 =
833
  Added video guides to the admin backend, added link into guides library to: grid gallery layout guide
834
 
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: 1.6.1
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -19,7 +19,7 @@
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
- define("ROBO_GALLERY_VERSION", '1.6.1');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25
 
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: 1.6.2
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
+ define("ROBO_GALLERY_VERSION", '1.6.2');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25