Skip to content

Commit

Permalink
release v1.1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Herman committed Mar 7, 2015
1 parent 5924749 commit dc962ba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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!
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion classes/class.timeline-express.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions timeline-express.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'));
Expand Down

0 comments on commit dc962ba

Please sign in to comment.