Gallery – Photo Gallery and Images Gallery - Version 1.7.8

Version Description

  • Updated backup section functionality
  • Added new custom backup filename field
Download this release

Release Info

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

Code changes from version 1.7.7 to 1.7.8

gallery/js/version.min.js ADDED
File without changes
includes/extensions/backup/backup.form.php CHANGED
@@ -67,19 +67,30 @@
67
  echo '<h2>'._('Error: check secure').'</h2>';
68
  }
69
  }
 
70
  ?>
71
  <table class="form-table">
72
  <tbody>
 
73
  <tr>
74
- <th scope="row"><label for="blogname"><?php _e('Export Gallery', 'rbs_gallery'); ?></label></th>
 
 
 
75
  <td>
76
- <form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup'; ?>">
77
- <input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
78
- <input type="hidden" name="rbsGalleryExport" value="1">
79
- <?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-backup' ); ?>
80
- </form>
81
  </td>
82
  </tr>
 
 
 
 
 
 
 
 
 
 
83
  <tr>
84
  <td colspan="2"><p class="description" id="rbsBackupFile-description"><?php _e('After backup of the galleries settings with EXPORT option, copy images from server folder: {Wordpress folder}/wp-content/uploads to the new location by FTP'); ?></p></td>
85
  </tr>
67
  echo '<h2>'._('Error: check secure').'</h2>';
68
  }
69
  }
70
+ $today = date("Y_j_n");
71
  ?>
72
  <table class="form-table">
73
  <tbody>
74
+ <form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup'; ?>">
75
  <tr>
76
+ <th scope="row" colspan="2"><label for="rbsGalleryBackupFilename"><?php _e('Export Gallery', 'rbs_gallery'); ?></label></th>
77
+ </tr>
78
+ <tr>
79
+ <th scope="row"><label for="rbsGalleryBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
80
  <td>
81
+ <input type="text" class="regular-text" id="rbsGalleryBackupFilename" name="rbsGalleryBackupFilename" value="<?php echo 'export_'.$today.'.xml';?>" >
 
 
 
 
82
  </td>
83
  </tr>
84
+ <tr>
85
+ <td colspan="2">
86
+ <input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
87
+ <input type="hidden" name="rbsGalleryExport" value="1">
88
+ <?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-backup' ); ?>
89
+
90
+ </td>
91
+ </tr>
92
+
93
+ </form>
94
  <tr>
95
  <td colspan="2"><p class="description" id="rbsBackupFile-description"><?php _e('After backup of the galleries settings with EXPORT option, copy images from server folder: {Wordpress folder}/wp-content/uploads to the new location by FTP'); ?></p></td>
96
  </tr>
