Timeline Express - Version 1.1.7.5

Version Description

  • September 28th, 2015 =
  • Fixed incorrect name for default icon dropdown.
Download this release

Release Info

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

Code changes from version 1.1.7.4 to 1.1.7.5

README.md CHANGED
@@ -290,6 +290,9 @@ Have an idea for a future release feature? I love hearing about new ideas! You c
290
 
291
  ### Changelog
292
 
 
 
 
293
  ###### 1.1.7.4 - September 18th, 2015
294
  * Fixed adding custom fields and using an image as an icon (https://gist.github.com/EvanHerman/6bbc8de82f34b4cb3c5c#comments)
295
 
290
 
291
  ### Changelog
292
 
293
+ ###### 1.1.7.5 - September 28th, 2015
294
+ * Fixed incorrect name for default icon dropdown.
295
+
296
  ###### 1.1.7.4 - September 18th, 2015
297
  * Fixed adding custom fields and using an image as an icon (https://gist.github.com/EvanHerman/6bbc8de82f34b4cb3c5c#comments)
298
 
classes/class.timeline-express.php CHANGED
@@ -1345,7 +1345,7 @@ if(!class_exists("timelineExpressBase"))
1345
  .ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
1346
  </style>
1347
  <!-- start the font awesome icon select -->
1348
- <select class="selectpicker" name="<?php echo $field->args['id']; ?>" id="<?php echo $field->args['id']; ?>">
1349
 
1350
  <?php
1351
  /* sort the bootstrap icons alphabetically */
1345
  .ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
1346
  </style>
1347
  <!-- start the font awesome icon select -->
1348
+ <select class="selectpicker" name="default-announcement-icon" id="default-announcement-icon>">
1349
 
1350
  <?php
1351
  /* sort the bootstrap icons alphabetically */
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.3.1
7
- Stable tag: 1.1.7.4
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!
@@ -339,6 +339,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
339
 
340
  == Changelog ==
341
 
 
 
 
342
  = 1.1.7.4 - September 18th, 2015 =
343
  * Fixed adding custom fields and using an image as an icon (https://gist.github.com/EvanHerman/6bbc8de82f34b4cb3c5c#comments)
344
 
@@ -512,4 +515,5 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
512
 
513
  == Upgrade Notice ==
514
 
515
- * Remove duplicate date picker fields on announcements
 
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.3.1
7
+ Stable tag: 1.1.7.5
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!
339
 
340
  == Changelog ==
341
 
342
+ = 1.1.7.5 - September 28th, 2015 =
343
+ * Fixed incorrect name for default icon dropdown.
344
+
345
  = 1.1.7.4 - September 18th, 2015 =
346
  * Fixed adding custom fields and using an image as an icon (https://gist.github.com/EvanHerman/6bbc8de82f34b4cb3c5c#comments)
347
 
515
 
516
  == Upgrade Notice ==
517
 
518
+ = 1.1.7.5 - September 28th, 2015 =
519
+ * Fixed incorrect name for default icon dropdown.
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.7.4
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.7.4');
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.7.5
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.7.5');
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'));