Plugin Directory

Changeset 1784364


Ignore:
Timestamp:
12/10/2017 06:29:36 PM (8 years ago)
Author:
NerdCow
Message:

brep

Location:
tweet-wheel
Files:
20 deleted
5 edited
53 copied

Legend:

Unmodified
Added
Removed
  • tweet-wheel/tags/1.1.5/assets/js/twp-templates.js

    r1712088 r1784364  
    66       
    77        // Max characters accepted for a single tweet
    8         maxCharacters = 140;
     8        maxCharacters = 280;
    99
    1010        // Load custom tweet text to a variable
     
    8080            jQuery(this).parent().find('.twp-counter').text( count );
    8181
    82             if( count > 140 ) {
     82            if( count > 280 ) {
    8383                jQuery(this).parent().find('.twp-counter').addClass( 'too-long' );   
    8484            } else {
     
    184184        // ...
    185185
    186         // Is 140 chars
     186        // Is 280 chars
    187187        jQuery.validator.addMethod(
    188188            "tweetFit",
    189189            function(value, element) {
    190                 return twp_character_counter( value, false ) > 140;
     190                return twp_character_counter( value, false ) > 280;
    191191            },
    192             "Sorry, amigo. Maximum 140 characters."
     192            "Sorry, amigo. Maximum 280 characters."
    193193        );
    194194
  • tweet-wheel/tags/1.1.5/includes/classes/class-twp-tweet.php

    r1586522 r1784364  
    223223        $tweet = $this->parse( $post_id, $raw_tweet );
    224224       
    225         // Make sure a tweet is 140 chars.
     225        // Make sure a tweet is 280 chars.
    226226        // Consider it a user error and stop script
    227         if( twp_character_counter( $tweet, $post_id ) > 140 ) :
     227        if( twp_character_counter( $tweet, $post_id ) > 280 ) :
    228228            return false;
    229229        endif;
  • tweet-wheel/tags/1.1.5/includes/helpers.php

    r1712088 r1784364  
    369369   
    370370    // Max characters accepted for a single tweet
    371     $maxCharacters = 140;
     371    $maxCharacters = 280;
    372372   
    373373    // Load custom tweet text to a variable
  • tweet-wheel/tags/1.1.5/readme.txt

    r1780680 r1784364  
    44Requires at least: 4.4
    55Tested up to: 4.9.1
    6 Stable tag: 1.1.4
     6Stable tag: 1.1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8888== Changelog ==
    8989
     90= 1.1.5 - 04/11/2017 =
     91* Changed - Increased character limit to 280 characters
     92
    9093= 1.1.4 - 04/11/2017 =
    9194* Added - WP 4.9.1. compatibility
  • tweet-wheel/tags/1.1.5/tweet-wheel.php

    r1780680 r1784364  
    55 * Plugin URI: http://www.tweet-wheel.com
    66 * Description: A powerful tool that keeps your Twitter profile active. Even when you are busy.
    7  * Version: 1.1.4
     7 * Version: 1.1.5
    88 * Author: Tomasz Lisiecki from Nerd Cow Ltd.
    99 * Author URI: https://tweet-wheel.com
     
    3232     * @var string
    3333     */
    34     public $version = '1.1.4';
     34    public $version = '1.1.5';
    3535   
    3636    // ...
  • tweet-wheel/trunk/assets/js/twp-templates.js

    r1712088 r1784364  
    66       
    77        // Max characters accepted for a single tweet
    8         maxCharacters = 140;
     8        maxCharacters = 280;
    99
    1010        // Load custom tweet text to a variable
     
    8080            jQuery(this).parent().find('.twp-counter').text( count );
    8181
    82             if( count > 140 ) {
     82            if( count > 280 ) {
    8383                jQuery(this).parent().find('.twp-counter').addClass( 'too-long' );   
    8484            } else {
     
    184184        // ...
    185185
    186         // Is 140 chars
     186        // Is 280 chars
    187187        jQuery.validator.addMethod(
    188188            "tweetFit",
    189189            function(value, element) {
    190                 return twp_character_counter( value, false ) > 140;
     190                return twp_character_counter( value, false ) > 280;
    191191            },
    192             "Sorry, amigo. Maximum 140 characters."
     192            "Sorry, amigo. Maximum 280 characters."
    193193        );
    194194
  • tweet-wheel/trunk/includes/classes/class-twp-tweet.php

    r1586522 r1784364  
    223223        $tweet = $this->parse( $post_id, $raw_tweet );
    224224       
    225         // Make sure a tweet is 140 chars.
     225        // Make sure a tweet is 280 chars.
    226226        // Consider it a user error and stop script
    227         if( twp_character_counter( $tweet, $post_id ) > 140 ) :
     227        if( twp_character_counter( $tweet, $post_id ) > 280 ) :
    228228            return false;
    229229        endif;
  • tweet-wheel/trunk/includes/helpers.php

    r1712088 r1784364  
    369369   
    370370    // Max characters accepted for a single tweet
    371     $maxCharacters = 140;
     371    $maxCharacters = 280;
    372372   
    373373    // Load custom tweet text to a variable
  • tweet-wheel/trunk/readme.txt

    r1780680 r1784364  
    44Requires at least: 4.4
    55Tested up to: 4.9.1
    6 Stable tag: 1.1.4
     6Stable tag: 1.1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8888== Changelog ==
    8989
     90= 1.1.5 - 04/11/2017 =
     91* Changed - Increased character limit to 280 characters
     92
    9093= 1.1.4 - 04/11/2017 =
    9194* Added - WP 4.9.1. compatibility
  • tweet-wheel/trunk/tweet-wheel.php

    r1780680 r1784364  
    55 * Plugin URI: http://www.tweet-wheel.com
    66 * Description: A powerful tool that keeps your Twitter profile active. Even when you are busy.
    7  * Version: 1.1.4
     7 * Version: 1.1.5
    88 * Author: Tomasz Lisiecki from Nerd Cow Ltd.
    99 * Author URI: https://tweet-wheel.com
     
    3232     * @var string
    3333     */
    34     public $version = '1.1.4';
     34    public $version = '1.1.5';
    3535   
    3636    // ...
Note: See TracChangeset for help on using the changeset viewer.