Ditty News Ticker - Version 1.3.3

Version Description

  • Moved type & mode selections out of metaboxes
  • Added a default tick to the mixed type
Download this release

Release Info

Developer metaphorcreations
Plugin Icon 128x128 Ditty News Ticker
Version 1.3.3
Comparing to
See all releases

Code changes from version 1.3.2 to 1.3.3

assets/css/style-admin.css CHANGED
@@ -220,30 +220,78 @@
220
  line-height: 13px;
221
  font-style: italic;
222
  }
223
- .ronniedunn-radio,
224
- .mtphr-dnt-table label.ronniedunn-radio {
225
  font-weight: normal;
226
  margin-right: 8px;
227
  margin-left: 2px;
228
  }
229
- .ronniedunn-radio input,
230
- .mtphr-dnt-table label.ronniedunn-radio input {
231
  margin-top: -1px;
232
  margin-right: 2px;
233
  }
234
- .ronniedunn-checkbox,
235
- .mtphr-dnt-table label.ronniedunn-checkbox {
236
  font-weight: normal;
237
  margin-right: 8px;
238
  margin-left: 1px;
239
  }
240
- .ronniedunn-checkbox input,
241
- .mtphr-dnt-table label.ronniedunn-checkbox input {
242
  margin-top: 0;
243
  margin-right: 2px;
244
  }
245
 
246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  /* --------------------------------------------------------- */
248
  /* !List elements */
249
  /* --------------------------------------------------------- */
220
  line-height: 13px;
221
  font-style: italic;
222
  }
223
+ .mtphr-dnt-radio,
224
+ .mtphr-dnt-table label.mtphr-dnt-radio {
225
  font-weight: normal;
226
  margin-right: 8px;
227
  margin-left: 2px;
228
  }
229
+ .mtphr-dnt-radio input,
230
+ .mtphr-dnt-table label.mtphr-dnt-radio input {
231
  margin-top: -1px;
232
  margin-right: 2px;
233
  }
234
+ .mtphr-dnt-checkbox,
235
+ .mtphr-dnt-table label.mtphr-dnt-checkbox {
236
  font-weight: normal;
237
  margin-right: 8px;
238
  margin-left: 1px;
239
  }
240
+ .mtphr-dnt-checkbox input,
241
+ .mtphr-dnt-table label.mtphr-dnt-checkbox input {
242
  margin-top: 0;
243
  margin-right: 2px;
244
  }
245
 
246
 
247
+ /* --------------------------------------------------------- */
248
+ /* !Settings select - 1.3.3 */
249
+ /* --------------------------------------------------------- */
250
+
251
+ #ditty-news-ticker-settings-select {
252
+ width: 100%;
253
+ border-spacing: 0;
254
+ margin: 10px 0;
255
+ }
256
+ #ditty-news-ticker-settings-select td {
257
+ vertical-align: top;
258
+ }
259
+ #ditty-news-ticker-settings-select h2 {
260
+ margin: 0;
261
+ }
262
+ #ditty-news-ticker-settings-select p {
263
+ margin: 0;
264
+ }
265
+ #ditty-news-ticker-type-select {
266
+ padding-right: 5px;
267
+ }
268
+ #ditty-news-ticker-mode-select {
269
+ padding: 0;
270
+ }
271
+ #ditty-news-ticker-type-select > .wrapper,
272
+ #ditty-news-ticker-mode-select > .wrapper {
273
+ height: 100%;
274
+ background: #f5f5f5;
275
+ border: 1px solid #dfdfdf;
276
+ -webkit-border-radius: 5px;
277
+ -moz-border-radius: 5px;
278
+ border-radius: 5px;
279
+ padding: 10px;
280
+ }
281
+ #ditty-news-ticker-type-select {
282
+
283
+ }
284
+ #ditty-news-ticker-mode-select {
285
+
286
+ }
287
+ #ditty-news-ticker-settings-select .mtphr-dnt-metabox-toggle {
288
+ padding: 10px 0 0;
289
+ }
290
+ #ditty-news-ticker-settings-select .mtphr-dnt-metabox-toggle a {
291
+ margin: 0 0 3px 0;
292
+ }
293
+
294
+
295
  /* --------------------------------------------------------- */
