From 4d6540124bbc2d611777f9ce4584db0e069ab000 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Fri, 17 Jan 2020 10:22:21 -0100 Subject: [PATCH] 1.4.0 --- CHANGELOG.md | 5 +++++ Makefile | 2 +- appinfo/info.xml | 4 ++-- lib/AppInfo/Application.php | 2 +- lib/Service/ConfigService.php | 2 +- lib/Service/TesseractService.php | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a693ab..bae2c0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +### 1.4.0 (nc18) + +- compat nc18 + + ### 1.3.2 - more logs diff --git a/Makefile b/Makefile index 1696200..327b359 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ cert_dir=$(HOME)/.nextcloud/certificates github_account=daita branch=master codecov_token_dir=$(HOME)/.nextcloud/codecov_token -version+=1.3.2 +version+=1.4.0 all: appstore diff --git a/appinfo/info.xml b/appinfo/info.xml index f1e48fe..1cd5994 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ which is a wrapper for the command line program [Tesseract OCR](https://github.c Tesseract must be installed locally, and configured. ]]> - 1.3.2 + 1.4.0 agpl Maxence Lange Files_FullTextSearch_Tesseract @@ -27,7 +27,7 @@ Tesseract must be installed locally, and configured. https://github.com/daita/files_fulltextsearch_tesseract.git https://raw.githubusercontent.com/nextcloud/fulltextsearch/master/screenshots/0.3.0.png - + diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 1737fd5..b1ae292 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -35,7 +35,7 @@ use OCA\Files_FullTextSearch_Tesseract\Service\TesseractService; use OCP\AppFramework\App; use OCP\AppFramework\QueryException; -use Symfony\Component\EventDispatcher\GenericEvent; +use OCP\EventDispatcher\GenericEvent; /** diff --git a/lib/Service/ConfigService.php b/lib/Service/ConfigService.php index 43488a4..f68114f 100644 --- a/lib/Service/ConfigService.php +++ b/lib/Service/ConfigService.php @@ -32,8 +32,8 @@ use OCA\Files_FullTextSearch_Tesseract\AppInfo\Application; +use OCP\EventDispatcher\GenericEvent; use OCP\IConfig; -use Symfony\Component\EventDispatcher\GenericEvent; /** diff --git a/lib/Service/TesseractService.php b/lib/Service/TesseractService.php index 38b3a9a..6387630 100644 --- a/lib/Service/TesseractService.php +++ b/lib/Service/TesseractService.php @@ -33,6 +33,7 @@ use Exception; use OC\Files\View; +use OCP\EventDispatcher\GenericEvent; use OCP\Files\File; use OCP\Files\Node; use OCP\Files\NotFoundException; @@ -41,7 +42,6 @@ use OCP\FullTextSearch\Model\ISearchRequest; use Spatie\PdfToImage\Exceptions\PageDoesNotExist; use Spatie\PdfToImage\Pdf; -use Symfony\Component\EventDispatcher\GenericEvent; use thiagoalessio\TesseractOCR\TesseractOCR; use Throwable;