Plugin Directory

Changeset 1785841


Ignore:
Timestamp:
12/13/2017 12:35:50 AM (8 years ago)
Author:
Twitter
Message:

version 2.0.2

Location:
twitter/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • twitter/trunk/readme.txt

    r1591299 r1785841  
    11=== Plugin Name ===
    2 Contributors: Twitter, niallkennedy
    3 Tags: twitter, embedded tweet, embedded timeline, twitter profile, twitter list, twitter moment, twitter video, twitter grid, vine, periscope, twitter cards, tweet button, follow button, twitter analytics, twitter ads
    4 Requires at least: 4.1
    5 Tested up to: 4.7
    6 Stable tag: 2.0.1
     2Contributors: Twitter, niallkennedy, sobkowicz
     3Tags: twitter, embedded tweet, embedded timeline, twitter profile, twitter list, twitter moment, twitter video, twitter grid, periscope, twitter cards, tweet button, follow button, twitter analytics, twitter ads
     4Requires at least: 4.7
     5Tested up to: 4.9
     6Stable tag: 2.0.2
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
    99
    10 Official Twitter, Periscope, and Vine plugin for WordPress. Embed content and grow your audience. Requires PHP 5.4 or greater.
     10Official Twitter and Periscope plugin for WordPress. Embed content and grow your audience. Requires PHP 5.4 or greater.
    1111
    1212== Description ==
     
    1919Embed Twitter content by pasting a URL, customizing a shortcode, or in a widget area.
    2020
    21 * [single Tweet](https://dev.twitter.com/web/embedded-tweets "single Tweet embed")
    22 * [single Tweet with video template](https://dev.twitter.com/web/embedded-video "single Tweet with video embed")
    23 * [profile timeline](https://dev.twitter.com/web/embedded-timelines/user "Twitter embedded profile timeline")
    24 * [list timeline](https://dev.twitter.com/web/embedded-timelines/list "Twitter embedded list timeline")
    25 * [search timeline](https://dev.twitter.com/web/embedded-timelines/search "Twitter embedded search timeline")
    26 * [collection](https://dev.twitter.com/web/embedded-timelines/collection "Twitter embedded collection")
    27 * [Moment](https://dev.twitter.com/web/embedded-moments "Twitter embedded Moment")
    28 * [Vine](https://dev.twitter.com/web/vine "Vine embed")
     21* [single Tweet](https://github.com/twitter/wordpress/wiki/Embedded-Tweet "single Tweet embed")
     22* [single Tweet with video template](https://github.com/twitter/wordpress/wiki/Embedded-Video "single Tweet with video embed")
     23* [profile timeline](https://github.com/twitter/wordpress/wiki/Embedded-Profile-Timeline "Twitter embedded profile timeline")
     24* [list timeline](https://github.com/twitter/wordpress/wiki/Embedded-List-Timeline "Twitter embedded list timeline")
     25* [search timeline](https://github.com/twitter/wordpress/wiki/Embedded-Search-Timeline "Twitter embedded search timeline")
     26* [collection](https://github.com/twitter/wordpress/wiki/Embedded-Collection-Timeline "Twitter embedded collection")
     27* [Moment](https://github.com/twitter/wordpress/wiki/Moments "Twitter embedded Moment")
    2928
    3029Customize embed display to match your theme. Choose a light or dark background, customize link and border colors, and customize timeline template components through your site's WordPress administrative interface.
     
    3433= Grow your Twitter audience =
    3534
    36 Automatically generate link previews for your site's URLs shared on Twitter using [Twitter Cards markup](https://dev.twitter.com/cards/overview) . Easily identify your site and author Twitter accounts through your site and user administrative interfaces.
     35Automatically generate link previews for your site's URLs shared on Twitter using [Twitter Cards markup](https://github.com/twitter/wordpress/wiki/Cards) . Easily identify your site and author Twitter accounts through your site and user administrative interfaces.
    3736
    38 Add a [Tweet button](https://dev.twitter.com/web/tweet-button) to public posts to encourage your visitors to share your content on Twitter. Visitors may see recommended accounts to follow after sharing your content including your site and its authors.
     37Add a [Tweet button](https://github.com/twitter/wordpress/wiki/Tweet-Button) to public posts to encourage your visitors to share your content on Twitter. Visitors may see recommended accounts to follow after sharing your content including your site and its authors.
    3938
    40 Add a [Follow button](https://dev.twitter.com/web/follow-button) to convert your site visitors into Twitter subscribers.
     39Add a [Follow button](https://github.com/twitter/wordpress/wiki/Follow-Button) to convert your site visitors into Twitter subscribers.
    4140
    42 Add a [Periscope On Air button](https://www.periscope.tv/embed#on-air-button) to convert your site visitors into Periscope subscribers.
     41Add a [Periscope On Air button](https://github.com/twitter/wordpress/wiki/Periscope-On-Air-Button) to convert your site visitors into Periscope subscribers.
    4342
    4443= Improve Twitter advertising campaigns =
     
    4847> <strong>Docs and active development</strong><br>
    4948> Contribute to the plugin, submit pull requests, or run test suites through the [Twitter plugin for WordPress GitHub repository](https://github.com/twitter/wordpress).
    50 > View [Twitter for WordPress documentation](https://dev.twitter.com/web/wordpress) to learn more about customization through WordPress filters.
     49> View [Twitter for WordPress documentation](https://github.com/twitter/wordpress/wiki) to learn more about customization through WordPress filters.
    5150
    5251== Upgrade Notice ==
     
    7372
    7473== Changelog ==
     74= 2.0.2 =
     75* Support 280 characters
     76* Add support for WordPress 4.8 and 4.9
     77* Remove support for WordPress 4.6 and below
     78
    7579= 2.0.1 =
    7680* Enqueue Twitter widgets JavaScript and advertising JavaScript early in the page build process if a widget is active on the page
  • twitter/trunk/src/Twitter/WordPress/Admin/Post/TweetIntent.php

    r1591299 r1785841  
    150150        echo '<thead><tr><th scope="col">' . esc_html( _x( 'Parameter', 'Customization or variable', 'twitter' ) ) . '</th><th scope="col">' . esc_html( _x( 'Value', 'Table column header: user-inputted value', 'twitter' ) ) . '</th></tr></thead><tbody>';
    151151
    152         $available_characters = 140;
     152        $available_characters = 280;
    153153        // t.co wrapped URL length
    154154        $short_url_length = static::getShortURLLength();
  • twitter/trunk/src/Twitter/WordPress/PluginLoader.php

    r1591299 r1785841  
    4242     * @type string
    4343     */
    44     const VERSION = '2.0.1';
     44    const VERSION = '2.0.2';
    4545
    4646    /**
  • twitter/trunk/twitter.php

    r1591299 r1785841  
    2525/**
    2626 * @package twitter
    27  * @version 2.0.1
     27 * @version 2.0.2
    2828 */
    2929/*
     
    3131Plugin URI:  http://wordpress.org/plugins/twitter/
    3232Description: Official Twitter plugin for WordPress. Embed Twitter content and grow your audience on Twitter. Requires PHP 5.4 or greater.
    33 Version:     2.0.1
     33Version:     2.0.2
    3434Author:      Twitter
    3535Author URI:  https://dev.twitter.com/
Note: See TracChangeset for help on using the changeset viewer.