Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.10 |
| Comparing to | |
| See all releases | |
Code changes from version 1.9 to 1.10
- README.md +4 -0
- includes/js/gallery.js +2 -2
- readme.txt +4 -0
- wc-gallery.php +2 -2
README.md
CHANGED
|
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
|
|
| 46 |
|
| 47 |
## Changelog ##
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
### Version 1.9
|
| 50 |
|
| 51 |
* HTML5 compliant gallery structure
|
| 46 |
|
| 47 |
## Changelog ##
|
| 48 |
|
| 49 |
+
### Version 1.10
|
| 50 |
+
|
| 51 |
+
* Made an update to the responsive behavior of galleries
|
| 52 |
+
|
| 53 |
### Version 1.9
|
| 54 |
|
| 55 |
* HTML5 compliant gallery structure
|
includes/js/gallery.js
CHANGED
|
@@ -29,9 +29,9 @@
|
|
| 29 |
columns = 4;
|
| 30 |
}
|
| 31 |
}
|
| 32 |
-
else if ( containerWidth < 768 ) {
|
| 33 |
columns -= 1;
|
| 34 |
-
}
|
| 35 |
|
| 36 |
if ( columns < 2 ) {
|
| 37 |
columns = 2;
|
| 29 |
columns = 4;
|
| 30 |
}
|
| 31 |
}
|
| 32 |
+
/* else if ( containerWidth < 768 ) {
|
| 33 |
columns -= 1;
|
| 34 |
+
} */
|
| 35 |
|
| 36 |
if ( columns < 2 ) {
|
| 37 |
columns = 2;
|
readme.txt
CHANGED
|
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
|
|
| 46 |
|
| 47 |
== Changelog ==
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
### Version 1.9
|
| 50 |
|
| 51 |
* HTML5 compliant gallery structure
|
| 46 |
|
| 47 |
== Changelog ==
|
| 48 |
|
| 49 |
+
### Version 1.10
|
| 50 |
+
|
| 51 |
+
* Made an update to the responsive behavior of galleries
|
| 52 |
+
|
| 53 |
### Version 1.9
|
| 54 |
|
| 55 |
* HTML5 compliant gallery structure
|
wc-gallery.php
CHANGED
|
@@ -5,7 +5,7 @@ Plugin URI: http://wordpresscanvas.com/features/gallery/
|
|
| 5 |
Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
-
Version: 1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
|
@@ -13,7 +13,7 @@ function wc_gallery_using_woocommerce() {
|
|
| 13 |
return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
|
| 14 |
}
|
| 15 |
|
| 16 |
-
define( 'WC_GALLERY_VERSION', '1.
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 5 |
Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
+
Version: 1.10
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 13 |
return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
|
| 14 |
}
|
| 15 |
|
| 16 |
+
define( 'WC_GALLERY_VERSION', '1.10' );
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
