jQuery Pin It Button for Images - Version 1.32

Version Description

  • Release 2014-05-04
  • Minor fix
Download this release

Release Info

Developer mrsztuczkens
Plugin Icon wp plugin jQuery Pin It Button for Images
Version 1.32
Comparing to
See all releases

Code changes from version 1.31 to 1.32

includes/public/class-jpibfi-client.php CHANGED
@@ -9,8 +9,8 @@ class JPIBFI_Client {
9
  add_action( 'wp_enqueue_scripts', array( $this, 'add_plugin_scripts' ) );
10
  add_action( 'wp_enqueue_scripts', array( $this, 'add_plugin_styles' ) );
11
  add_action( 'wp_head', array( $this, 'print_header_style' ) );
12
- add_filter( "the_content", array( $this, 'prepare_the_content' ) );
13
- add_filter( "the_excerpt", array( $this, 'prepare_the_content' ) );
14
  }
15
 
16
  public static function get_instance() {
9
  add_action( 'wp_enqueue_scripts', array( $this, 'add_plugin_scripts' ) );
10
  add_action( 'wp_enqueue_scripts', array( $this, 'add_plugin_styles' ) );
11
  add_action( 'wp_head', array( $this, 'print_header_style' ) );
12
+ add_filter( "the_content", array( $this, 'prepare_the_content' ), 9999 );
13
+ add_filter( "the_excerpt", array( $this, 'prepare_the_content' ), 9999 );
14
  }
15
 
16
  public static function get_instance() {
jquery-pin-it-button-for-images.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: jQuery Pin It Button For Images
4
  Plugin URI: http://mrsztuczkens.me/jpibfi/
5
  Description: Highlights images on hover and adds a "Pin It" button over them for easy pinning.
6
  Author: Marcin Skrzypiec
7
- Version: 1.31
8
  Author URI: http://mrsztuczkens.me/
9
  */
10
 
@@ -47,7 +47,7 @@ if ( ! class_exists( 'jQuery_Pin_It_Button_For_Images' ) ) :
47
  /* VERSIONING */
48
  //plugin version
49
  if ( ! defined( 'JPIBFI_VERSION' ) )
50
- define( 'JPIBFI_VERSION', '1.31' );
51
 
52
  //used in versioning css and js files
53
  if ( ! defined( 'JPIBFI_VERSION_MINOR' ) )
4
  Plugin URI: http://mrsztuczkens.me/jpibfi/
5
  Description: Highlights images on hover and adds a "Pin It" button over them for easy pinning.
6
  Author: Marcin Skrzypiec
7
+ Version: 1.32
8
  Author URI: http://mrsztuczkens.me/
9
  */
10
 
47
  /* VERSIONING */
48
  //plugin version
49
  if ( ! defined( 'JPIBFI_VERSION' ) )
50
+ define( 'JPIBFI_VERSION', '1.32' );
51
 
52
  //used in versioning css and js files
53
  if ( ! defined( 'JPIBFI_VERSION_MINOR' ) )
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mrsztuczkens, redearthdesign, brocheafoin, robertark
3
  Donate link: http://bit.ly/Uw2mEP
4
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
5
  Requires at least: 3.3.0
6
- Tested up to: 3.6.1
7
- Stable tag: 1.31
8
  License: GPLv2 or later
9
 
10
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
@@ -76,6 +76,10 @@ Please report them in the plugin's support forum on Wordpress.org.
76
 
77
  == Changelog ==
78
 
 
 
 
 
79
  = 1.31 =
80
  * Release 2014-03-13
81
  * Important fix
@@ -198,6 +202,9 @@ Please report them in the plugin's support forum on Wordpress.org.
198
 
199
  == Upgrade Notice ==
200
 
 
 
 
201
  = 1.31 =
202
  Important fix.
203
 
3
  Donate link: http://bit.ly/Uw2mEP
4
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
5
  Requires at least: 3.3.0
6
+ Tested up to: 3.9
7
+ Stable tag: 1.32
8
  License: GPLv2 or later
9
 
10
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
76
 
77
  == Changelog ==
78
 
79
+ = 1.32 =
80
+ * Release 2014-05-04
81
+ * Minor fix
82
+
83
  = 1.31 =
84
  * Release 2014-03-13
85
  * Important fix
202
 
203
  == Upgrade Notice ==
204
 
205
+ = 1.32 =
206
+ Minor fix.
207
+
208
  = 1.31 =
209
  Important fix.
210