Plugin Directory

Changeset 2128159


Ignore:
Timestamp:
07/24/2019 10:59:27 PM (7 years ago)
Author:
Twitter
Message:

version 2.0.5

Location:
twitter/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • twitter/trunk/compatibility-notice.php

    r1192074 r2128159  
    3939     * @type string
    4040     */
    41     const MIN_PHP_VERSION = '5.4';
     41    const MIN_PHP_VERSION = '5.6';
    4242
    4343    /**
  • twitter/trunk/composer.json

    r1099855 r2128159  
    77  "keywords": ["twitter","wordpress","plugin"],
    88  "require": {
    9     "php": ">=5.4.0"
     9    "php": ">=5.6.0"
    1010  },
    1111  "authors": [
  • twitter/trunk/readme.txt

    r2059311 r2128159  
    33Tags: twitter, embedded tweet, embedded timeline, twitter profile, twitter list, twitter moment, twitter video, periscope, twitter cards, tweet button, follow button, twitter analytics, twitter ads
    44Requires at least: 4.7
    5 Tested up to: 5.1
    6 Stable tag: 2.0.4
     5Tested up to: 5.2
     6Stable tag: 2.0.5
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
    99
    10 Official Twitter and Periscope 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.6 or greater.
    1111
    1212== Description ==
     
    1414Embed Twitter content, improve sharing on Twitter, convert your web audience into Twitter or Periscope subscribers, and easily track visits to your website from Twitter advertising.
    1515
    16 Requires PHP version 5.4 or greater.
     16Requires PHP version 5.6 or greater.
    1717
    1818= Embed Twitter content =
     
    7070
    7171== Changelog ==
     72= 2.0.5 =
     73* Add support for WordPress 5.2
     74* Fix conversation option to properly set hide_thread oEmbed param
     75
    7276= 2.0.4 =
    7377* Add support for WordPress 5.1
  • twitter/trunk/src/Twitter/Widgets/Embeds/Tweet.php

    r1590191 r2128159  
    266266            $tweet->hideCards();
    267267        }
     268
    268269        if (isset($options['conversation']) && ( false === $options['conversation'] || 'false' === $options['conversation'] || 0 == $options['conversation'] )) {
    269270            $tweet->hideParentTweet();
     
    334335        }
    335336        if (false === $this->conversation) {
    336             $oembed['hide_thread'] = false;
     337            $oembed['hide_thread'] = true;
    337338        }
    338339        if (static::ALIGN_NONE !== $this->align) {
  • twitter/trunk/src/Twitter/WordPress/PluginLoader.php

    r2059311 r2128159  
    4242     * @type string
    4343     */
    44     const VERSION = '2.0.4';
     44    const VERSION = '2.0.5';
    4545
    4646    /**
  • twitter/trunk/twitter.php

    r2059311 r2128159  
    2525/**
    2626 * @package twitter
    27  * @version 2.0.4
     27 * @version 2.0.5
    2828 */
    2929/*
    3030Plugin Name: Twitter
    3131Plugin URI:  https://wordpress.org/plugins/twitter/
    32 Description: Official Twitter plugin for WordPress. Embed Twitter content and grow your audience on Twitter. Requires PHP 5.4 or greater.
    33 Version:     2.0.4
     32Description: Official Twitter plugin for WordPress. Embed Twitter content and grow your audience on Twitter. Requires PHP 5.6 or greater.
     33Version:     2.0.5
    3434Author:      Twitter
    3535Author URI:  https://dev.twitter.com/
     
    5050}
    5151
    52 // plugin requires PHP 5.4 or greater
    53 if ( version_compare( PHP_VERSION, '5.4.0', '<' ) ) {
     52// plugin requires PHP 5.6 or greater
     53if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) {
    5454    if ( ! class_exists( 'Twitter_CompatibilityNotice' ) ) {
    5555        require_once( dirname( __FILE__ ) . '/compatibility-notice.php' );
Note: See TracChangeset for help on using the changeset viewer.