jQuery Pin It Button for Images - Version 1.31

Version Description

  • Release 2014-03-13
  • Important fix
Download this release

Release Info

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

Code changes from version 1.30 to 1.31

Files changed (2) hide show
  1. jquery-pin-it-button-for-images.php +13 -10
  2. readme.txt +8 -1
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.30
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.30' );
51
 
52
  //used in versioning css and js files
53
  if ( ! defined( 'JPIBFI_VERSION_MINOR' ) )
@@ -106,17 +106,20 @@ if ( ! class_exists( 'jQuery_Pin_It_Button_For_Images' ) ) :
106
  $jpibfi_visual_options = get_option( JPIBFI_VISUAL_OPTIONS );
107
  $jpibfi_adanced_options = get_option( JPIBFI_ADVANCED_OPTIONS );
108
 
109
- //require_once JPIBFI_PLUGIN_DIR . 'includes/login-register.php';
 
 
 
 
 
 
 
 
110
 
111
  if ( is_admin() ) {
112
- require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-admin-utilities.php';
113
- require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-selection-options.php';
114
- require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-advanced-options.php';
115
- require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-visual-options.php';
116
- require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-admin.php';
117
  } else {
118
- require_once JPIBFI_PLUGIN_DIR . 'includes/public/class-jpibfi-client-utilities.php';
119
- require_once JPIBFI_PLUGIN_DIR . 'includes/public/class-jpibfi-client.php';
120
  }
121
  }
122
 
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
  /* 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' ) )
106
  $jpibfi_visual_options = get_option( JPIBFI_VISUAL_OPTIONS );
107
  $jpibfi_adanced_options = get_option( JPIBFI_ADVANCED_OPTIONS );
108
 
109
+
110
+ require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-admin-utilities.php';
111
+ require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-selection-options.php';
112
+ require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-advanced-options.php';
113
+ require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-visual-options.php';
114
+ require_once JPIBFI_PLUGIN_DIR . 'includes/admin/class-jpibfi-admin.php';
115
+ require_once JPIBFI_PLUGIN_DIR . 'includes/public/class-jpibfi-client-utilities.php';
116
+ require_once JPIBFI_PLUGIN_DIR . 'includes/public/class-jpibfi-client.php';
117
+
118
 
119
  if ( is_admin() ) {
120
+ //TODO changes
 
 
 
 
121
  } else {
122
+
 
123
  }
124
  }
125
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.30
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.30 =
80
  * Release 2014-03-13
81
  * PHP code redesign - plugin is much more extension friendly
@@ -194,6 +198,9 @@ Please report them in the plugin's support forum on Wordpress.org.
194
 
195
  == Upgrade Notice ==
196
 
 
 
 
197
  = 1.30 =
198
  PHP code redesign.
199
 
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
 
77
  == Changelog ==
78
 
79
+ = 1.31 =
80
+ * Release 2014-03-13
81
+ * Important fix
82
+
83
  = 1.30 =
84
  * Release 2014-03-13
85
  * PHP code redesign - plugin is much more extension friendly
198
 
199
  == Upgrade Notice ==
200
 
201
+ = 1.31 =
202
+ Important fix.
203
+
204
  = 1.30 =
205
  PHP code redesign.
206