Changeset 3386131
- Timestamp:
- 10/29/2025 12:01:21 AM (5 months ago)
- Location:
- tika-doc-pdf-indexer
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.0 (copied) (copied from tika-doc-pdf-indexer/trunk)
-
tags/1.1.0/includes/class-tika-doc-pdf-indexer.php (modified) (2 diffs)
-
tags/1.1.0/readme.txt (modified) (2 diffs)
-
tags/1.1.0/tika-doc-pdf-indexer.php (modified) (2 diffs)
-
trunk/includes/class-tika-doc-pdf-indexer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tika-doc-pdf-indexer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tika-doc-pdf-indexer/tags/1.1.0/includes/class-tika-doc-pdf-indexer.php
r3386130 r3386131 226 226 * @return Main Tika_Doc_PDF_Indexer instance 227 227 */ 228 public static function instance( $file = '', $version = '1. 0.8' ) {228 public static function instance( $file = '', $version = '1.1.0' ) { 229 229 if ( is_null( self::$instance ) ) { 230 230 self::$instance = new self( $file, $version ); … … 313 313 * @param string $version Plugin version. 314 314 */ 315 public function __construct( $file = '', $version = '1. 0.8' ) {315 public function __construct( $file = '', $version = '1.1.0' ) { 316 316 $this->_version = $version; 317 317 $this->_token = 'tika_doc_pdf_indexer'; -
tika-doc-pdf-indexer/tags/1.1.0/readme.txt
r3386130 r3386131 1 1 === Tika Doc PDF Indexer === 2 This plugin will automatically index pdf uploaded files from the media manager. 2 3 Contributors: carl-alberto 3 Tags: wordpress, plugin4 Tags: tika, indexer 4 5 Requires at least: 4.8 5 6 Tested up to: 6.8.3 6 Stable tag: 1. 0.87 Stable tag: 1.1.0 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 34 == Changelog == 34 35 35 = 1. 0.8=36 = 1.1.0 = 36 37 * 2025-10-29 37 38 * Bump compatibility to WP version 6.8.3 -
tika-doc-pdf-indexer/tags/1.1.0/tika-doc-pdf-indexer.php
r3386130 r3386131 2 2 /** 3 3 * Plugin Name: Tika Doc PDF indexer 4 * Version: 1. 0.84 * Version: 1.1.0 5 5 * Plugin URI: https://wordpress.org/plugins/tika-odc-pdf-indexer/ 6 6 * Description: This indexes your Docs or PDFs into meta datas when uploaded. Based on Apache Tika. … … 54 54 */ 55 55 function 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' ); 57 57 58 58 if ( is_null( $instance->settings ) ) { -
tika-doc-pdf-indexer/trunk/includes/class-tika-doc-pdf-indexer.php
r3386130 r3386131 226 226 * @return Main Tika_Doc_PDF_Indexer instance 227 227 */ 228 public static function instance( $file = '', $version = '1. 0.8' ) {228 public static function instance( $file = '', $version = '1.1.0' ) { 229 229 if ( is_null( self::$instance ) ) { 230 230 self::$instance = new self( $file, $version ); … … 313 313 * @param string $version Plugin version. 314 314 */ 315 public function __construct( $file = '', $version = '1. 0.8' ) {315 public function __construct( $file = '', $version = '1.1.0' ) { 316 316 $this->_version = $version; 317 317 $this->_token = 'tika_doc_pdf_indexer'; -
tika-doc-pdf-indexer/trunk/readme.txt
r3386130 r3386131 1 1 === Tika Doc PDF Indexer === 2 This plugin will automatically index pdf uploaded files from the media manager. 2 3 Contributors: carl-alberto 3 Tags: wordpress, plugin4 Tags: tika, indexer 4 5 Requires at least: 4.8 5 6 Tested up to: 6.8.3 6 Stable tag: 1. 0.87 Stable tag: 1.1.0 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 34 == Changelog == 34 35 35 = 1. 0.8=36 = 1.1.0 = 36 37 * 2025-10-29 37 38 * Bump compatibility to WP version 6.8.3 -
tika-doc-pdf-indexer/trunk/tika-doc-pdf-indexer.php
r3386130 r3386131 2 2 /** 3 3 * Plugin Name: Tika Doc PDF indexer 4 * Version: 1. 0.84 * Version: 1.1.0 5 5 * Plugin URI: https://wordpress.org/plugins/tika-odc-pdf-indexer/ 6 6 * Description: This indexes your Docs or PDFs into meta datas when uploaded. Based on Apache Tika. … … 54 54 */ 55 55 function 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' ); 57 57 58 58 if ( is_null( $instance->settings ) ) {
Note: See TracChangeset
for help on using the changeset viewer.