Gallery by BestWebSoft - Version 3.02

Version Description

  • 12.04.2012 =
  • Bugfix : The bug related with the display of the photo on the single page of the gallery was fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Gallery by BestWebSoft
Version 3.02
Comparing to
See all releases

Code changes from version 3.01 to 3.02

gallery-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
- Version: 3.01
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
+ Version: 3.02
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.3.1
7
- Stable tag: 3.01
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
@@ -41,6 +41,10 @@ This plugin makes it possible to implement as many galleries as you want into yo
41
 
42
  If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
43
 
 
 
 
 
44
  == Installation ==
45
 
46
  1. Upload `Gallery` folder to the directory `/wp-content/plugins/`.
@@ -82,6 +86,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
82
 
83
  == Changelog ==
84
 
 
 
 
85
  = V3.01 - 12.04.2012 =
86
  * NEW : Czech, Hungarian and German language files are added to the plugin.
87
  * NEW : Possibility to set featured image as cover of the album.
@@ -139,6 +146,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
139
 
140
  == Upgrade Notice ==
141
 
 
 
 
142
  = V3.01 =
143
  Czech, Hungarian and German language files are added to the plugin. Possibility to set featured image as cover of the album is added. Replace prettyPhoto library to fancybox library. Code that is used to display a lightbox for images in `gallery-single-template.php` template file is changed.
144
 
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.3.1
7
+ Stable tag: 3.02
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
41
 
42
  If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
43
 
44
+ = Technical support =
45
+
46
+ Dear users, if you have any questions or propositions regarding our plugins (current options, new options, current issues) please feel free to contact us. Please note that we accept requests in English only. All messages on another languages wouldn't be accepted.
47
+
48
  == Installation ==
49
 
50
  1. Upload `Gallery` folder to the directory `/wp-content/plugins/`.
86
 
87
  == Changelog ==
88
 
89
+ = V3.02 - 12.04.2012 =
90
+ * Bugfix : The bug related with the display of the photo on the single page of the gallery was fixed.
91
+
92
  = V3.01 - 12.04.2012 =
93
  * NEW : Czech, Hungarian and German language files are added to the plugin.
94
  * NEW : Possibility to set featured image as cover of the album.
146
 
147
  == Upgrade Notice ==
148
 
149
+ = V3.02 =
150
+ The bug related with the display of the photo on the single page of the gallery was fixed.
151
+
152
  = V3.01 =
153
  Czech, Hungarian and German language files are added to the plugin. Possibility to set featured image as cover of the album is added. Replace prettyPhoto library to fancybox library. Code that is used to display a lightbox for images in `gallery-single-template.php` template file is changed.
154
 
template/gallery-single-template.php CHANGED
@@ -71,7 +71,10 @@
71
  'transitionOut' : 'elastic',
72
  'titlePosition' : 'inside',
73
  'speedIn' : 500,
74
- 'speedOut' : 300
 
 
 
75
  });
76
  });
77
  })(jQuery);
71
  'transitionOut' : 'elastic',
72
  'titlePosition' : 'inside',
73
  'speedIn' : 500,
74
+ 'speedOut' : 300,
75
+ 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
76
+ return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
77
+ }
78
  });
79
  });
80
  })(jQuery);