Plugin Directory

Changeset 1957411


Ignore:
Timestamp:
10/16/2018 10:30:34 AM (7 years ago)
Author:
yoannspace
Message:

->1.1.4 release

Location:
nerd-wp
Files:
7 edited
24 copied

Legend:

Unmodified
Added
Removed
  • nerd-wp/tags/1.1.4/CHANGELOG.md

    r1955821 r1957411  
    66
    77## Unreleased
     8
     9## [1.1.4] - 2018-10-16
     10### Changed
     11- Add missing namespace for the HTML parser
    812
    913## [1.1.3] - 2018-10-12
  • nerd-wp/tags/1.1.4/README.txt

    r1955821 r1957411  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.1.3
     8Stable tag: 1.1.4
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    3838== Changelog ==
    3939
     40= 1.1.4 =
     41* Add missing namespace for the HTML parser
     42
    4043= 1.1.3 =
    4144* Add missing imports, was not important for most usage
  • nerd-wp/tags/1.1.4/includes/class-nerd-wp.php

    r1955821 r1957411  
    6565            $this->version = NERD_WP_VERSION;
    6666        } else {
    67             $this->version = '1.1.3';
     67            $this->version = '1.1.4';
    6868        }
    6969        $this->plugin_name = 'nerd-wp';
  • nerd-wp/tags/1.1.4/libraries/readability/Utils/OpenGraphForNerd.php

    r1925226 r1957411  
    2525
    2626use DOMDocument;
     27use DOMXPath;
    2728use Iterator;
    2829
  • nerd-wp/tags/1.1.4/libraries/readability/Utils/ReadabilityForNerd.php

    r1955821 r1957411  
    146146            @$this->dom->loadHTML( $html );
    147147        }
    148         $this->dom->registerNodeClass( 'DOMElement', 'JSLikeHTMLElementForNerd' );
     148        $this->dom->registerNodeClass( 'DOMElement', 'Nerd_Wp_Lib\Utils\JSLikeHTMLElementForNerd' );
    149149    }
    150150
  • nerd-wp/tags/1.1.4/nerd-wp.php

    r1955821 r1957411  
    1717 * Plugin URI:        https://github.com/dariah-eric/nerd-wp
    1818 * Description:       NERD (Named Entity Recognition and Disambiguation: https://github.com/kermitt2/entity-fishing) is an application that allows to recognize and disambiguate named entities. This plugin allows integration of this with Wordpress.
    19  * Version:           1.1.3
     19 * Version:           1.1.4
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
  • nerd-wp/trunk/CHANGELOG.md

    r1955821 r1957411  
    66
    77## Unreleased
     8
     9## [1.1.4] - 2018-10-16
     10### Changed
     11- Add missing namespace for the HTML parser
    812
    913## [1.1.3] - 2018-10-12
  • nerd-wp/trunk/README.txt

    r1955821 r1957411  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.1.3
     8Stable tag: 1.1.4
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    3838== Changelog ==
    3939
     40= 1.1.4 =
     41* Add missing namespace for the HTML parser
     42
    4043= 1.1.3 =
    4144* Add missing imports, was not important for most usage
  • nerd-wp/trunk/includes/class-nerd-wp.php

    r1955821 r1957411  
    6565            $this->version = NERD_WP_VERSION;
    6666        } else {
    67             $this->version = '1.1.3';
     67            $this->version = '1.1.4';
    6868        }
    6969        $this->plugin_name = 'nerd-wp';
  • nerd-wp/trunk/libraries/readability/Utils/OpenGraphForNerd.php

    r1925226 r1957411  
    2525
    2626use DOMDocument;
     27use DOMXPath;
    2728use Iterator;
    2829
  • nerd-wp/trunk/libraries/readability/Utils/ReadabilityForNerd.php

    r1955821 r1957411  
    146146            @$this->dom->loadHTML( $html );
    147147        }
    148         $this->dom->registerNodeClass( 'DOMElement', 'JSLikeHTMLElementForNerd' );
     148        $this->dom->registerNodeClass( 'DOMElement', 'Nerd_Wp_Lib\Utils\JSLikeHTMLElementForNerd' );
    149149    }
    150150
  • nerd-wp/trunk/nerd-wp.php

    r1955821 r1957411  
    1717 * Plugin URI:        https://github.com/dariah-eric/nerd-wp
    1818 * Description:       NERD (Named Entity Recognition and Disambiguation: https://github.com/kermitt2/entity-fishing) is an application that allows to recognize and disambiguate named entities. This plugin allows integration of this with Wordpress.
    19  * Version:           1.1.3
     19 * Version:           1.1.4
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
Note: See TracChangeset for help on using the changeset viewer.