Galleries by Angie Makes - Version 1.48

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Galleries by Angie Makes
Version 1.48
Comparing to
See all releases

Code changes from version 1.47 to 1.48

README.md CHANGED
@@ -4,7 +4,7 @@
4
  **Donate link:** http://webplantmedia.com/pay-now/
5
  **Tags:** masonry gallery, pinterest style gallery, pinterest gallery, gallery slider, slider gallery, carousel gallery, carousel, slider
6
  **Requires at least:** 3.7
7
- **Tested up to:** 3.7.1
8
  **Stable tag:** trunk
9
  **License:** GPLv2 or later
10
  **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
46
 
47
  ## Changelog ##
48
 
 
 
 
 
49
  ### Version 1.47
50
 
51
  * Hide masonry gallery by default in CSS
4
  **Donate link:** http://webplantmedia.com/pay-now/
5
  **Tags:** masonry gallery, pinterest style gallery, pinterest gallery, gallery slider, slider gallery, carousel gallery, carousel, slider
6
  **Requires at least:** 3.7
7
+ **Tested up to:** 4.4.2
8
  **Stable tag:** trunk
9
  **License:** GPLv2 or later
10
  **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
46
 
47
  ## Changelog ##
48
 
49
+ ### Version 1.48
50
+
51
+ * Added new caption option: Show On Image Pop-up
52
+
53
  ### Version 1.47
54
 
55
  * Hide masonry gallery by default in CSS
includes/css/style.css CHANGED
@@ -136,6 +136,7 @@
136
  }
137
 
138
  .wc-image-links .gallery-caption,
 
139
  .wc-gallery-captions-showon .gallery-caption,
140
  .wc-gallery-captions-onhover .gallery-caption {
141
  background: rgba(255, 255, 255, .8);
136
  }
137
 
138
  .wc-image-links .gallery-caption,
139
+ .wc-gallery-captions-onpopup .gallery-caption,
140
  .wc-gallery-captions-showon .gallery-caption,
141
  .wc-gallery-captions-onhover .gallery-caption {
142
  background: rgba(255, 255, 255, .8);
includes/functions.php CHANGED
@@ -484,7 +484,7 @@ function wc_gallery_print_media_templates() {
484
  ?>
485
  <script type="text/html" id="tmpl-wc-gallery-settings">
486
  <label class="setting">
487
- <span><?php _e( 'Popup Size', 'wc_gallery' ); ?></span>
488
  <select class="targetsize" name="targetsize" data-setting="targetsize">
489
  <?php
490
  $sizes = apply_filters( 'image_size_names_choose', array(
@@ -515,6 +515,7 @@ function wc_gallery_print_media_templates() {
515
  'onhover' => __( 'On Image Hover', 'wc_gallery' ),
516
  'show' => __( 'Show Below Image', 'wc_gallery' ),
517
  'showon' => __( 'Show On Image', 'wc_gallery' ),
 
518
  'hide' => __( 'Hide', 'wc_gallery' )
519
  );
520
  ?>
484
  ?>
485
  <script type="text/html" id="tmpl-wc-gallery-settings">
486
  <label class="setting">
487
+ <span><?php _e( 'Pop-up Size', 'wc_gallery' ); ?></span>
488
  <select class="targetsize" name="targetsize" data-setting="targetsize">
489
  <?php
490
  $sizes = apply_filters( 'image_size_names_choose', array(
515
  'onhover' => __( 'On Image Hover', 'wc_gallery' ),
516
  'show' => __( 'Show Below Image', 'wc_gallery' ),
517
  'showon' => __( 'Show On Image', 'wc_gallery' ),
518
+ 'onpopup' => __( 'Show On Image Pop-up', 'wc_gallery' ),
519
  'hide' => __( 'Hide', 'wc_gallery' )
520
  );
521
  ?>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: cbaldelomar
4
  Donate link: http://webplantmedia.com/pay-now/
5
  Tags: masonry gallery, pinterest style gallery, pinterest gallery, gallery slider, slider gallery, carousel gallery, carousel, slider
6
  Requires at least: 3.7
7
- Tested up to: 3.7.1
8
  Stable tag: trunk
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
46
 
47
  == Changelog ==
48
 
 
 
 
 
49
  = Version 1.47 =
50
 
51
  * Hide masonry gallery by default in CSS
4
  Donate link: http://webplantmedia.com/pay-now/
5
  Tags: masonry gallery, pinterest style gallery, pinterest gallery, gallery slider, slider gallery, carousel gallery, carousel, slider
6
  Requires at least: 3.7
7
+ Tested up to: 4.4.2
8
  Stable tag: trunk
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
46
 
47
  == Changelog ==
48
 
49
+ = Version 1.48 =
50
+
51
+ * Added new caption option: Show On Image Pop-up
52
+
53
  = Version 1.47 =
54
 
55
  * Hide masonry gallery by default in CSS
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.47
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.47' );
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.48
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.48' );
17
  define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
18
  define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
19
  define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );