Genesis Responsive Slider - Version 0.9.2

Version Description

  • add alt attribute to images for validation
  • Fix image links
Download this release

Release Info

Developer wpmuguru
Plugin Icon 128x128 Genesis Responsive Slider
Version 0.9.2
Comparing to
See all releases

Code changes from version 0.9.1 to 0.9.2

Files changed (3) hide show
  1. admin.php +1 -1
  2. genesis-responsive-slider.php +6 -6
  3. readme.txt +9 -4
admin.php CHANGED
@@ -102,7 +102,7 @@ function genesis_responsive_slider_settings_scripts() {
102
  wp_enqueue_script( 'common' );
103
  wp_enqueue_script( 'wp-lists' );
104
  wp_enqueue_script( 'postbox' );
105
- wp_enqueue_script( 'genesis_responsive_slider_admin_scripts', WP_PLUGIN_URL . '/genesis-responsive-slider/js/admin.js', array( 'jquery' ), '1.0', TRUE );
106
  }
107
 
108
  /*
102
  wp_enqueue_script( 'common' );
103
  wp_enqueue_script( 'wp-lists' );
104
  wp_enqueue_script( 'postbox' );
105
+ wp_enqueue_script( 'genesis_responsive_slider_admin_scripts', plugins_url( 'js/admin.js', __FILE__ ), array( 'jquery' ), GENESIS_RESPONSIVE_SLIDER_VERSION, TRUE );
106
  }
107
 
108
  /*
genesis-responsive-slider.php CHANGED
@@ -6,7 +6,7 @@
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com
8
 
9
- Version: 0.9.1
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -21,7 +21,7 @@
21
  */
22
 
23
  define( 'GENESIS_RESPONSIVE_SLIDER_SETTINGS_FIELD', 'genesis_responsive_slider_settings' );
24
- define( 'GENESIS_RESPONSIVE_SLIDER_VERSION', '0.9.1' );
25
 
26
  add_action( 'after_setup_theme', 'GenesisResponsiveSliderInit', 15 );
27
  /**
@@ -338,12 +338,12 @@ class genesis_responsive_sliderWidget extends WP_Widget {
338
  <div class="slide-image">
339
  <?php
340
  if ( $no_image_link ) {
341
-
342
- genesis_image( 'format=html&size=slider' );
343
-
344
  } else {
345
  ?>
346
- <a href="<?php the_permalink() ?>" rel="bookmark"><?php genesis_image( 'format=html&size=slider' ); ?></a>
347
  <?php
348
 
349
  } // $no_image_link
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com
8
 
9
+ Version: 0.9.2
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
21
  */
22
 
23
  define( 'GENESIS_RESPONSIVE_SLIDER_SETTINGS_FIELD', 'genesis_responsive_slider_settings' );
24
+ define( 'GENESIS_RESPONSIVE_SLIDER_VERSION', '0.9.2' );
25
 
26
  add_action( 'after_setup_theme', 'GenesisResponsiveSliderInit', 15 );
27
  /**
338
  <div class="slide-image">
339
  <?php
340
  if ( $no_image_link ) {
341
+ ?>
342
+ <img src="<?php genesis_image( 'format=url&size=slider' ); ?>" alt="<?php the_title(); ?>" />
343
+ <?php
344
  } else {
345
  ?>
346
+ <a href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php genesis_image( 'format=url&size=slider' ); ?>" alt="<?php the_title(); ?>" /></a>
347
  <?php
348
 
349
  } // $no_image_link
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: nathanrice, studiopress, wpmuguru
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
4
  Tags: slider, slideshow, responsive, genesis, genesiswp, studiopress
5
  Requires at least: 3.2
6
- Tested up to: 3.4.1
7
- Stable tag: 0.9.1
8
 
9
  This plugin allows you to create a simple responsive slider that displays the featured image, along with the title and excerpt from each post.
10
 
@@ -66,6 +66,9 @@ function my_child_theme_responsive_slider_defaults( $defaults ) {
66
 
67
  == Changelog ==
68
 
 
 
 
69
  = 0.9.1 =
70
  * Fix slider HTML markup for validation
71
  * Fix SSL mixed cotent warning
@@ -73,5 +76,7 @@ function my_child_theme_responsive_slider_defaults( $defaults ) {
73
  * Fix Excerpt More filter to only apply to slides
74
  * UI text changes
75
 
76
- = 0.9.0 =
77
- * Beta Release
 
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
4
  Tags: slider, slideshow, responsive, genesis, genesiswp, studiopress
5
  Requires at least: 3.2
6
+ Tested up to: 4.0.1
7
+ Stable tag: 0.9.2
8
 
9
  This plugin allows you to create a simple responsive slider that displays the featured image, along with the title and excerpt from each post.
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 0.9.0 =
70
+ * Beta Release
71
+
72
  = 0.9.1 =
73
  * Fix slider HTML markup for validation
74
  * Fix SSL mixed cotent warning
76
  * Fix Excerpt More filter to only apply to slides
77
  * UI text changes
78
 
79
+
80
+ = 0.9.2 =
81
+ * add alt attribute to images for validation
82
+ * Fix image links