Version Description
- March 18th, 2015 =
- Enhancement: Removed
add_option();call which was breaking previously stored options on activation
Download this release
Release Info
| Developer | eherman24 |
| Plugin | |
| Version | 1.1.6.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.6.1 to 1.1.6.2
- classes/class.timeline-express.php +2 -2
- readme.txt +7 -1
- timeline-express.php +2 -2
classes/class.timeline-express.php
CHANGED
|
@@ -168,8 +168,8 @@ if(!class_exists("timelineExpressBase"))
|
|
| 168 |
if( !isset( $this->timeline_express_optionVal['announcement-appear-in-searches'] ) ) {
|
| 169 |
$this->timeline_express_optionVal['announcement-appear-in-searches'] = 'true';
|
| 170 |
}
|
| 171 |
-
// update the options
|
| 172 |
-
update_option( TIMELINE_EXPRESS_OPTION , $this->timeline_express_optionVal );
|
| 173 |
}
|
| 174 |
|
| 175 |
/*
|
| 168 |
if( !isset( $this->timeline_express_optionVal['announcement-appear-in-searches'] ) ) {
|
| 169 |
$this->timeline_express_optionVal['announcement-appear-in-searches'] = 'true';
|
| 170 |
}
|
| 171 |
+
// update the options -> breaks previous users settings....
|
| 172 |
+
// update_option( TIMELINE_EXPRESS_OPTION , $this->timeline_express_optionVal );
|
| 173 |
}
|
| 174 |
|
| 175 |
/*
|
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.
|
| 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.1 - March 10th, 2015 =
|
| 305 |
* Enhancement: Altered new option label to be 'Exclude Announcements from Site Searches' (settings were reversed (true excluded while false included) )
|
| 306 |
|
|
@@ -429,6 +432,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
| 429 |
|
| 430 |
== Upgrade Notice ==
|
| 431 |
|
|
|
|
|
|
|
|
|
|
| 432 |
= 1.1.6.1 - March 10th, 2015 =
|
| 433 |
* Enhancement: Altered new option label to be 'Exclude Announcements from Site Searches' (settings were reversed (true excluded while false included) )
|
| 434 |
|
| 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 |
|
| 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 |
+
|
| 307 |
= 1.1.6.1 - March 10th, 2015 =
|
| 308 |
* Enhancement: Altered new option label to be 'Exclude Announcements from Site Searches' (settings were reversed (true excluded while false included) )
|
| 309 |
|
| 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 |
|
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.
|
| 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.
|
| 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.2
|
| 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.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'));
|
