Skip to content

Commit

Permalink
Release version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Nov 7, 2018
1 parent 6fc3cde commit 587dc61
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
45 changes: 45 additions & 0 deletions file_version_info.txt
@@ -0,0 +1,45 @@
# UTF-8
#
# For more details about fixed file info 'ffi' see:
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(1, 2, 0, 0),
prodvers=(1, 2, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'
mask=0x0,
# Contains a bitmask that specifies the Boolean attributes of the file.
flags=0x0,
# The operating system for which this file was designed.
# 0x4 - NT and there is no need to change it.
OS=0x4,
# The general type of file.
# 0x1 - the file is an application.
fileType=0x1,
# The function of the file.
# 0x0 - the function is not defined for this fileType
subtype=0x0,
# Creation date and time stamp.
date=(0, 0)
),
kids=[
StringFileInfo(
[
StringTable(
u'040904E4',
[StringStruct(u'Comments', u''),
StringStruct(u'CompanyName', u'Zdenko Podobný <zdenop@gmail.com> © 2018'),
StringStruct(u'FileDescription', u'Tesseract traineddata downloader'),
StringStruct(u'FileVersion', u'1.2.0.0'),
StringStruct(u'InternalName', u'tessdata_downloader.exe'),
StringStruct(u'LegalCopyright', u'Copyright 2018 Zdenko Podobny, Apache license 2'),
StringStruct(u'LegalTrademarks', u''),
StringStruct(u'OriginalFilename', u'tessdata_downloader.exe'),
StringStruct(u'ProductName', u'TessdataDownloader'),
StringStruct(u'ProductVersion', u'1.2.0.0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1252])])
]
)
4 changes: 2 additions & 2 deletions tessdata_downloader.py
Expand Up @@ -27,9 +27,9 @@

__author__ = "Zdenko Podobny <zdenop@gmail.com>"
__copyright__ = "Copyright 2018 Zdenko Podobny"
__version__ = "1.1"
__version__ = "1.2"
__license__ = "Apache license 2"
__date__ = "31/07/2018"
__date__ = "07/11/2018"

PROJECT_URL = 'https://api.github.com/repos/tesseract-ocr/'
REPOSITORIES = ['tessdata', 'tessdata_fast', 'tessdata_best']
Expand Down

0 comments on commit 587dc61

Please sign in to comment.