Yet Another Related Posts Plugin (YARPP) - Version 4.0b9

Version Description

Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 4.0b9
Comparing to
See all releases

Code changes from version 4.0b8 to 4.0b9

Files changed (3) hide show
  1. class-admin.php +7 -0
  2. class-core.php +1 -1
  3. yarpp.php +2 -2
class-admin.php CHANGED
@@ -220,6 +220,13 @@ class YARPP_Admin {
220
  case 3:
221
  echo "YARPP can automatically collect diagnostic and usage information from your site and send it to YARPP's author for analysis. The information is sent only with your consent. ";
222
  echo '<strong>' . "Contributing this data will help make YARPP better for you and for other YARPP users." . '</strong>';
 
 
 
 
 
 
 
223
  }
224
 
225
  echo '</p><p>';
220
  case 3:
221
  echo "YARPP can automatically collect diagnostic and usage information from your site and send it to YARPP's author for analysis. The information is sent only with your consent. ";
222
  echo '<strong>' . "Contributing this data will help make YARPP better for you and for other YARPP users." . '</strong>';
223
+ break;
224
+ case 4:
225
+ echo "<strong>We'd like your help making YARPP awesome.</strong> Is it OK if YARPP occasionally collects some data about your site and its use of YARPP?";
226
+ break;
227
+ case 5:
228
+ echo "Would you like to help make YARPP better by sharing some technical information with YARPP's author?";
229
+ break;
230
  }
231
 
232
  echo '</p><p>';
class-core.php CHANGED
@@ -112,7 +112,7 @@ class YARPP {
112
  'display_code' => false, // new in 4
113
  'auto_display_archive' => false, // new in 4
114
  'auto_display_post_types' => array( 'post' ), // new in 4, replacing auto_display
115
- 'pools' => array( 'message' => mt_rand(0,3) ), // new in 4
116
  );
117
  }
118
 
112
  'display_code' => false, // new in 4
113
  'auto_display_archive' => false, // new in 4
114
  'auto_display_post_types' => array( 'post' ), // new in 4, replacing auto_display
115
+ 'pools' => array( 'message' => mt_rand(0,5) ), // new in 4
116
  );
117
  }
118
 
yarpp.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. Now with custom post type support!
6
- Version: 4.0b8
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
10
  */
11
 
12
- define('YARPP_VERSION', '4.0b8');
13
  define('YARPP_DIR', dirname(__FILE__));
14
  define('YARPP_NO_RELATED', ':(');
15
  define('YARPP_RELATED', ':)');
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. Now with custom post type support!
6
+ Version: 4.0b9
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
10
  */
11
 
12
+ define('YARPP_VERSION', '4.0b9');
13
  define('YARPP_DIR', dirname(__FILE__));
14
  define('YARPP_NO_RELATED', ':(');
15
  define('YARPP_RELATED', ':)');