Timeline Express - Version 1.1.6.3

Version Description

  • March 22nd, 2015 =
  • Enhancement: Added wp_error class to catch errors thrown by wp_remote_get() when building the bootstrap dropdown.
Download this release

Release Info

Developer eherman24
Plugin Icon 128x128 Timeline Express
Version 1.1.6.3
Comparing to
See all releases

Code changes from version 1.1.6.2 to 1.1.6.3

classes/class.timeline-express.php CHANGED
@@ -1269,6 +1269,10 @@ if(!class_exists("timelineExpressBase"))
1269
  // get the icons out of the css file
1270
  $response = wp_remote_get( 'http://netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.css' );
1271
 
 
 
 
 
1272
  // splot the response body, and store the icon classes in a variable
1273
  $split_dat_response = explode( 'icons */' , $response['body'] );
1274
 
1269
  // get the icons out of the css file
1270
  $response = wp_remote_get( 'http://netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.css' );
1271
 
1272
+ if( is_wp_error( $response ) ) {
1273
+ wp_die( $resposne->get_error_message() , $response->title , array( 'back_link' => true ) );
1274
+ }
1275
+
1276
  // splot the response body, and store the icon classes in a variable
1277
  $split_dat_response = explode( 'icons */' , $response['body'] );
1278
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
  Tested up to: 4.1.1
7
- Stable tag: 1.1.6.2
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
@@ -301,6 +301,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
301
 
302
  == Changelog ==
303
 
 
 
 
304
  = 1.1.6.2 - March 18th, 2015 =
305
  * Enhancement: Removed `add_option();` call which was breaking previously stored options on activation
306
 
@@ -432,12 +435,12 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
432
 
433
  == Upgrade Notice ==
434
 
 
 
 
435
  = 1.1.6.2 - March 18th, 2015 =
436
  * Enhancement: Removed `add_option();` call which was breaking previously stored options on activation
437
 
438
- = 1.1.6.1 - March 10th, 2015 =
439
- * Enhancement: Altered new option label to be 'Exclude Announcements from Site Searches' (settings were reversed (true excluded while false included) )
440
-
441
  = 1.1.6 - March 9th, 2015 =
442
  * Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
443
 
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
  Tested up to: 4.1.1
7
+ Stable tag: 1.1.6.3
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
301
 
302
  == Changelog ==
303
 
304
+ = 1.1.6.3 - March 22nd, 2015 =
305
+ * Enhancement: Added wp_error class to catch errors thrown by `wp_remote_get()` when building the bootstrap dropdown.
306
+
307
  = 1.1.6.2 - March 18th, 2015 =
308
  * Enhancement: Removed `add_option();` call which was breaking previously stored options on activation
309
 
435
 
436
  == Upgrade Notice ==
437
 
438
+ = 1.1.6.3 - March 22nd, 2015 =
439
+ * Enhancement: Added wp_error class to catch errors thrown by `wp_remote_get()` when building the bootstrap dropdown.
440
+
441
  = 1.1.6.2 - March 18th, 2015 =
442
  * Enhancement: Removed `add_option();` call which was breaking previously stored options on activation
443
 
 
 
 
444
  = 1.1.6 - March 9th, 2015 =
445
  * Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
446
 
timeline-express.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
- Version: 1.1.6.2
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
- if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.6.2');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
+ Version: 1.1.6.3
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
+ if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.6.3');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));