includes/extensions/backup/backup.init.php CHANGED
@@ -31,8 +31,13 @@ if(!function_exists('rbs_gallery_export')){
31
  $export = new rbsGalleryExport('robo_gallery_table');
32
  $export->setArchiveDir(ABSPATH . 'tmp');
33
  $export->isExportFiles = true;
 
34
  $today = date("Y_j_n");
35
- $isExport = $export->exportPostsXml(array('post_type' => ROBO_GALLERY_TYPE_POST), 'export_'.$today.'.xml');
 
 
 
 
36
  if(!$isExport) {
37
  // show pretty error
38
  var_dump($export->getError());
31
  $export = new rbsGalleryExport('robo_gallery_table');
32
  $export->setArchiveDir(ABSPATH . 'tmp');
33
  $export->isExportFiles = true;
34
+
35
  $today = date("Y_j_n");
36
+ $exportFileName = 'export_'.$today.'.xml';
37
+ if( isset($_POST['rbsGalleryBackupFilename']) && $_POST['rbsGalleryBackupFilename'] )
38
+ $exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFilename']);
39
+
40
+ $isExport = $export->exportPostsXml(array('post_type' => ROBO_GALLERY_TYPE_POST), $exportFileName );
41
  if(!$isExport) {
42
  // show pretty error
43
  var_dump($export->getError());
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.4
7
- Stable tag: 1.7.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -186,96 +186,106 @@ Just install it using regular Wordpress plugins installing mechanism. If you ha
186
 
187
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
188
 
189
- = How to upload images to the gallery? =
190
 
191
- 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.
192
-
193
- = Where specify description of the gallery images? =
194
 
195
- 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
196
 
197
- = How to make gallery thumbnails with rounded corners? =
198
 
199
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
200
 
201
- = How to change font size of the gallery image caption? =
202
 
203
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
204
 
205
- = Is it possible create gallery in Wordpress post with Gallery? =
 
 
206
 
207
- Yes, you can insert gallery into post with shortcode tag
208
 
209
- = How to insert gallery into Wordpress page or post? =
210
 
211
- When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
212
 
213
- = Do you have some conflict in gallery back end? =
214
 
215
- If you have some conflict in gallery back end you can sort it with new compatibility option. You can switch between standard and alternative jquery library. This modes implemented to help you to avoid any conflicts with another libraries from wordpress themes or another plugin.
216
 
217
  = How to define size of the gallery images thumbnails? =
218
 
219
  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
220
 
221
- = What can I do if some gallery interface elements in backend do not work properly? =
222
 
223
- If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
 
 
 
 
 
 
 
 
224
 
225
  = How to change text below image in lightbox ? =
226
 
227
  In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
228
 
 
 
 
 
229
  = Is it possible to have different settings for hover and static interface elements? =
230
 
231
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
232
 
233
- = Do you have some limit for images size in gallery? =
234
 
235
- No, we don't have any limits for image size in our gallery.
236
 
237
- = Do you have some limits for images amount in gallery? =
238
 
239
- No, we don't have any limits for amount of the images in gallery
240
 
241
- = How to define video for some gallery image? =
242
 
243
- Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
244
 
245
- = How to define custom hover effect for some gallery thumbnail? =
246
 
247
- 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.
 
 
248
 
249
- = How to change quality of the gallery thumbnails? =
250
 
251
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
252
 
253
- = How to generate shortcode for Wordpress page, post or widget? =
254
 
255
- First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
256
 
257
- = Is it possible to create direct link on the front end to the gallery? =
258
 
259
- Yes, you can use generated direct link inside particular gallery settings
260
 
261
- = How to use multi-category functionality of the gallery? =
262
 
263
- In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
 
 
264
 
265
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
266
-
267
  = How to make shadow for the gallery thumbnails? =
268
 
269
  Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
270
 
271
- = How to change amount of images loading on gallery page? =
272
-
273
- In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
274
 
275
- = How to hide titles of the gallery image in lightbox ? =
276
 
277
- 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.
278
-
279
  = How to customize border of the gallery thumbnails? =
280
 
281
  In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
@@ -284,22 +294,14 @@ In gallery settings you can find general settings section where you can turn on/
284
 
285
  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.
286
 
287
- = Is it possible to turn off border of the gallery thumbnails? =
288
 
289
- Yes, in gallery options you can turn on/off border option
290
 
291
  = How to load more function work? =
292
 
293
  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
294
 
295
- = Which parameters I can change for the gallery thumbnails borders and shadows? =
296
-
297
- You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
298
-
299
- = How to change font color of the gallery image caption? =
300
-
301
- In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
302
-
303
  = Is it possible to customize gallery image caption ? =
304
 
305
  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
@@ -308,6 +310,18 @@ In gallery settings you can find images manager where you can change settings of
308
 
309
  In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
310
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  = How to customize hover effect? =
312
 
313
  In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
@@ -324,18 +338,6 @@ In gallery settings you can find lightbox section and if you need to show descri
324
 
325
  When you open gallery images manager you'll find there image edit mode where you can crop source image
326
 
327
- = How to change ordering of the gallery images? =
328
-
329
- When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
330
-
331
- = Do you have fade effect for the thumbnails hover? =
332
-
333
- Yes, gallery have fade hover effect
334
-
335
- = How I can create custom (grid) layout of the thumbnails? =
336
-
337
- 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
338
-
339
  = How to enable lazy load in gallery options? =
340
 
341
  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
@@ -574,6 +576,10 @@ If any problem occurs, please contact us.
574
 
575
  == Changelog ==
576
 
 
 
 
 
577
  = 1.7.7 =
578
  * Updated backup section functionality
579
  * Added new export file name with current date generated
@@ -888,6 +894,9 @@ If any problem occurs, please contact us.
888
 
889
  == Upgrade Notice ==
890
 
 
 
 
891
  = 1.7.7 =
892
  Updated backup section functionality, added new export file name with current date generated
893
 
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.4
7
+ Stable tag: 1.7.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
186
 
187
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
188
 
189
+ = How to change font size of the gallery image caption? =
190
 
191
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
 
 
192
 
193
+ = What can I do if some gallery interface elements in backend do not work properly? =
194
 
195
+ If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
196
 
197
+ = Is it possible create gallery in Wordpress post with Gallery? =
198
 
199
+ Yes, you can insert gallery into post with shortcode tag
200
 
201
+ = How to define custom hover effect for some gallery thumbnail? =
202
 
203
+ 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.
204
+
205
+ = Do you have some limits for images amount in gallery? =
206
 
207
+ No, we don't have any limits for amount of the images in gallery
208
 
209
+ = How to change quality of the gallery thumbnails? =
210
 
211
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
212
 
213
+ = How to use multi-category functionality of the gallery? =
214
 
215
+ In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
216
 
217
  = How to define size of the gallery images thumbnails? =
218
 
219
  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
220
 
221
+ = Where specify description of the gallery images? =
222
 
223
+ 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
224
+
225
+ = How to make gallery thumbnails with rounded corners? =
226
+
227
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
228
+
229
+ = Do you have some limit for images size in gallery? =
230
+
231
+ No, we don't have any limits for image size in our gallery.
232
 
233
  = How to change text below image in lightbox ? =
234
 
235
  In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
236
 
237
+ = Where it's possible to define vertical and horizontal paddings? =
238
+
239
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
240
+
241
  = Is it possible to have different settings for hover and static interface elements? =
242
 
243
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
244
 
245
+ = How to insert gallery into Wordpress page or post? =
246
 
247
+ When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
248
 
249
+ = How to generate shortcode for Wordpress page, post or widget? =
250
 
251
+ First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
252
 
253
+ = Which parameters I can change for the gallery thumbnails borders and shadows? =
254
 
255
+ You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
256
 
257
+ = Do you have some conflict in gallery back end? =
258
 
259
+ If you have some conflict in gallery back end you can sort it with new compatibility option. You can switch between standard and alternative jquery library. This modes implemented to help you to avoid any conflicts with another libraries from wordpress themes or another plugin.
260
+
261
+ = Is it possible to turn off border of the gallery thumbnails? =
262
 
263
+ Yes, in gallery options you can turn on/off border option
264
 
265
+ = How to upload images to the gallery? =
266
 
267
+ 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.
268
 
269
+ = How to define video for some gallery image? =
270
 
271
+ Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
272
 
273
+ = How to hide titles of the gallery image in lightbox ? =
274
 
275
+ 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.
276
 
277
+ = How to change font color of the gallery image caption? =
278
+
279
+ In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
280
 
 
 
281
  = How to make shadow for the gallery thumbnails? =
282
 
283
  Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
284
 
285
+ = Is it possible to create direct link on the front end to the gallery? =
 
 
286
 
287
+ Yes, you can use generated direct link inside particular gallery settings
288
 
 
 
289
  = How to customize border of the gallery thumbnails? =
290
 
291
  In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
294
 
295
  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.
296
 
297
+ = How to change amount of images loading on gallery page? =
298
 
299
+ In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
300
 
301
  = How to load more function work? =
302
 
303
  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
304
 
 
 
 
 
 
 
 
 
305
  = Is it possible to customize gallery image caption ? =
306
 
307
  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
310
 
311
  In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
312
 
313
+ = How to change ordering of the gallery images? =
314
+
315
+ When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
316
+
317
+ = Do you have fade effect for the thumbnails hover? =
318
+
319
+ Yes, gallery have fade hover effect
320
+
321
+ = How I can create custom (grid) layout of the thumbnails? =
322
+
323
+ 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
324
+
325
  = How to customize hover effect? =
326
 
327
  In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
338
 
339
  When you open gallery images manager you'll find there image edit mode where you can crop source image
340
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  = How to enable lazy load in gallery options? =
342
 
343
  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
576
 
577
  == Changelog ==
578
 
579
+ = 1.7.8 =
580
+ * Updated backup section functionality
581
+ * Added new custom backup filename field
582
+
583
  = 1.7.7 =
584
  * Updated backup section functionality
585
  * Added new export file name with current date generated
894
 
895
  == Upgrade Notice ==
896
 
897
+ = 1.7.8 =
898
+ Updated backup section functionality, added new custom backup filename field
899
+
900
  = 1.7.7 =
901
  Updated backup section functionality, added new export file name with current date generated
902
 
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.7.7
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.7.7');
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.7.8
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.7.8');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25