Timeline Express - Version 1.1.7.3

Version Description

  • July 15th, 2015 =
  • Remove duplicate date picker fields on announcements
Download this release

Release Info

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

Code changes from version 1.1.7.2 to 1.1.7.3

README.md CHANGED
@@ -289,6 +289,8 @@ Have an idea for a future release feature? I love hearing about new ideas! You c
289
 
290
 
291
  ### Changelog
 
 
292
 
293
  ###### 1.1.7.2 - July 14th, 2015
294
  * Repair date picker field not being initialized properly
289
 
290
 
291
  ### Changelog
292
+ ###### 1.1.7.3 - July 15th, 2015
293
+ * Remove duplicate date picker fields on announcements
294
 
295
  ###### 1.1.7.2 - July 14th, 2015
296
  * Repair date picker field not being initialized properly
classes/class.timeline-express.php CHANGED
@@ -182,6 +182,8 @@ if(!class_exists("timelineExpressBase"))
182
  * since @v1.1.5
183
  */
184
  function cmb2_render_te_date_time_stamp_custom( $field, $meta, $object_id, $object_type, $field_type_object ) {
 
 
185
  ?>
186
  <style>
187
  #ui-datepicker-div { z-index: 99999 !important; }
@@ -552,15 +554,6 @@ if(!class_exists("timelineExpressBase"))
552
  'type' => 'te_date_time_stamp_custom',
553
  'default' => strtotime( date( 'm/d/Y' ) ),
554
  ) );
555
-
556
- // Email text field
557
- $announcement_metabox->add_field( array(
558
- 'name' => __( 'Announcement Date', 'timeline-express' ),
559
- 'desc' => __( 'enter the date of the announcement. the announcements will appear in chronological order according to this date. ', 'timeline-express' ),
560
- 'id' => $prefix . 'dat2e',
561
- 'type' => 'text_date',
562
- 'default' => strtotime( date( 'm/d/Y' ) ),
563
- ) );
564
 
565
  // Email text field
566
  $announcement_metabox->add_field( array(
182
  * since @v1.1.5
183
  */
184
  function cmb2_render_te_date_time_stamp_custom( $field, $meta, $object_id, $object_type, $field_type_object ) {
185
+ // get date picker depencies
186
+ CMB2_JS::add_dependencies( array( 'jquery-ui-core', 'jquery-ui-datepicker' ) );
187
  ?>
188
  <style>
189
  #ui-datepicker-div { z-index: 99999 !important; }
554
  'type' => 'te_date_time_stamp_custom',
555
  'default' => strtotime( date( 'm/d/Y' ) ),
556
  ) );
 
 
 
 
 
 
 
 
 
557
 
558
  // Email text field
559
  $announcement_metabox->add_field( array(
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: eherman24
3
  Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
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.2.2
7
- Stable tag: 1.1.7.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!
@@ -339,6 +339,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
339
 
340
  == Changelog ==
341
 
 
 
 
342
  = 1.1.7.2 - July 14th, 2015 =
343
  * Repair date picker field not being initialized properly
344
 
@@ -506,4 +509,4 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
506
 
507
  == Upgrade Notice ==
508
 
509
- * Repair date picker field not being initialized properly
3
  Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
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
7
+ Stable tag: 1.1.7.3
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.3 - July 15th, 2015 =
343
+ * Remove duplicate date picker fields on announcements
344
+
345
  = 1.1.7.2 - July 14th, 2015 =
346
  * Repair date picker field not being initialized properly
347
 
509
 
510
  == Upgrade Notice ==
511
 
512
+ * Remove duplicate date picker fields on announcements
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.2
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.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'));
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.3
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.3');
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'));