Plugin Directory

Changeset 725717

Timestamp:
06/12/2013 03:05:57 PM (11 years ago)
Author:
alexkingorg
Message:

version 3.0.4

Location:
twitter-tools/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • twitter-tools/trunk/README.txt

    r618408 r725717  
    2222Twitter Tools leverages Social's connection to Twitter so that you don't have to create an app and copy keys around. It supports multiple accounts (must be authorized as "global" accounts in Social) with settings on a per-account basis.
    2323
     24
     25
     26
     27
    2428
    2529== Installation ==
     
    113117
    114118https://gist.github.com/3470627
     119
     120
     121
     122
     123
     124
     125
     126
     127
     128
     129
     130
    115131
    116132== Screenshots ==
     
    125141== Upgrade Notice ==
    126142
    127 Version 3.0.3 is a recommended bug fix release.
     143Version 3.0..
    128144
    129145Version 3.0 is a complete rewrite that utilizes <a href="http://wordpress.org/extend/plugins/social/">Social</a> to make connecting your Twitter account easy. It is compatibile with the latest Twitter API changes as of October 11, 2012. Please see the <a href="http://alexking.org/blog/2012/10/12/twitter-tools-3-0-faq">FAQ</a> for more details.
    130146
    131147== Changelog ==
     148
     149
     150
     151
     152
    132153
    133154= 3.0.3 =
  • twitter-tools/trunk/classes/aktt.php

    r618408 r725717  
    10991099            $response = Social::instance()->service('twitter')->request(
    11001100                $account->social_acct,
    1101                 'statuses/show/'.urlencode($t->id).'.json',
     1101                'statuses/show/'.urlencode($t->id).'.json',
    11021102                    array(
    11031103                    'include_entities' => 1, // include explicit hashtags and mentions
  • twitter-tools/trunk/classes/aktt_account.php

    r617491 r725717  
    126126    function download_tweets() {
    127127        // Use Social to download tweets for this account
    128         $response = $this->service->request($this->social_acct, 'statuses/user_timeline', array(
     128        $response = $this->service->request($this->social_acct, 'statuses/user_timeline', array(
    129129            'count' => apply_filters('aktt_account_api_download_count', 20), // default to twitter's default
    130130            'include_entities' => 1, // include explicit hashtags and mentions
  • twitter-tools/trunk/classes/aktt_tweet.php

    r617491 r725717  
    563563        );
    564564        $data = apply_filters('aktt_tweet_create_blog_post_data', $data);
    565 
     565       
    566566        // hook in here if you want to conditionally skip blog post creation
    567567        if (!apply_filters('aktt_tweet_create_blog_post', true, $data, $this)) {
  • twitter-tools/trunk/twitter-tools.php

    r618408 r725717  
    44Plugin URI: http://crowdfavorite.com/wordpress/plugins/twitter-tools/
    55Description: An integration between your WordPress site and Twitter. Create posts from your tweets. Show your tweets in your sidebar. Relies on <a href="http://wordpress.org/extend/plugins/social/">Social</a>.
    6 Version: 3.0.3
     6Version: 3.0.
    77Author: Crowd Favorite
    88Author URI: http://crowdfavorite.com
    99*/
    1010
    11 // Copyright (c) 2007-2012 Crowd Favorite, Ltd. All rights reserved.
     11// Copyright (c) 2007-201 Crowd Favorite, Ltd. All rights reserved.
    1212//
    1313// Released under the GPL license
     
    153153    return media_handle_sideload( $file_array, $post_id, $desc );
    154154}
     155
     156
     157
     158
     159
  • twitter-tools/trunk/views/admin.php

    r613060 r725717  
    206206    var $createPosts = $account.find('input.create-posts');
    207207// toggle enabled icon
    208         if ($enabled.is(':checked')) {
    209             $account.addClass('aktt-account-enabled');
    210         }
    211         else {
     208    if ($enabled.is(':checked')) {
     209        $account.addClass('aktt-account-enabled');
     210    }
     211    else {
    212212        $account.removeClass('aktt-account-enabled');
    213213    }
Note: See TracChangeset for help on using the changeset viewer.