Plugin Directory

Changeset 794183


Ignore:
Timestamp:
10/26/2013 05:10:34 PM (12 years ago)
Author:
VamsiTech
Message:

Updated version 2.4. Tested with WP version 3.7

Location:
jquery-vertical-scroller
Files:
17 added
3 edited

Legend:

Unmodified
Added
Removed
  • jquery-vertical-scroller/trunk/readme.txt

    r747969 r794183  
    1 === jQuery Vertical Scroller ===
     1=== jQuery Vertical Scroller ===
    22Contributors: vamsitech, sirisgraphics
    33Tags: widget, jQuery, vertical slider, velocity, direction, post scroller, Free scrolling news wordpress plugin, News plugin WordPress, Scrolling posts WordPress, Vertical posts, Vertical scrolling posts, WordPress dynamic posts, scroller, ticker, widget, Recent Posts scroller
    44Requires at least: 3.4
    5 Tested up to: 3.5.2
    6 Stable tag: 2.3
     5Tested up to: 3.7
     6Stable tag: 2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114== Changelog ==
    115115
     116= 2.3 =
     117* Added option to hide titles from scroll when using as widget and shortcode
     118* Added option to customize date formats for widget and shortcode
     119* Added functionality to manage element layout through css3 (basic functionality only)
     120
    116121= 2.2 =
    117122* Added full content support in shortcode
     
    142147== Upgrade Notice ==
    143148
    144 = 2.3 =
    145 * Added option to hide titles from scroll when using as widget and shortcode
    146 * Added option to customize date formats for widget and shortcode
    147 * Added functionality to manage element layout through css3 (basic functionality only)
     149= 2.4 =
     150* Tested with Wordpress Version 3.7
    148151* As usual, if you any hiccups, email us at info@sirisgraphics.com
  • jquery-vertical-scroller/trunk/sg-jqvs-widget-plugin.php

    r747964 r794183  
    44Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0
    55Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery
    6 Version: 2.3
     6Version: 2.4
    77Author: Vamsi Pulavarthi
    88Author URI: http://sirisgraphics.com/
     
    5454
    5555        //Setup the default values for the widget
    56         $defaults = array( 'title' => $default_title, 
     56        $defaults = array( 'title' => $default_title,
    5757                            'mywidth' => '100',
    5858                            'myheight' => '200',
    59                             'mycategory' => '1', 
    60                             'mycount' => '5', 
    61                             'mydirection' => 'bottom', 
    62                             'myvelocity' => '50', 
    63                             'myposttype' => 'post', 
     59                            'mycategory' => '1',
     60                            'mycount' => '5',
     61                            'mydirection' => 'bottom',
     62                            'myvelocity' => '50',
     63                            'myposttype' => 'post',
    6464                            'myincludecontent' => 'no',
    6565                            'myshowdate' => 'false',
     
    6767                            'myshowdateformat' => 'F, Y',
    6868                            'myreadmoretext' => $default_readmore );
    69        
     69
    7070        //Assign the default values or original settings to current widget
    7171        $instance = wp_parse_args( (array) $instance, $defaults );
     
    120120        <p>
    121121            <?php _e( 'Direction:', 'sg-jqvs' ); ?><br />
    122             <input type="radio" 
    123                 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 
     122            <input type="radio"
     123                name="<?php echo $this->get_field_name( 'mydirection' ); ?>"
    124124                value="top" <?php checked( $mydirection, 'top' ); ?> ><?php _e( 'Top-to-Bottom', 'sg-jqvs' ); ?>
    125125            <br />
    126             <input type="radio" 
    127                 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 
     126            <input type="radio"
     127                name="<?php echo $this->get_field_name( 'mydirection' ); ?>"
    128128                value="bottom" <?php checked( $mydirection, 'bottom' ); ?> ><?php _e( 'Bottom-to-Top', 'sg-jqvs' ); ?>
    129129        </p>
     
    152152            <?php _e( 'Include Content:', 'sg-jqvs' ); ?>
    153153            <br />
    154             <input type="radio" 
    155                 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 
     154            <input type="radio"
     155                name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>"
    156156                value="no" <?php checked( $myincludecontent, 'no' ); ?> ><?php _e( 'No', 'sg-jqvs' ); ?>
    157157            <br />
    158             <input type="radio" 
    159                 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 
     158            <input type="radio"
     159                name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>"
    160160                value="content" <?php checked( $myincludecontent, 'content' ); ?> ><?php _e( 'Full Content', 'sg-jqvs' ); ?>
    161161            <br />
    162             <input type="radio" 
    163                 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 
     162            <input type="radio"
     163                name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>"
    164164                value="excerpt" <?php checked( $myincludecontent, 'excerpt' ); ?> ><?php _e( 'Excerpt only', 'sg-jqvs' ); ?>
    165165        </p>
    166166        <p>
    167167            <?php _e( 'Show Title:', 'sg-jqvs' ); ?><br />
    168             <input type="radio" 
    169                 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 
     168            <input type="radio"
     169                name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>"
    170170                value="true" <?php checked( $myshowtitle, 'true' ); ?> ><?php _e( 'True', 'sg-jqvs' ); ?>
    171171            <br />
    172             <input type="radio" 
    173                 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 
     172            <input type="radio"
     173                name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>"
    174174                value="false" <?php checked( $myshowtitle, 'false' ); ?> ><?php _e( 'False', 'sg-jqvs' ); ?>
    175175        </p>
    176176        <p>
    177177            <?php _e( 'Show Date:', 'sg-jqvs' ); ?><br />
    178             <input type="radio" 
    179                 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 
     178            <input type="radio"
     179                name="<?php echo $this->get_field_name( 'myshowdate' ); ?>"
    180180                value="true" <?php checked( $myshowdate, 'true' ); ?> ><?php _e( 'True', 'sg-jqvs' ); ?>
    181181            <br />
    182             <input type="radio" 
    183                 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 
     182            <input type="radio"
     183                name="<?php echo $this->get_field_name( 'myshowdate' ); ?>"
    184184                value="false" <?php checked( $myshowdate, 'false' ); ?> ><?php _e( 'False', 'sg-jqvs' ); ?>
    185185        </p>
    186186        <p>
    187187            <?php _e( 'Date format:', 'sg-jqvs' ); ?><br />
    188             <input type="radio" 
    189                 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 
     188            <input type="radio"
     189                name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>"
    190190                value="d/m/Y" <?php checked( $myshowdateformat, 'd/m/y' ); ?> ><?php _e( '01/01/2013', 'sg-jqvs' ); ?>
    191191            <br />
    192             <input type="radio" 
    193                 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 
     192            <input type="radio"
     193                name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>"
    194194                value="F, Y" <?php checked( $myshowdateformat, 'F, Y' ); ?> ><?php _e( 'January, 2013', 'sg-jqvs' ); ?>
    195195            <br />
    196             <input type="radio" 
    197                 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 
     196            <input type="radio"
     197                name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>"
    198198                value="F d, Y" <?php checked( $myshowdateformat, 'F d, Y' ); ?> ><?php _e( 'January 01, 2013', 'sg-jqvs' ); ?>
    199199            <br />
    200             <input type="radio" 
    201                 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 
     200            <input type="radio"
     201                name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>"
    202202                value="l, F d, Y" <?php checked( $myshowdateformat, 'l, F j, Y' ); ?> ><?php _e( 'Friday, January 01, 2013', 'sg-jqvs' ); ?>
    203203            <br />
     
    317317                    <?php if ( $myshowdate == 'true' ) { ?>
    318318                        <p class="sgjvs_widget_date">
    319                             <?php 
     319                            <?php
    320320                                $pfx_date = get_the_date( $myshowdateformat );
    321                                 echo $pfx_date; 
     321                                echo $pfx_date;
    322322                            ?>
    323323                        </p>
     
    325325                    <?php if ( $myincludecontent == 'content' ) { ?>
    326326                        <p class="sgjvs_widget_content">
    327                             <?php 
    328                                 $mysgjvscontent = get_the_content(); 
     327                            <?php
     328                                $mysgjvscontent = get_the_content();
    329329                                echo $mysgjvscontent;
    330330                            ?>
     
    333333                        <p class="sgjvs_widget_excerpt">
    334334                            <?php
    335                                 $mysgjvsexcerpt = get_the_excerpt(); 
     335                                $mysgjvsexcerpt = get_the_excerpt();
    336336                                echo $mysgjvsexcerpt;
    337337                            ?>
     
    377377        "showdate" => 'false',
    378378        "showdateformat" => 'l, F j, Y',
    379         "showtitle" => 'true' 
     379        "showtitle" => 'true'
    380380    ), $atts ) );
    381381
     
    434434        }
    435435        .scrollingtext ul {
    436             text-indent: none;       
     436            text-indent: none;
    437437        }
    438438        .scrollingtext ul li {
  • jquery-vertical-scroller/trunk/sgjvs_stylesheet.css

    r747964 r794183  
    33Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0
    44Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery
    5 Version: 2.3
     5Version: 2.4
    66Author: Vamsi Pulavarthi
    77Author URI: http://sirisgraphics.com/
Note: See TracChangeset for help on using the changeset viewer.