Gallery Bank: WordPress Photo Gallery Plugin - Version 3.1.36

Version Description

  • Error Reporting Added
  • Responsive Layouts Fixed
Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 Gallery Bank: WordPress Photo Gallery Plugin
Version 3.1.36
Comparing to
See all releases

Code changes from version 3.1.34 to 3.1.36

Files changed (2) hide show
  1. gallery-bank.php +21 -5
  2. readme.txt +57 -48
gallery-bank.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://tech-banker.com
5
  * Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
6
  * Author: Tech Banker
7
- * Version: 3.1.35
8
  * Author URI: http://tech-banker.com
9
  * License: GPLv3 or later
10
  * Text Domain: gallery-bank
@@ -26,7 +26,10 @@ if (!defined("GALLERY_BK_THUMB_SMALL_URL")) define("GALLERY_BK_THUMB_SMALL_URL",
26
  if (!defined("GALLERY_BK_ALBUM_THUMB_URL")) define("GALLERY_BK_ALBUM_THUMB_URL", content_url()."/gallery-bank/album-thumbs/");
27
  if (!defined("GALLERY_BK_PLUGIN_BASENAME")) define("GALLERY_BK_PLUGIN_BASENAME", plugin_basename(__FILE__));
28
  if(!defined("tech_banker_stats_url")) define("tech_banker_stats_url", "stats.tech-banker-services.org");
29
- if(!defined("gallery_bank_version_number")) define("gallery_bank_version_number","3.1.35");
 
 
 
30
  if (!is_dir(GALLERY_MAIN_DIR))
31
  {
32
  wp_mkdir_p(GALLERY_MAIN_DIR);
@@ -44,6 +47,9 @@ if (!is_dir(GALLERY_MAIN_ALB_THUMB_DIR))
44
  wp_mkdir_p(GALLERY_MAIN_ALB_THUMB_DIR);
45
  }
46
 
 
 
 
47
  $memory_limit_gallery_bank = intval(ini_get("memory_limit"));
48
  if (!extension_loaded('suhosin') && $memory_limit_gallery_bank < 512)
49
  {
@@ -53,6 +59,18 @@ if (!extension_loaded('suhosin') && $memory_limit_gallery_bank < 512)
53
  @ini_set("max_execution_time", 6000);
54
  @ini_set("max_input_vars", 10000);
55
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  /*************************************************************************************/
57
  if (file_exists(GALLERY_BK_PLUGIN_DIR . "/lib/gallery-bank-class.php"))
58
  {
@@ -138,9 +156,6 @@ if(!function_exists("deactivation_function_for_gallery_bank"))
138
 
139
  $url = tech_banker_stats_url."/wp-admin/admin-ajax.php";
140
  $type = get_option("gallery-bank-wizard");
141
-
142
- delete_option("gallery-bank-wizard");
143
-
144
  $theme_details = array();
145
 
146
  if($wp_version >= 3.4)
@@ -667,5 +682,6 @@ add_action("in_plugin_update_message-".GALLERY_FILE,"gallery_bank_plugin_update_
667
  register_activation_hook(__FILE__, "plugin_install_script_for_gallery_bank");
668
  register_deactivation_hook(__FILE__, "deactivation_function_for_gallery_bank");
669
  register_uninstall_hook(__FILE__, "plugin_uninstall_script_for_gallery_bank");
 
670
  /*************************************************************************************/
671
  ?>
4
  * Plugin URI: http://tech-banker.com
5
  * Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
6
  * Author: Tech Banker
7
+ * Version: 3.1.36
8
  * Author URI: http://tech-banker.com
9
  * License: GPLv3 or later
10
  * Text Domain: gallery-bank
26
  if (!defined("GALLERY_BK_ALBUM_THUMB_URL")) define("GALLERY_BK_ALBUM_THUMB_URL", content_url()."/gallery-bank/album-thumbs/");
27
  if (!defined("GALLERY_BK_PLUGIN_BASENAME")) define("GALLERY_BK_PLUGIN_BASENAME", plugin_basename(__FILE__));
28
  if(!defined("tech_banker_stats_url")) define("tech_banker_stats_url", "stats.tech-banker-services.org");
29
+ if(!defined("gallery_bank_version_number")) define("gallery_bank_version_number","3.1.36");
30
+ if(!defined("GALLERY_BK_ERROR_LOGS_FILE")) define("GALLERY_BK_ERROR_LOGS_FILE",GALLERY_MAIN_DIR."/error-logs.txt");
31
+
32
+
33
  if (!is_dir(GALLERY_MAIN_DIR))
34
  {
35
  wp_mkdir_p(GALLERY_MAIN_DIR);
47
  wp_mkdir_p(GALLERY_MAIN_ALB_THUMB_DIR);
48
  }
49
 
50
+ @ini_set("log_errors",1);
51
+ @ini_set("error_log",GALLERY_BK_ERROR_LOGS_FILE);
52
+
53
  $memory_limit_gallery_bank = intval(ini_get("memory_limit"));
54
  if (!extension_loaded('suhosin') && $memory_limit_gallery_bank < 512)
55
  {
59
  @ini_set("max_execution_time", 6000);
60
  @ini_set("max_input_vars", 10000);
61
 
62
+ /*************************************************************************************/
63
+ if(!function_exists("gallery_bank_error_log_file"))
64
+ {
65
+ function gallery_bank_error_log_file()
66
+ {
67
+ if(!file_exists(GALLERY_BK_ERROR_LOGS_FILE))
68
+ {
69
+ $error_file = fopen(GALLERY_BK_ERROR_LOGS_FILE, 'wb');
70
+ fclose($error_file);
71
+ }
72
+ }
73
+ }
74
  /*************************************************************************************/
75
  if (file_exists(GALLERY_BK_PLUGIN_DIR . "/lib/gallery-bank-class.php"))
76
  {
156
 
157
  $url = tech_banker_stats_url."/wp-admin/admin-ajax.php";
158
  $type = get_option("gallery-bank-wizard");
 
 
 
159
  $theme_details = array();
160
 
161
  if($wp_version >= 3.4)
682
  register_activation_hook(__FILE__, "plugin_install_script_for_gallery_bank");
683
  register_deactivation_hook(__FILE__, "deactivation_function_for_gallery_bank");
684
  register_uninstall_hook(__FILE__, "plugin_uninstall_script_for_gallery_bank");
685
+ add_action("init","gallery_bank_error_log_file");
686
  /*************************************************************************************/
687
  ?>
readme.txt CHANGED
@@ -1,13 +1,13 @@
1
- === Responsive Photo Gallery for WordPress by Gallery Bank ===
2
  Contributors: Gallery-Bank, contact-banker
3
- Tags: album, content gallery, fancy gallery, fullscreen gallery, gallery, gallery lightbox, gallery plugin, gallery slider, gallery slideshow, gallery widget, grid gallery, image gallery, masonry gallery, media gallery, mosaic gallery, photo album, photo gallery, polaroid gallery, portfolio gallery, post gallery, responsive gallery, thumbnail gallery, video gallery, wordpress gallery, wordpress gallery plugin, youtube gallery
4
  Requires at least: 3.4
5
  Tested up to: 4.7.4
6
  Stable Tag: trunk
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
10
- Gallery Bank is an advanced plugin which creates Beautiful Photo Galleries and Albums for different views. It is fully responsive.
11
 
12
  == Description ==
13
 
@@ -23,46 +23,46 @@ Gallery Bank Regularly updates and simplicity of usage along with efficient func
23
 
24
  > #### **Live Demos - Gallery Bank**
25
 
26
- > * [Gallery Bank](http://tech-banker.com/products/wp-gallery-bank/)
27
- > * [Gallery Bank Demos](http://tech-banker.com/products/wp-gallery-bank/demo/)
28
- > * [Demo Using Masonry Layout in Individual Images](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-masonry-layout/)
29
- > * [Demo Using Masonry Layout in Individual Videos](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-masonry-layout/)
30
- > * [Demo Using Masonry Layout in Individual Album](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-masonry-layout/)
31
- > * [Demo Using Masonry Layout with Albums in Grid Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-masonry-layout/)
32
- > * [Demo Using Masonry Layout with Albums in List Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-masonry-layout/)
33
- > * [Demo Using Masonry Layout with Animation Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pulse-effect-masonry-layout/)
34
- > * [Demo Using Masonry Layout with Different Lightboxes](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-foo-box-masonry-layout/)
35
- > * [Demo Using Masonry Layout with Filters](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-filters-masonry-layout/)
36
- > * [Demo Using Thumbnail Layout in Individual Images](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-thumbnail-layout/)
37
- > * [Demo Using Thumbnail Layout in Individual Videos](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-thumbnail-layout/)
38
- > * [Demo Using Thumbnail Layout in Individual Album](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-thumbnails-layout/)
39
- > * [Demo Using Thumbnail Layout with Albums in Grid Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-thumbnails-layout/)
40
- > * [Demo Using Thumbnail Layout with Albums in List Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-thumbnails-layout/)
41
- > * [Demo Using Thumbnail Layout with Animation Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pulse-effect-thumbnail-layout/)
42
- > * [Demo Using Thumbnail Layout with Different Lightboxes](http://tech-banker.com/products/wp-gallery-bank/demo/vindividual-images-with-title-using-foo-box-thumbnail-layout/)
43
- > * [Demo Using Thumbnail Layout with Filters](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-with-filters-thumbnail-layout/)
44
- > * [Demo Using Thumbnail Layout with Pagination](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-with-pagination-thumbnail-layout/)
45
- > * [Demo Using Thumbnail Layout with Special Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-without-title-and-description-using-lomo-effect-thumbnail-layout/)
46
- > * [Demo Using Filmstrip Layout in Individual Images](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-filmstrip-layout/)
47
- > * [Demo Using Filmstrip Layout in Individual Videos](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-filmstrip-layout/)
48
- > * [Demo Using Filmstrip Layout in Individual Album](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-filmstrip-layout/)
49
- > * [Demo Using Filmstrip Layout with Albums in Grid Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-filmstrip-layout/)
50
- > * [Demo Using Filmstrip Layout with Albums in List Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-filmstrip-layout/)
51
- > * [Demo Using Filmstrip Layout with Animation Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-slide-in-down-effect-filmstrip-layout/)
52
- > * [Demo Using Slideshow Layout in Individual Videos](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-slideshow-layout/)
53
- > * [Demo Using Slideshow Layout in Individual Album](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-slideshow-layout/)
54
- > * [Demo Using Slideshow Layout with Albums in Grid Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-slideshow-layout/)
55
- > * [Demo Using Slideshow Layout with Albums in List Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-slideshow-layout/)
56
- > * [Demo Using Blog Style Layout in Individual Images](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-blog-style-layout/)
57
- > * [Demo Using Blog Style Layout in Individual Videos](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-blog-layout/)
58
- > * [Demo Using Blog Style Layout in Individual Album](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-blog-style-layout/)
59
- > * [Demo Using Blog Style Layout with Albums in Grid Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-blog-style-layout/)
60
- > * [Demo Using Blog Style Layout with Albums in List Format](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-blog-style-layout/)
61
- > * [Demo Using Blog Style Layout with Animation Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-slide-in-right-blog-style-layout/)
62
- > * [Demo Using Blog Style Layout with Different Lightboxes](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pretty-photo-blog-style-layout/)
63
- > * [Demo Using Blog Style Layout with Filters](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-with-filters-blog-style-layout/)
64
- > * [Demo Using Blog Style Layout with Pagination](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pagination-blog-style-layout/)
65
- > * [Demo Using Blog Style Layout with Special Effects](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-grayscale-effect-blog-style-layout/)
66
 
67
  [vimeo https://vimeo.com/92378296]
68
 
@@ -502,24 +502,33 @@ is False in shortcode.
502
 
503
  == Changelog ==
504
 
505
- = 3.0.34 =
506
 
507
- * Major Bugs Fixed
508
  * Responsive Layouts Fixed
509
 
 
510
 
511
- = 3.0.33 =
 
 
 
 
 
 
 
 
512
 
513
  * Major Bugs Fixed
514
  * Ini Default Values Set
515
  * Compatibility with 4.7.3
516
 
517
- = 3.0.32 =
518
 
519
  * Translation Files Updated
520
  * Translation Constant Bug Fixed
521
 
522
- = 3.0.31 =
523
 
524
  * Obsolete Code removed
525
  * Unused Files removed
1
+ === WordPress Gallery Plugin - Gallery Bank ===
2
  Contributors: Gallery-Bank, contact-banker
3
+ Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
4
  Requires at least: 3.4
5
  Tested up to: 4.7.4
6
  Stable Tag: trunk
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
10
+ Photo Gallery by Gallery Bank is an advanced photo gallery plugin for adding specialized portfolio, photo gallery, albums and single images.
11
 
12
  == Description ==
13
 
23
 
24
  > #### **Live Demos - Gallery Bank**
25
 
26
+ > * [Gallery Bank - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/)
27
+ > * [Gallery Bank Demos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/)
28
+ > * [Demo Using Masonry Layout in Individual Images - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-masonry-layout/)
29
+ > * [Demo Using Masonry Layout in Individual Videos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-masonry-layout/)
30
+ > * [Demo Using Masonry Layout in Individual Album - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-masonry-layout/)
31
+ > * [Demo Using Masonry Layout with Albums in Grid Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-masonry-layout/)
32
+ > * [Demo Using Masonry Layout with Albums in List Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-masonry-layout/)
33
+ > * [Demo Using Masonry Layout with Animation Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pulse-effect-masonry-layout/)
34
+ > * [Demo Using Masonry Layout with Different Lightboxes - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-foo-box-masonry-layout/)
35
+ > * [Demo Using Masonry Layout with Filters - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-filters-masonry-layout/)
36
+ > * [Demo Using Thumbnail Layout in Individual Images - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-thumbnail-layout/)
37
+ > * [Demo Using Thumbnail Layout in Individual Videos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-thumbnail-layout/)
38
+ > * [Demo Using Thumbnail Layout in Individual Album - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-thumbnails-layout/)
39
+ > * [Demo Using Thumbnail Layout with Albums in Grid Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-thumbnails-layout/)
40
+ > * [Demo Using Thumbnail Layout with Albums in List Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-thumbnails-layout/)
41
+ > * [Demo Using Thumbnail Layout with Animation Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pulse-effect-thumbnail-layout/)
42
+ > * [Demo Using Thumbnail Layout with Different Lightboxes - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/vindividual-images-with-title-using-foo-box-thumbnail-layout/)
43
+ > * [Demo Using Thumbnail Layout with Filters - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-with-filters-thumbnail-layout/)
44
+ > * [Demo Using Thumbnail Layout with Pagination - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-with-pagination-thumbnail-layout/)
45
+ > * [Demo Using Thumbnail Layout with Special Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-without-title-and-description-using-lomo-effect-thumbnail-layout/)
46
+ > * [Demo Using Filmstrip Layout in Individual Images - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-filmstrip-layout/)
47
+ > * [Demo Using Filmstrip Layout in Individual Videos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-filmstrip-layout/)
48
+ > * [Demo Using Filmstrip Layout in Individual Album - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-filmstrip-layout/)
49
+ > * [Demo Using Filmstrip Layout with Albums in Grid Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-filmstrip-layout/)
50
+ > * [Demo Using Filmstrip Layout with Albums in List Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-filmstrip-layout/)
51
+ > * [Demo Using Filmstrip Layout with Animation Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-slide-in-down-effect-filmstrip-layout/)
52
+ > * [Demo Using Slideshow Layout in Individual Videos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-slideshow-layout/)
53
+ > * [Demo Using Slideshow Layout in Individual Album - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-slideshow-layout/)
54
+ > * [Demo Using Slideshow Layout with Albums in Grid Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-slideshow-layout/)
55
+ > * [Demo Using Slideshow Layout with Albums in List Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-slideshow-layout/)
56
+ > * [Demo Using Blog Style Layout in Individual Images - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-blog-style-layout/)
57
+ > * [Demo Using Blog Style Layout in Individual Videos - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-videos-with-title-using-blog-layout/)
58
+ > * [Demo Using Blog Style Layout in Individual Album - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-album-with-title-blog-style-layout/)
59
+ > * [Demo Using Blog Style Layout with Albums in Grid Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-grid-format-with-title-blog-style-layout/)
60
+ > * [Demo Using Blog Style Layout with Albums in List Format - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/albums-in-list-format-with-title-blog-style-layout/)
61
+ > * [Demo Using Blog Style Layout with Animation Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-slide-in-right-blog-style-layout/)
62
+ > * [Demo Using Blog Style Layout with Different Lightboxes - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pretty-photo-blog-style-layout/)
63
+ > * [Demo Using Blog Style Layout with Filters - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-with-filters-blog-style-layout/)
64
+ > * [Demo Using Blog Style Layout with Pagination - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-pagination-blog-style-layout/)
65
+ > * [Demo Using Blog Style Layout with Special Effects - Photo Gallery Plugin](http://tech-banker.com/products/wp-gallery-bank/demo/individual-images-with-title-using-grayscale-effect-blog-style-layout/)
66
 
67
  [vimeo https://vimeo.com/92378296]
68
 
502
 
503
  == Changelog ==
504
 
505
+ = 3.1.36 =
506
 
507
+ * Error Reporting Added
508
  * Responsive Layouts Fixed
509
 
510
+ = 3.1.35 =
511
 
512
+ * Major Bugs Fixed
513
+ * Wizard Page Added
514
+
515
+ = 3.1.34 =
516
+
517
+ * Major Bugs Fixed
518
+ * Responsive Layouts Fixed
519
+
520
+ = 3.1.33 =
521
 
522
  * Major Bugs Fixed
523
  * Ini Default Values Set
524
  * Compatibility with 4.7.3
525
 
526
+ = 3.1.32 =
527
 
528
  * Translation Files Updated
529
  * Translation Constant Bug Fixed
530
 
531
+ = 3.1.31 =
532
 
533
  * Obsolete Code removed
534
  * Unused Files removed