From dc962baf00892ed3df95331ac8ee217fa2607500 Mon Sep 17 00:00:00 2001 From: Evan Herman Date: Fri, 6 Mar 2015 19:01:00 -0500 Subject: [PATCH] release v1.1.5.9 --- README.md | 5 ++++- classes/class.timeline-express.php | 2 +- readme.txt | 8 +++++++- timeline-express.php | 4 ++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61eec01..cbe65ae 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Timeline Express v1.1.5.8 +Timeline Express v1.1.5.9 ================ Timeline express allows you to create a vertical animated and responsive timeline of posts , without writing a single line of code. Sweet! @@ -281,6 +281,9 @@ Have an idea for a future release feature? I love hearing about new ideas! You c ### Changelog +###### 1.1.5.9 - March 6th, 2015 +* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class + ###### 1.1.5.8 - March 5th, 2015 * Enhancement: Upgraded font-awesome to 4.3.0 * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens diff --git a/classes/class.timeline-express.php b/classes/class.timeline-express.php index 72fa3e3..12430fb 100644 --- a/classes/class.timeline-express.php +++ b/classes/class.timeline-express.php @@ -113,7 +113,7 @@ public function initialize() { // change announcement CPT title add_filter( 'enter_title_here', array( &$this , 'change_default_announcement_title' ) ); // enqueue announcement metaboxes - add_filter( 'cmb_meta_boxes', array( &$this , 'cmb_timeline_announcement_metaboxes' ) ); + add_filter( 'cmb_meta_boxes', array( &$this , 'cmb_timeline_announcement_metaboxes' ), 9999 ); // add custom columns to the timeline express announcement cpt add_filter('manage_edit-te_announcements_columns', array( &$this, 'add_new_timeline_express_columns' ) ); // generate the content for each column diff --git a/readme.txt b/readme.txt index e04be5d..9aae65f 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20 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 Requires at least: 3.9 Tested up to: 4.1.1 -Stable tag: 1.1.5.8 +Stable tag: 1.1.5.9 License: GPLv2 or later 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 == Changelog == += 1.1.5.9 - March 6th, 2015 = +* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class + = 1.1.5.8 - March 5th, 2015 = * Enhancement: Upgraded font-awesome to 4.3.0 * 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 == Upgrade Notice == += 1.1.5.9 - March 6th, 2015 = +* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class + = 1.1.5.8 - March 5th, 2015 = * Enhancement: Upgraded font-awesome to 4.3.0 * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens diff --git a/timeline-express.php b/timeline-express.php index a462f5e..3cdb01b 100644 --- a/timeline-express.php +++ b/timeline-express.php @@ -4,7 +4,7 @@ Plugin Name: Timeline Express Plugin URI: http://www.evan-herman.com Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code. -Version: 1.1.5.8 +Version: 1.1.5.9 Author: Evan Herman Author URI: http://www.evan-herman.com License: GPL2 @@ -28,7 +28,7 @@ #_________________________________________________ CONSTANTS /** Configuration **/ -if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.8'); +if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.9'); if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ )); if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/')); if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));