Version Description
- .mtphr-dnt-image-container css display update
- Metabox text update
Download this release
Release Info
Developer | metaphorcreations |
Plugin | Ditty News Ticker |
Version | 2.0.18 |
Comparing to | |
See all releases |
Code changes from version 2.0.17 to 2.0.18
- assets/css/style.css +1 -1
- assets/js/imagesloaded.pkgd.min.js +0 -0
- assets/sass/style.scss +1 -1
- classes/class-mtphr-dnt-image.php +0 -0
- classes/class-mtphr-dnt-tick.php +0 -0
- classes/class-mtphr-dnt.php +0 -0
- classes/helpers/class-mtphr-dnt-string-replacement.php +0 -0
- ditty-news-ticker.php +2 -6
- includes/admin/meta-boxes.php +2 -2
- includes/composer.php +0 -0
- readme.txt +6 -2
assets/css/style.css
CHANGED
@@ -46,7 +46,7 @@
|
|
46 |
/* --------------------------------------------------------- */
|
47 |
.mtphr-dnt-image-caption { line-height: 1.2em; }
|
48 |
|
49 |
-
.mtphr-dnt-image-container { position: relative; display:
|
50 |
|
51 |
.mtphr-dnt-image-container > * { margin: 10px 0; }
|
52 |
|
46 |
/* --------------------------------------------------------- */
|
47 |
.mtphr-dnt-image-caption { line-height: 1.2em; }
|
48 |
|
49 |
+
.mtphr-dnt-image-container { position: relative; display: block; }
|
50 |
|
51 |
.mtphr-dnt-image-container > * { margin: 10px 0; }
|
52 |
|
assets/js/imagesloaded.pkgd.min.js
CHANGED
File without changes
|
assets/sass/style.scss
CHANGED
@@ -174,7 +174,7 @@
|
|
174 |
}
|
175 |
.mtphr-dnt-image-container {
|
176 |
position: relative;
|
177 |
-
display:
|
178 |
> * {
|
179 |
margin: 10px 0;
|
180 |
&:first-child {
|
174 |
}
|
175 |
.mtphr-dnt-image-container {
|
176 |
position: relative;
|
177 |
+
display: block;
|
178 |
> * {
|
179 |
margin: 10px 0;
|
180 |
&:first-child {
|
classes/class-mtphr-dnt-image.php
CHANGED
File without changes
|
classes/class-mtphr-dnt-tick.php
CHANGED
File without changes
|
classes/class-mtphr-dnt.php
CHANGED
File without changes
|
classes/helpers/class-mtphr-dnt-string-replacement.php
CHANGED
File without changes
|
ditty-news-ticker.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://dittynewsticker.com/
|
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
Text Domain: ditty-news-ticker
|
7 |
Domain Path: languages
|
8 |
-
Version: 2.0.
|
9 |
Author: Metaphor Creations
|
10 |
Author URI: http://www.metaphorcreations.com
|
11 |
Contributors: metaphorcreations
|
@@ -31,11 +31,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
31 |
|
32 |
|
33 |
|
34 |
-
|
35 |
-
/* !Define constants - 2.0.17 */
|
36 |
-
/* --------------------------------------------------------- */
|
37 |
-
|
38 |
-
define ( 'MTPHR_DNT_VERSION', '2.0.17' );
|
39 |
define ( 'MTPHR_DNT_DIR', trailingslashit(plugin_dir_path(__FILE__)) );
|
40 |
define ( 'MTPHR_DNT_URL', trailingslashit(plugins_url()).'ditty-news-ticker/' );
|
41 |
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
Text Domain: ditty-news-ticker
|
7 |
Domain Path: languages
|
8 |
+
Version: 2.0.18
|
9 |
Author: Metaphor Creations
|
10 |
Author URI: http://www.metaphorcreations.com
|
11 |
Contributors: metaphorcreations
|
31 |
|
32 |
|
33 |
|
34 |
+
define ( 'MTPHR_DNT_VERSION', '2.0.18' );
|
|
|
|
|
|
|
|
|
35 |
define ( 'MTPHR_DNT_DIR', trailingslashit(plugin_dir_path(__FILE__)) );
|
36 |
define ( 'MTPHR_DNT_URL', trailingslashit(plugins_url()).'ditty-news-ticker/' );
|
37 |
|
includes/admin/meta-boxes.php
CHANGED
@@ -647,7 +647,7 @@ function mtphr_dnt_rotate_fields() {
|
|
647 |
|
648 |
$fields = array(
|
649 |
|
650 |
-
/* !Rotate type - 2.0.
|
651 |
'direction' => array(
|
652 |
'heading' => __('Rotation type', 'ditty-news-ticker'),
|
653 |
'description' => __('Set the type of rotation for the ticker', 'ditty-news-ticker'),
|
@@ -660,7 +660,7 @@ function mtphr_dnt_rotate_fields() {
|
|
660 |
'slide_left' => __('Slide left', 'ditty-news-ticker'),
|
661 |
'slide_right' => __('Slide right', 'ditty-news-ticker'),
|
662 |
'slide_up' => __('Slide up', 'ditty-news-ticker'),
|
663 |
-
'slide_down' => __('Slide
|
664 |
),
|
665 |
'append' => array(
|
666 |
|
647 |
|
648 |
$fields = array(
|
649 |
|
650 |
+
/* !Rotate type - 2.0.18 */
|
651 |
'direction' => array(
|
652 |
'heading' => __('Rotation type', 'ditty-news-ticker'),
|
653 |
'description' => __('Set the type of rotation for the ticker', 'ditty-news-ticker'),
|
660 |
'slide_left' => __('Slide left', 'ditty-news-ticker'),
|
661 |
'slide_right' => __('Slide right', 'ditty-news-ticker'),
|
662 |
'slide_up' => __('Slide up', 'ditty-news-ticker'),
|
663 |
+
'slide_down' => __('Slide down', 'ditty-news-ticker')
|
664 |
),
|
665 |
'append' => array(
|
666 |
|
includes/composer.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: metaphorcreations
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
@@ -68,6 +68,10 @@ Each individual Ticker post has multiple settings to customize.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
71 |
= 2.0.17 =
|
72 |
* Image container css updates
|
73 |
|
@@ -383,4 +387,4 @@ Each individual Ticker post has multiple settings to customize.
|
|
383 |
|
384 |
== Upgrade Notice ==
|
385 |
|
386 |
-
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.6.1
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 2.0.18 =
|
72 |
+
* .mtphr-dnt-image-container css display update
|
73 |
+
* Metabox text update
|
74 |
+
|
75 |
= 2.0.17 =
|
76 |
* Image container css updates
|
77 |
|
387 |
|
388 |
== Upgrade Notice ==
|
389 |
|
390 |
+
.mtphr-dnt-image-container css display update & metabox text update
|