mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Update Tesseract 5.0.0 to 5.0.1
This commit is contained in:
parent
9563d6bbff
commit
c1a4720ddb
@ -42,7 +42,8 @@
|
||||
* Minor improvements for ASSA properties window
|
||||
* Use comma not semicolon in CSV export - thx OmrSi
|
||||
* Add some missing translation - thx domddol/nkh0472
|
||||
* Shortcut "add bm w comment" work in text box - thx Minh Toan Ma
|
||||
* Shortcut "add bm w comment" works in text box - thx Minh Toan Ma
|
||||
* Update Tesseract to 5.0.1 (from 5.0.0)
|
||||
* FIXED:
|
||||
* Fix bug in BD SUP reading w missing lines - thx peter-qgd
|
||||
* Fix crash in "Set start and offset the rest" w original - thx hamilaci
|
||||
@ -67,6 +68,7 @@
|
||||
* Fix crash in modify selection w styles - thx Leon
|
||||
* Fix export to image issue w font face - thx red4d
|
||||
* Fix close/save original not working before opening file menu - thx OmrSi
|
||||
* Fix decimal point char issue in "Convert frame rate" - thx peter-qgd
|
||||
|
||||
|
||||
3.6.4 (3rd December 2021)
|
||||
|
@ -24,7 +24,7 @@ namespace Nikse.SubtitleEdit.Core.Common
|
||||
public static readonly string SceneChangesDirectory = DataDirectory + "SceneChanges" + Path.DirectorySeparatorChar;
|
||||
public static readonly string AutoBackupDirectory = DataDirectory + "AutoBackup" + Path.DirectorySeparatorChar;
|
||||
public static readonly string VobSubCompareDirectory = DataDirectory + "VobSub" + Path.DirectorySeparatorChar;
|
||||
public static readonly string TesseractDirectory = DataDirectory + "Tesseract500" + Path.DirectorySeparatorChar;
|
||||
public static readonly string TesseractDirectory = DataDirectory + "Tesseract501" + Path.DirectorySeparatorChar;
|
||||
public static readonly string Tesseract302Directory = DataDirectory + "Tesseract302" + Path.DirectorySeparatorChar;
|
||||
public static readonly string WaveformsDirectory = DataDirectory + "Waveforms" + Path.DirectorySeparatorChar;
|
||||
public static readonly string PluginsDirectory = DataDirectory + "Plugins" + Path.DirectorySeparatorChar;
|
||||
|
@ -10,7 +10,7 @@ namespace Nikse.SubtitleEdit.Forms.Ocr
|
||||
{
|
||||
public sealed partial class DownloadTesseract5 : Form
|
||||
{
|
||||
public const string TesseractDownloadUrl = "https://github.com/SubtitleEdit/support-files/raw/master/Tesseract500.tar.gz";
|
||||
public const string TesseractDownloadUrl = "https://github.com/SubtitleEdit/support-files/raw/master/Tesseract501.tar.gz";
|
||||
|
||||
public DownloadTesseract5(string version)
|
||||
{
|
||||
|
@ -327,7 +327,7 @@ namespace Nikse.SubtitleEdit.Forms.Ocr
|
||||
// Dictionaries/spellchecking/fixing
|
||||
private OcrFixEngine _ocrFixEngine;
|
||||
private int _tesseractOcrAutoFixes;
|
||||
private string Tesseract5Version = "5.00";
|
||||
private string Tesseract5Version = "5.0.1";
|
||||
|
||||
private Subtitle _bdnXmlOriginal;
|
||||
private Subtitle _bdnXmlSubtitle;
|
||||
|
Loading…
Reference in New Issue
Block a user