Version Description
- March 10th, 2015 =
- Enhancement: Altered new option label to be 'Exclude Announcements from Site Searches' (settings were reversed (true excluded while false included) )
Download this release
Release Info
Developer | eherman24 |
Plugin | Timeline Express |
Version | 1.1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.6 to 1.1.6.1
- pages/options.php +2 -2
- readme.txt +7 -1
- timeline-express.php +2 -2
pages/options.php
CHANGED
@@ -377,7 +377,7 @@ function toggle_delete_checkbox() {
|
|
377 |
</tr>
|
378 |
<tr valign="top">
|
379 |
<!-- Publicly Query Timeline Announcements Checkbox -->
|
380 |
-
<th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('
|
381 |
<td>
|
382 |
<select name="announcement-appear-in-searches" id="announcement-appear-in-searches" class="regular-text" />
|
383 |
<option value="true"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'true' ? ' selected' : ''); ?>><?php _e('True','timeline-express'); ?></option>
|
@@ -389,7 +389,7 @@ function toggle_delete_checkbox() {
|
|
389 |
<td></td>
|
390 |
<!-- Delete Announcements On Uninstall Checkbox Description -->
|
391 |
<td class="timeline-express-settings-description">
|
392 |
-
<?php _e('Set to true to
|
393 |
</td>
|
394 |
</tr>
|
395 |
<tr valign="top">
|
377 |
</tr>
|
378 |
<tr valign="top">
|
379 |
<!-- Publicly Query Timeline Announcements Checkbox -->
|
380 |
+
<th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Exclude Announcements from Site Searches','timeline-express'); ?></label></th>
|
381 |
<td>
|
382 |
<select name="announcement-appear-in-searches" id="announcement-appear-in-searches" class="regular-text" />
|
383 |
<option value="true"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'true' ? ' selected' : ''); ?>><?php _e('True','timeline-express'); ?></option>
|
389 |
<td></td>
|
390 |
<!-- Delete Announcements On Uninstall Checkbox Description -->
|
391 |
<td class="timeline-express-settings-description">
|
392 |
+
<?php _e('Set to true to exclude announcements from all site searches. False will include announcements in site searches.','timeline-express'); ?>
|
393 |
</td>
|
394 |
</tr>
|
395 |
<tr valign="top">
|
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 - March 9th, 2015 =
|
305 |
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
306 |
|
@@ -426,6 +429,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
426 |
|
427 |
== Upgrade Notice ==
|
428 |
|
|
|
|
|
|
|
429 |
= 1.1.6 - March 9th, 2015 =
|
430 |
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
431 |
|
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.1
|
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.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 |
+
|
307 |
= 1.1.6 - March 9th, 2015 =
|
308 |
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
309 |
|
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 |
+
|
435 |
= 1.1.6 - March 9th, 2015 =
|
436 |
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
437 |
|
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.1
|
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.1');
|
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'));
|