Plugin Directory

Changeset 1200431


Ignore:
Timestamp:
07/16/2015 07:39:07 PM (11 years ago)
Author:
RNAGS
Message:

Tagging version 2.4.3

Location:
reuters-direct
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • reuters-direct/tags/2.4.3/includes/class-reuters-direct.php

    r1165251 r1200431  
    3636     * @return  void
    3737     */
    38     public function __construct ( $file = '', $version = '2.4.2' ) {
     38    public function __construct ( $file = '', $version = '2.4.3' ) {
    3939        $this->_version = $version;
    4040        $this->_token = 'Reuters_Direct';
     
    6868     * @return Main Reuters_Direct instance
    6969     */
    70     public static function instance ( $file = '', $version = '2.4.2' ) {
     70    public static function instance ( $file = '', $version = '2.4.3' ) {
    7171        if ( is_null( self::$_instance ) ) {
    7272            self::$_instance = new self( $file, $version );
     
    266266            $channel_alias = $channel_data[0];
    267267            $channel_type = $channel_data[1];
    268             $channel_name = $channel_data[2];
     268            $channel_name = str_replace(' ', '', $channel_data[2]);
    269269
    270270            if($channel_type == 'OLR')
  • reuters-direct/tags/2.4.3/readme.txt

    r1170460 r1200431  
    55Requires at least: 3.8
    66Tested up to: 4.2.2
    7 Stable tag: 2.4.2
     7Stable tag: 2.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.4.3 =
     105* Fixed image directory naming.
     106
    104107= 2.4.2 =
    105108* Fixed duplicate image bug.
     
    110113== Upgrade notice ==
    111114
    112 = 2.4.2 =
    113 * Performance upgrade & minor bug fixes done.
     115= 2.4.3 =
     116* Minor bug fixes done.
    114117
  • reuters-direct/tags/2.4.3/reuters-direct.php

    r1165251 r1200431  
    22/*
    33 * Plugin Name: Reuters WordPress Direct
    4  * Version: 2.4.2
     4 * Version: 2.4.3
    55 * Description: A full-featured news aggregator, powered by Reuters Connect: Web Services, which ingests Reuters news and picture content directly into a WordPress platform.
    66 * Author: Reuters News Agency
     
    1717
    1818function Reuters_Direct () {
    19     $instance = Reuters_Direct::instance( __FILE__, '2.4.2' );
     19    $instance = Reuters_Direct::instance( __FILE__, '2.4.3' );
    2020    if( is_null( $instance->settings ) ) {
    2121        $instance->settings = Reuters_Direct_Settings::instance( $instance );
  • reuters-direct/trunk/includes/class-reuters-direct.php

    r1165251 r1200431  
    3636     * @return  void
    3737     */
    38     public function __construct ( $file = '', $version = '2.4.2' ) {
     38    public function __construct ( $file = '', $version = '2.4.3' ) {
    3939        $this->_version = $version;
    4040        $this->_token = 'Reuters_Direct';
     
    6868     * @return Main Reuters_Direct instance
    6969     */
    70     public static function instance ( $file = '', $version = '2.4.2' ) {
     70    public static function instance ( $file = '', $version = '2.4.3' ) {
    7171        if ( is_null( self::$_instance ) ) {
    7272            self::$_instance = new self( $file, $version );
     
    266266            $channel_alias = $channel_data[0];
    267267            $channel_type = $channel_data[1];
    268             $channel_name = $channel_data[2];
     268            $channel_name = str_replace(' ', '', $channel_data[2]);
    269269
    270270            if($channel_type == 'OLR')
  • reuters-direct/trunk/readme.txt

    r1170460 r1200431  
    55Requires at least: 3.8
    66Tested up to: 4.2.2
    7 Stable tag: 2.4.2
     7Stable tag: 2.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.4.3 =
     105* Fixed image directory naming.
     106
    104107= 2.4.2 =
    105108* Fixed duplicate image bug.
     
    110113== Upgrade notice ==
    111114
    112 = 2.4.2 =
    113 * Performance upgrade & minor bug fixes done.
     115= 2.4.3 =
     116* Minor bug fixes done.
    114117
  • reuters-direct/trunk/reuters-direct.php

    r1165251 r1200431  
    22/*
    33 * Plugin Name: Reuters WordPress Direct
    4  * Version: 2.4.2
     4 * Version: 2.4.3
    55 * Description: A full-featured news aggregator, powered by Reuters Connect: Web Services, which ingests Reuters news and picture content directly into a WordPress platform.
    66 * Author: Reuters News Agency
     
    1717
    1818function Reuters_Direct () {
    19     $instance = Reuters_Direct::instance( __FILE__, '2.4.2' );
     19    $instance = Reuters_Direct::instance( __FILE__, '2.4.3' );
    2020    if( is_null( $instance->settings ) ) {
    2121        $instance->settings = Reuters_Direct_Settings::instance( $instance );
Note: See TracChangeset for help on using the changeset viewer.