Timeline Express - Version 1.1.5.9

Version Description

  • March 6th, 2015 =
  • Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
Download this release

Release Info

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

Code changes from version 1.1.5.8 to 1.1.5.9

classes/class.timeline-express.php CHANGED
@@ -113,7 +113,7 @@ if(!class_exists("timelineExpressBase"))
113
  // change announcement CPT title
114
  add_filter( 'enter_title_here', array( &$this , 'change_default_announcement_title' ) );
115
  // enqueue announcement metaboxes
116
- add_filter( 'cmb_meta_boxes', array( &$this , 'cmb_timeline_announcement_metaboxes' ) );
117
  // add custom columns to the timeline express announcement cpt
118
  add_filter('manage_edit-te_announcements_columns', array( &$this, 'add_new_timeline_express_columns' ) );
119
  // generate the content for each column
113
  // change announcement CPT title
114
  add_filter( 'enter_title_here', array( &$this , 'change_default_announcement_title' ) );
115
  // enqueue announcement metaboxes
116
+ add_filter( 'cmb_meta_boxes', array( &$this , 'cmb_timeline_announcement_metaboxes' ), 9999 );
117
  // add custom columns to the timeline express announcement cpt
118
  add_filter('manage_edit-te_announcements_columns', array( &$this, 'add_new_timeline_express_columns' ) );
119
  // generate the content for each column
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.5.8
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.5.8 - March 5th, 2015 =
305
  * Enhancement: Upgraded font-awesome to 4.3.0
306
  * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
@@ -420,6 +423,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
420
 
421
  == Upgrade Notice ==
422
 
 
 
 
423
  = 1.1.5.8 - March 5th, 2015 =
424
  * Enhancement: Upgraded font-awesome to 4.3.0
425
  * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
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.5.9
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.5.9 - March 6th, 2015 =
305
+ * Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
306
+
307
  = 1.1.5.8 - March 5th, 2015 =
308
  * Enhancement: Upgraded font-awesome to 4.3.0
309
  * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
423
 
424
  == Upgrade Notice ==
425
 
426
+ = 1.1.5.9 - March 6th, 2015 =
427
+ * Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
428
+
429
  = 1.1.5.8 - March 5th, 2015 =
430
  * Enhancement: Upgraded font-awesome to 4.3.0
431
  * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
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.5.8
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.5.8');
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.5.9
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.5.9');
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'));