Changeset 2128159
- Timestamp:
- 07/24/2019 10:59:27 PM (7 years ago)
- Location:
- twitter/trunk
- Files:
-
- 6 edited
-
compatibility-notice.php (modified) (1 diff)
-
composer.json (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
src/Twitter/Widgets/Embeds/Tweet.php (modified) (2 diffs)
-
src/Twitter/WordPress/PluginLoader.php (modified) (1 diff)
-
twitter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twitter/trunk/compatibility-notice.php
r1192074 r2128159 39 39 * @type string 40 40 */ 41 const MIN_PHP_VERSION = '5. 4';41 const MIN_PHP_VERSION = '5.6'; 42 42 43 43 /** -
twitter/trunk/composer.json
r1099855 r2128159 7 7 "keywords": ["twitter","wordpress","plugin"], 8 8 "require": { 9 "php": ">=5. 4.0"9 "php": ">=5.6.0" 10 10 }, 11 11 "authors": [ -
twitter/trunk/readme.txt
r2059311 r2128159 3 3 Tags: twitter, embedded tweet, embedded timeline, twitter profile, twitter list, twitter moment, twitter video, periscope, twitter cards, tweet button, follow button, twitter analytics, twitter ads 4 4 Requires at least: 4.7 5 Tested up to: 5. 16 Stable tag: 2.0. 45 Tested up to: 5.2 6 Stable tag: 2.0.5 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT 9 9 10 Official Twitter and Periscope plugin for WordPress. Embed content and grow your audience. Requires PHP 5. 4or greater.10 Official Twitter and Periscope plugin for WordPress. Embed content and grow your audience. Requires PHP 5.6 or greater. 11 11 12 12 == Description == … … 14 14 Embed 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. 15 15 16 Requires PHP version 5. 4or greater.16 Requires PHP version 5.6 or greater. 17 17 18 18 = Embed Twitter content = … … 70 70 71 71 == Changelog == 72 = 2.0.5 = 73 * Add support for WordPress 5.2 74 * Fix conversation option to properly set hide_thread oEmbed param 75 72 76 = 2.0.4 = 73 77 * Add support for WordPress 5.1 -
twitter/trunk/src/Twitter/Widgets/Embeds/Tweet.php
r1590191 r2128159 266 266 $tweet->hideCards(); 267 267 } 268 268 269 if (isset($options['conversation']) && ( false === $options['conversation'] || 'false' === $options['conversation'] || 0 == $options['conversation'] )) { 269 270 $tweet->hideParentTweet(); … … 334 335 } 335 336 if (false === $this->conversation) { 336 $oembed['hide_thread'] = false;337 $oembed['hide_thread'] = true; 337 338 } 338 339 if (static::ALIGN_NONE !== $this->align) { -
twitter/trunk/src/Twitter/WordPress/PluginLoader.php
r2059311 r2128159 42 42 * @type string 43 43 */ 44 const VERSION = '2.0. 4';44 const VERSION = '2.0.5'; 45 45 46 46 /** -
twitter/trunk/twitter.php
r2059311 r2128159 25 25 /** 26 26 * @package twitter 27 * @version 2.0. 427 * @version 2.0.5 28 28 */ 29 29 /* 30 30 Plugin Name: Twitter 31 31 Plugin 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. 4or greater.33 Version: 2.0. 432 Description: Official Twitter plugin for WordPress. Embed Twitter content and grow your audience on Twitter. Requires PHP 5.6 or greater. 33 Version: 2.0.5 34 34 Author: Twitter 35 35 Author URI: https://dev.twitter.com/ … … 50 50 } 51 51 52 // plugin requires PHP 5. 4or greater53 if ( version_compare( PHP_VERSION, '5. 4.0', '<' ) ) {52 // plugin requires PHP 5.6 or greater 53 if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) { 54 54 if ( ! class_exists( 'Twitter_CompatibilityNotice' ) ) { 55 55 require_once( dirname( __FILE__ ) . '/compatibility-notice.php' );
Note: See TracChangeset
for help on using the changeset viewer.