296
  /* !List elements */
297
  /* --------------------------------------------------------- */
assets/js/script-admin.js CHANGED
@@ -1,4 +1,74 @@
1
  jQuery( document ).ready( function($) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
 
4
  /* --------------------------------------------------------- */
1
  jQuery( document ).ready( function($) {
2
+
3
+
4
+ /* --------------------------------------------------------- */
5
+ /* !Metabox toggle - 1.3.3 */
6
+ /* --------------------------------------------------------- */
7
+
8
+ $('.mtphr-dnt-metabox-toggle').each( function(index) {
9
+
10
+ // Create an array to store all the toggled metaboxes
11
+ var metaboxes = Array();
12
+ $(this).children('a').each( function(index) {
13
+
14
+ // Get the metaboxes and merge into the main array
15
+ var m = $(this).attr('metaboxes').split(',');
16
+ $.merge( metaboxes, m );
17
+ });
18
+ var total_metaboxes = metaboxes.length;
19
+
20
+ // Hide the toggled metaboxes
21
+ mtphr_dnt_metabox_hide();
22
+
23
+ // Display the current metaboxes
24
+ if( $(this).children('a.button-primary').length > 0 ) {
25
+ $init_button = $(this).children('a.button-primary');
26
+ } else {
27
+ $init_button = $(this).children('a:first');
28
+ $init_button.addClass('button-primary');
29
+ }
30
+ mtphr_dnt_metabox_show( $init_button );
31
+
32
+ // Hide the toggled metaboxes
33
+ function mtphr_dnt_metabox_hide() {
34
+ for( var i=0; i<total_metaboxes; i++ ) {
35
+ $('#'+metaboxes[i]).hide();
36
+ $('input[name="'+metaboxes[i]+'-hide"]').removeAttr('checked');
37
+ }
38
+ }
39
+
40
+ // Show the selected metaboxes
41
+ function mtphr_dnt_metabox_show( $button ) {
42
+
43
+ // Get and display the selected metaboxes
44
+ var m = $button.attr('metaboxes').split(',');
45
+ var t = m.length;
46
+
47
+ // Show all the toggled metaboxes
48
+ for( var i=0; i<t; i++ ) {
49
+ $('#'+m[i]).show();
50
+ $('input[name="'+m[i]+'-hide"]').attr('checked', 'checked');
51
+ }
52
+
53
+ // Store the new value
54
+ $button.siblings('input').val($button.attr('href'));
55
+ }
56
+
57
+ // Select the code on button click
58
+ $(this).children('a').click( function(e) {
59
+ e.preventDefault();
60
+
61
+ // Hide all the toggled metaboxes
62
+ mtphr_dnt_metabox_hide();
63
+
64
+ // Show the selected metaboxes
65
+ mtphr_dnt_metabox_show( $(this) );
66
+
67
+ // Set the button classes
68
+ $(this).siblings('a').removeClass('button-primary');
69
+ $(this).addClass('button-primary');
70
+ });
71
+ });
72
 
73
 
74
  /* --------------------------------------------------------- */
ditty-news-ticker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ditty News Ticker
4
  Plugin URI: http://dittynewsticker.com/
5
  Description: Ditty News Ticker is a multi-functional data display plugin
6
- Version: 1.3.2
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
@@ -45,9 +45,9 @@ The icons are licensed under a Creative Commons Attribution
45
  * @since 1.2.1
46
  */
47
  if ( WP_DEBUG ) {
48
- define ( 'MTPHR_DNT_VERSION', '1.3.2-'.time() );
49
  } else {
50
- define ( 'MTPHR_DNT_VERSION', '1.3.2' );
51
  }
52
  define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
53
  define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
3
  Plugin Name: Ditty News Ticker
4
  Plugin URI: http://dittynewsticker.com/
5
  Description: Ditty News Ticker is a multi-functional data display plugin
6
+ Version: 1.3.3
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
45
  * @since 1.2.1
46
  */
47
  if ( WP_DEBUG ) {
48
+ define ( 'MTPHR_DNT_VERSION', '1.3.3-'.time() );
49
  } else {
50
+ define ( 'MTPHR_DNT_VERSION', '1.3.3' );
51
  }
52
  define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
53
  define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
includes/functions.php CHANGED
@@ -378,5 +378,3 @@ function mtphr_dnt_localization() {
378
  load_plugin_textdomain( 'ditty-news-ticker', false, 'ditty-news-ticker/languages/' );
379
  }
380
 
381
-
382
-
378
  load_plugin_textdomain( 'ditty-news-ticker', false, 'ditty-news-ticker/languages/' );
379
  }
380
 
 
 
includes/meta-boxes.php CHANGED
@@ -6,7 +6,7 @@
6
  */
7
 
8
 
9
- add_action( 'admin_init', 'mtphr_dnt_metabox_types', 9 );
10
  /**
11
  * Create the types metabox.
12
  *
@@ -111,7 +111,7 @@ function mtphr_dnt_metabox_type_default() {
111
 
112
 
113
 
114
- add_action( 'admin_init', 'mtphr_dnt_metabox_modes', 11 );
115
  /**
116
  * Create the modes metabox.
117
  *
@@ -558,6 +558,72 @@ function mtphr_dnt_display_metabox() {
558
 
559
 
560
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
 
562
 
563
  /* --------------------------------------------------------- */
@@ -573,7 +639,7 @@ add_action( 'add_meta_boxes', 'mtphr_dnt_mixed_metabox' );
573
 
574
 
575
  /* --------------------------------------------------------- */
576
- /* !Render the mixed type metabox - 1.3.0 */
577
  /* --------------------------------------------------------- */
578
 
579
  function mtphr_dnt_mixed_render_metabox() {
@@ -603,6 +669,8 @@ function mtphr_dnt_mixed_render_metabox() {
603
  foreach( $ticks as $i=>$tick ) {
604
  mtphr_dnt_render_mixed_tick( $types, $tick, $i );
605
  }
 
 
606
  }
607
  echo '</table>';
608
  echo '</td>';
@@ -619,7 +687,7 @@ function mtphr_dnt_render_mixed_tick( $types, $tick=false, $i=false ) {
619
  echo '<tr class="mtphr-dnt-list-item">';
620
  echo '<td class="mtphr-dnt-list-handle"><span></span></td>';
621
  echo '<td class="mtphr-dnt-mixed-type">';
622
- echo '<label style="margin-right:10px;"><strong>'.__('Type:', 'ditty-news-ticker').'</strong> ';
623
  echo '<select name="_mtphr_dnt_mixed_ticks[type]" key="type">';
624
  echo '<option value="">-- '.__('Select Tick Type', 'ditty-news-ticker').' --</option>';
625
  foreach( $types as $i=>$type ) {
@@ -629,7 +697,7 @@ function mtphr_dnt_render_mixed_tick( $types, $tick=false, $i=false ) {
629
  echo '</label>';
630
  echo '</td>';
631
  echo '<td>';
632
- echo '<label><strong>'.__('Offset:', 'ditty-news-ticker').'</strong> ';
633
  echo '<input type="number" name="_mtphr_dnt_mixed_ticks[offset]" key="offset" value="'.$tick_offset.'" />';
634
  echo '</label>';
635
  echo '</td>';
@@ -667,6 +735,15 @@ function mtphr_dnt_metabox_save( $post_id ) {
667
  return $post_id;
668
  }
669
 
 
 
 
 
 
 
 
 
 
670
 
671
  // Delete & save the mixed ticks
672
  delete_post_meta( $post_id, '_mtphr_dnt_mixed_ticks' );
6
  */
7
 
8
 
9
+ //add_action( 'admin_init', 'mtphr_dnt_metabox_types', 9 );
10
  /**
11
  * Create the types metabox.
12
  *
111
 
112
 
113
 
114
+ //add_action( 'admin_init', 'mtphr_dnt_metabox_modes', 11 );
115
  /**
116
  * Create the modes metabox.
117
  *
558
 
559
 
560
 
561
+ /* --------------------------------------------------------- */
562
+ /* !Add the main ticker options - 1.3.3 */
563
+ /* --------------------------------------------------------- */
564
+
565
+ function mtphr_dnt_option_buttons() {
566
+
567
+ global $post;
568
+
569
+ $types = mtphr_dnt_types_array();
570
+ $type = get_post_meta( $post->ID, '_mtphr_dnt_type', true );
571
+ $type = ( $type != '' ) ? $type : 'default';
572
+
573
+ $modes = mtphr_dnt_modes_array();
574
+ $mode = get_post_meta( $post->ID, '_mtphr_dnt_mode', true );
575
+ $type = ( $type != '' ) ? $type : 'scroll';
576
+
577
+ echo '<table id="ditty-news-ticker-settings-select">';
578
+ echo '<tr>';
579
+ echo '<td id="ditty-news-ticker-type-select">';
580
+ echo '<div class="wrapper">';
581
+ echo '<h2>'.__('Ticker Type', 'ditty-news-ticker').' <a href="http://dittynewsticker.com" target="_blank"><small>'.__('View all types', 'ditty-news-ticker').'</small></a></h2>';
582
+ echo '<p>'.__('Select the type of ticker you\'d like to use', 'ditty-news-ticker').'</p>';
583
+ echo '<div class="mtphr-dnt-metabox-toggle">';
584
+ echo '<input type="hidden" name="_mtphr_dnt_type" value="'.$type.'" />';
585
+ foreach( $types as $i=>$t ) {
586
+
587
+ $value = '';
588
+ $button = $t['button'];
589
+ $metaboxes = $t['metaboxes'];
590
+ $metabox_list = join( ',', $metaboxes );
591
+
592
+ // Create a button
593
+ $selected = ( $type == $i ) ? ' button-primary' : '';
594
+ echo '<a href="'.$i.'" metaboxes="'.$metabox_list.'" class="mtphr-dnt-metaboxer-metabox-toggle button'.$selected.'">'.$button.'</a>&nbsp;';
595
+ }
596
+ echo '</div>';
597
+ echo '</div>';
598
+ echo '</td>';
599
+
600
+ echo '<td id="ditty-news-ticker-mode-select">';
601
+ echo '<div class="wrapper">';
602
+ echo '<h2>'.__('Ticker Mode', 'ditty-news-ticker').'</h2>';
603
+ echo '<p>'.__('Select the mode of the ticker', 'ditty-news-ticker').'</p>';
604
+ echo '<div class="mtphr-dnt-metabox-toggle">';
605
+ echo '<input type="hidden" name="_mtphr_dnt_mode" value="'.$mode.'" />';
606
+ foreach( $modes as $i=>$m ) {
607
+
608
+ $value = '';
609
+ $button = $m['button'];
610
+ $metaboxes = $m['metaboxes'];
611
+ $metabox_list = join( ',', $metaboxes );
612
+
613
+ // Create a button
614
+ $selected = ( $mode == $i ) ? ' button-primary' : '';
615
+ echo '<a href="'.$i.'" metaboxes="'.$metabox_list.'" class="mtphr-dnt-metaboxer-metabox-toggle button'.$selected.'">'.$button.'</a>&nbsp;';
616
+ }
617
+ echo '</div>';
618
+ echo '</div>';
619
+ echo '</td>';
620
+ echo '</tr>';
621
+ echo '</table>';
622
+ }
623
+ add_action( 'edit_form_after_title', 'mtphr_dnt_option_buttons' );
624
+
625
+
626
+
627
 
628
 
629
  /* --------------------------------------------------------- */
639
 
640
 
641
  /* --------------------------------------------------------- */
642
+ /* !Render the mixed type metabox - 1.3.3 */
643
  /* --------------------------------------------------------- */
644
 
645
  function mtphr_dnt_mixed_render_metabox() {
669
  foreach( $ticks as $i=>$tick ) {
670
  mtphr_dnt_render_mixed_tick( $types, $tick, $i );
671
  }
672
+ } else {
673
+ mtphr_dnt_render_mixed_tick( $types );
674
  }
675
  echo '</table>';
676
  echo '</td>';
687
  echo '<tr class="mtphr-dnt-list-item">';
688
  echo '<td class="mtphr-dnt-list-handle"><span></span></td>';
689
  echo '<td class="mtphr-dnt-mixed-type">';
690
+ echo '<label style="margin-right:10px;">'.__('Type:', 'ditty-news-ticker').' ';
691
  echo '<select name="_mtphr_dnt_mixed_ticks[type]" key="type">';
692
  echo '<option value="">-- '.__('Select Tick Type', 'ditty-news-ticker').' --</option>';
693
  foreach( $types as $i=>$type ) {
697
  echo '</label>';
698
  echo '</td>';
699
  echo '<td>';
700
+ echo '<label>'.__('Offset:', 'ditty-news-ticker').' ';
701
  echo '<input type="number" name="_mtphr_dnt_mixed_ticks[offset]" key="offset" value="'.$tick_offset.'" />';
702
  echo '</label>';
703
  echo '</td>';
735
  return $post_id;
736
  }
737
 
738
+ // Update the type & mode
739
+ if( isset($_POST['_mtphr_dnt_type']) ) {
740
+
741
+ $type = isset($_POST['_mtphr_dnt_type']) ? sanitize_text_field($_POST['_mtphr_dnt_type']) : 'default';
742
+ $mode = isset($_POST['_mtphr_dnt_mode']) ? sanitize_text_field($_POST['_mtphr_dnt_mode']) : 'scroll';
743
+
744
+ update_post_meta( $post_id, '_mtphr_dnt_type', $type );
745
+ update_post_meta( $post_id, '_mtphr_dnt_mode', $mode );
746
+ }
747
 
748
  // Delete & save the mixed ticks
749
  delete_post_meta( $post_id, '_mtphr_dnt_mixed_ticks' );
languages/ditty-news-ticker-en_US.mo CHANGED
Binary file
languages/ditty-news-ticker-en_US.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Ditty News Ticker v1.3.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-12-04 21:31:19+0000\n"
7
  "Last-Translator: admin <joe@metaphorcreations.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -113,11 +113,13 @@ msgid "Add list mode info."
113
  msgstr "Add list mode info."
114
 
115
  #: includes/meta-boxes.php:20
 
116
  #@ ditty-news-ticker
117
  msgid "Ticker Type"
118
  msgstr "Ticker Type"
119
 
120
  #: includes/meta-boxes.php:33
 
121
  #@ ditty-news-ticker
122
  msgid "View all types"
123
  msgstr "View all types"
@@ -143,6 +145,7 @@ msgid "Default Ticker Items"
143
  msgstr "Default Ticker Items"
144
 
145
  #: includes/meta-boxes.php:136
 
146
  #@ ditty-news-ticker
147
  msgid "Ticker Mode"
148
  msgstr "Ticker Mode"
@@ -631,38 +634,48 @@ msgstr ""
631
  msgid "Mixed"
632
  msgstr ""
633
 
634
- #: includes/meta-boxes.php:569
635
  #@ ditty-news-ticker
636
  msgid "Mixed Ticker Items"
637
  msgstr ""
638
 
639
- #: includes/meta-boxes.php:591
640
  #@ ditty-news-ticker
641
  msgid "Add Tick"
642
  msgstr ""
643
 
644
- #: includes/meta-boxes.php:597
645
  #@ ditty-news-ticker
646
  msgid "Tick selection"
647
  msgstr ""
648
 
649
- #: includes/meta-boxes.php:598
650
  #@ ditty-news-ticker
651
  msgid "Select the ticks you would like to display by choosing the tick type and the offset position of the selected feed"
652
  msgstr ""
653
 
654
- #: includes/meta-boxes.php:622
655
  #@ ditty-news-ticker
656
  msgid "Type:"
657
  msgstr ""
658
 
659
- #: includes/meta-boxes.php:624
660
  #@ ditty-news-ticker
661
  msgid "Select Tick Type"
662
  msgstr ""
663
 
664
- #: includes/meta-boxes.php:632
665
  #@ ditty-news-ticker
666
  msgid "Offset:"
667
  msgstr ""
668
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Ditty News Ticker v1.3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2013-12-06 22:12:12+0000\n"
7
  "Last-Translator: admin <joe@metaphorcreations.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
113
  msgstr "Add list mode info."
114
 
115
  #: includes/meta-boxes.php:20
116
+ #: includes/meta-boxes.php:581
117
  #@ ditty-news-ticker
118
  msgid "Ticker Type"
119
  msgstr "Ticker Type"
120
 
121
  #: includes/meta-boxes.php:33
122
+ #: includes/meta-boxes.php:581
123
  #@ ditty-news-ticker
124
  msgid "View all types"
125
  msgstr "View all types"
145
  msgstr "Default Ticker Items"
146
 
147
  #: includes/meta-boxes.php:136
148
+ #: includes/meta-boxes.php:602
149
  #@ ditty-news-ticker
150
  msgid "Ticker Mode"
151
  msgstr "Ticker Mode"
634
  msgid "Mixed"
635
  msgstr ""
636
 
637
+ #: includes/meta-boxes.php:635
638
  #@ ditty-news-ticker
639
  msgid "Mixed Ticker Items"
640
  msgstr ""
641
 
642
+ #: includes/meta-boxes.php:657
643
  #@ ditty-news-ticker
644
  msgid "Add Tick"
645
  msgstr ""
646
 
647
+ #: includes/meta-boxes.php:663
648
  #@ ditty-news-ticker
649
  msgid "Tick selection"
650
  msgstr ""
651
 
652
+ #: includes/meta-boxes.php:664
653
  #@ ditty-news-ticker
654
  msgid "Select the ticks you would like to display by choosing the tick type and the offset position of the selected feed"
655
  msgstr ""
656
 
657
+ #: includes/meta-boxes.php:690
658
  #@ ditty-news-ticker
659
  msgid "Type:"
660
  msgstr ""
661
 
662
+ #: includes/meta-boxes.php:692
663
  #@ ditty-news-ticker
664
  msgid "Select Tick Type"
665
  msgstr ""
666
 
667
+ #: includes/meta-boxes.php:700
668
  #@ ditty-news-ticker
669
  msgid "Offset:"
670
  msgstr ""
671
 
672
+ #: includes/meta-boxes.php:582
673
+ #@ ditty-news-ticker
674
+ msgid "Select the type of ticker you'd like to use"
675
+ msgstr ""
676
+
677
+ #: includes/meta-boxes.php:603
678
+ #@ ditty-news-ticker
679
+ msgid "Select the mode of the ticker"
680
+ msgstr ""
681
+
readme.txt CHANGED
@@ -52,6 +52,10 @@ Each individual Ticker post has multiple settings to customize.
52
 
53
  == Changelog ==
54
 
 
 
 
 
55
  = 1.3.2 =
56
  * Removed console.log from script-admin.js
57
 
@@ -169,4 +173,4 @@ Each individual Ticker post has multiple settings to customize.
169
 
170
  == Upgrade Notice ==
171
 
172
- Removed console.log from script-admin.js.
52
 
53
  == Changelog ==
54
 
55
+ = 1.3.3 =
56
+ * Moved type & mode selections out of metaboxes
57
+ * Added a default tick to the mixed type
58
+
59
  = 1.3.2 =
60
  * Removed console.log from script-admin.js
61
 
173
 
174
  == Upgrade Notice ==
175
 
176
+ Moved type & mode selections out of metaboxes, Added a default tick to the mixed type