Plugin Directory

Changeset 3386131


Ignore:
Timestamp:
10/29/2025 12:01:21 AM (5 months ago)
Author:
carl-alberto
Message:

Update to version 1.1.0 from GitHub

Location:
tika-doc-pdf-indexer
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tika-doc-pdf-indexer/tags/1.1.0/includes/class-tika-doc-pdf-indexer.php

    r3386130 r3386131  
    226226     * @return Main Tika_Doc_PDF_Indexer instance
    227227     */
    228     public static function instance( $file = '', $version = '1.0.8' ) {
     228    public static function instance( $file = '', $version = '1.1.0' ) {
    229229        if ( is_null( self::$instance ) ) {
    230230            self::$instance = new self( $file, $version );
     
    313313     * @param string $version Plugin version.
    314314     */
    315     public function __construct( $file = '', $version = '1.0.8' ) {
     315    public function __construct( $file = '', $version = '1.1.0' ) {
    316316        $this->_version = $version;
    317317        $this->_token   = 'tika_doc_pdf_indexer';
  • tika-doc-pdf-indexer/tags/1.1.0/readme.txt

    r3386130 r3386131  
    11=== Tika Doc PDF Indexer ===
     2This plugin will automatically index pdf uploaded files from the media manager.
    23Contributors: carl-alberto
    3 Tags: wordpress, plugin
     4Tags: tika, indexer
    45Requires at least: 4.8
    56Tested up to: 6.8.3
    6 Stable tag: 1.0.8
     7Stable tag: 1.1.0
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3334== Changelog ==
    3435
    35 = 1.0.8 =
     36= 1.1.0 =
    3637* 2025-10-29
    3738* Bump compatibility to WP version 6.8.3
  • tika-doc-pdf-indexer/tags/1.1.0/tika-doc-pdf-indexer.php

    r3386130 r3386131  
    22/**
    33 * Plugin Name: Tika Doc PDF indexer
    4  * Version: 1.0.8
     4 * Version: 1.1.0
    55 * Plugin URI: https://wordpress.org/plugins/tika-odc-pdf-indexer/
    66 * Description: This indexes your Docs or PDFs into meta datas when uploaded. Based on Apache Tika.
     
    5454 */
    5555function tika_doc_pdf_indexer() {
    56     $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.0.8' );
     56    $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.1.0' );
    5757
    5858    if ( is_null( $instance->settings ) ) {
  • tika-doc-pdf-indexer/trunk/includes/class-tika-doc-pdf-indexer.php

    r3386130 r3386131  
    226226     * @return Main Tika_Doc_PDF_Indexer instance
    227227     */
    228     public static function instance( $file = '', $version = '1.0.8' ) {
     228    public static function instance( $file = '', $version = '1.1.0' ) {
    229229        if ( is_null( self::$instance ) ) {
    230230            self::$instance = new self( $file, $version );
     
    313313     * @param string $version Plugin version.
    314314     */
    315     public function __construct( $file = '', $version = '1.0.8' ) {
     315    public function __construct( $file = '', $version = '1.1.0' ) {
    316316        $this->_version = $version;
    317317        $this->_token   = 'tika_doc_pdf_indexer';
  • tika-doc-pdf-indexer/trunk/readme.txt

    r3386130 r3386131  
    11=== Tika Doc PDF Indexer ===
     2This plugin will automatically index pdf uploaded files from the media manager.
    23Contributors: carl-alberto
    3 Tags: wordpress, plugin
     4Tags: tika, indexer
    45Requires at least: 4.8
    56Tested up to: 6.8.3
    6 Stable tag: 1.0.8
     7Stable tag: 1.1.0
    78License: GPLv2 or later
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3334== Changelog ==
    3435
    35 = 1.0.8 =
     36= 1.1.0 =
    3637* 2025-10-29
    3738* Bump compatibility to WP version 6.8.3
  • tika-doc-pdf-indexer/trunk/tika-doc-pdf-indexer.php

    r3386130 r3386131  
    22/**
    33 * Plugin Name: Tika Doc PDF indexer
    4  * Version: 1.0.8
     4 * Version: 1.1.0
    55 * Plugin URI: https://wordpress.org/plugins/tika-odc-pdf-indexer/
    66 * Description: This indexes your Docs or PDFs into meta datas when uploaded. Based on Apache Tika.
     
    5454 */
    5555function tika_doc_pdf_indexer() {
    56     $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.0.8' );
     56    $instance = Tika_Doc_PDF_Indexer::instance( __FILE__, '1.1.0' );
    5757
    5858    if ( is_null( $instance->settings ) ) {
Note: See TracChangeset for help on using the changeset viewer.