|
105 | 105 | * Fixed a number of errors in newer (stricter) versions of VC++ (Issues
|
106 | 106 | 301, among others)
|
107 | 107 |
|
108 |
| -2006-06-16 - V1.0 of open source Tesseract checked-in. |
109 |
| - |
110 |
| -2006-09-07 - V1.01. |
111 |
| - * Added mfcpch.cpp and getopt.cpp for VC++. |
112 |
| - * Fixed problem with greyscale images and no libtiff. |
113 |
| - * Stopped debug window from being used for the usage output. |
114 |
| - * Fixed load of inttemp for big-endian architectures. |
115 |
| - * Fixed some Mac compilation issues. |
116 |
| - |
117 |
| -2006-10-04 - V1.02 |
118 |
| - * Removed dependency on Aspirin. |
119 |
| - * Fixed a few missing Apache license headers. |
120 |
| - * Removed $log. |
121 |
| - |
122 |
| -2007-02-02 - V1.03 |
123 |
| - * Added mftraining and cntraining. |
124 |
| - * Added baseapi with adaptive thresholding for grey and color. |
125 |
| - * Fixed many memory leaks. |
126 |
| - * Fixed several bugs including lack of use of adaptive classifier. |
127 |
| - * Added ifdefs to eliminate graphics code and add embedded platform support. |
128 |
| - * Incorporated several patches, including 64-bit builds, Mac builds. |
129 |
| - * Minor accuracy improvements. |
130 |
| - |
131 |
| -2007-05-15 - V1.04 |
132 |
| - * Added dll exports for Windows. |
133 |
| - * Fixed name collisions with stl etc. |
134 |
| - * Made some preliminary changes ready for unicodeization. |
135 |
| - * Several bug fixes discovered during unicodeization. |
| 108 | +2009-06-30 - V2.04 |
| 109 | + * Integrated bug fixes and patches and misc changes for portability. |
| 110 | + * Integrated a patch to remove some of the "access" macros. |
| 111 | + * Removed dependence on lua from the viewer, speeding it up |
| 112 | + dramatically. |
| 113 | + * Fixed the viewer so it compiles and runs properly! |
| 114 | + * Specifically fixing issues: 1, 63, 67, 71, 76, 81, 82, 106, 111, |
| 115 | + 112, 128, 129, 130, 133, 135, 142, 143, 145, 147, 153, 154, 160, |
| 116 | + 165, 170, 175, 177, 187, 192, 195, 199, 201, 205, 209, 108, 169 |
136 | 117 |
|
137 |
| -2007-07-02 - V2.00 |
138 |
| - * Converted internal character handling to UTF8. |
139 |
| - * Trained with 6 languages. |
140 |
| - * Added unicharset_extractor, wordlist2dawg. |
141 |
| - * Added boxfile creation mode. |
142 |
| - * Added UNLV regression test capability. |
143 |
| - * Fixed problems with copyright and registered symbols. |
144 |
| - * Fixed extern "C" declarations problem. |
| 118 | +2008-04-22 - V2.03 |
| 119 | + * Fixed crash introduced in 2.02. |
| 120 | + * Fixed lack of tessembedded.cpp in distribution. |
| 121 | + * Added test for leptonica header files and conditional test for lib. |
145 | 122 |
|
146 |
| -2007-08-27 - V2.01 |
147 |
| - * Fixed UTF8 input problems with box file reader. |
148 |
| - * Fixed various infinite loops and crashes in dawg code. |
149 |
| - * Removed include of config_auto.h from host.h. |
150 |
| - * Added automatic wctype encoding to unicharset_extractor. |
151 |
| - * Fixed dawg table too full error. |
152 |
| - * Removed svn files from tarball. |
153 |
| - * Added new functions to tessdll. |
154 |
| - * Increased maximum utf8 string in a classification result to 8. |
| 123 | +2008-04-21 - V2.02 (again) |
| 124 | + * Fixed namespace collisions with jpeg library (INT32). |
| 125 | + * Portability fixes for Windows for new code. |
| 126 | + * Updates to autoconf system for new code. |
155 | 127 |
|
156 | 128 | 2008-01-23 - V2.02
|
157 | 129 | * Improvements to clustering, training and classifier.
|
|
166 | 138 | * Reduced memory use of dictionaries.
|
167 | 139 | * Added some new APIs to TessBaseAPI.
|
168 | 140 |
|
169 |
| -2008-04-21 - V2.02 (again) |
170 |
| - * Fixed namespace collisions with jpeg library (INT32). |
171 |
| - * Portability fixes for Windows for new code. |
172 |
| - * Updates to autoconf system for new code. |
| 141 | +2007-08-27 - V2.01 |
| 142 | + * Fixed UTF8 input problems with box file reader. |
| 143 | + * Fixed various infinite loops and crashes in dawg code. |
| 144 | + * Removed include of config_auto.h from host.h. |
| 145 | + * Added automatic wctype encoding to unicharset_extractor. |
| 146 | + * Fixed dawg table too full error. |
| 147 | + * Removed svn files from tarball. |
| 148 | + * Added new functions to tessdll. |
| 149 | + * Increased maximum utf8 string in a classification result to 8. |
173 | 150 |
|
174 |
| -2008-04-22 - V2.03 |
175 |
| - * Fixed crash introduced in 2.02. |
176 |
| - * Fixed lack of tessembedded.cpp in distribution. |
177 |
| - * Added test for leptonica header files and conditional test for lib. |
| 151 | +2007-07-02 - V2.00 |
| 152 | + * Converted internal character handling to UTF8. |
| 153 | + * Trained with 6 languages. |
| 154 | + * Added unicharset_extractor, wordlist2dawg. |
| 155 | + * Added boxfile creation mode. |
| 156 | + * Added UNLV regression test capability. |
| 157 | + * Fixed problems with copyright and registered symbols. |
| 158 | + * Fixed extern "C" declarations problem. |
178 | 159 |
|
179 |
| -2009-06-30 - V2.04 |
180 |
| - * Integrated bug fixes and patches and misc changes for portability. |
181 |
| - * Integrated a patch to remove some of the "access" macros. |
182 |
| - * Removed dependence on lua from the viewer, speeding it up |
183 |
| - dramatically. |
184 |
| - * Fixed the viewer so it compiles and runs properly! |
185 |
| - * Specifically fixing issues: 1, 63, 67, 71, 76, 81, 82, 106, 111, |
186 |
| - 112, 128, 129, 130, 133, 135, 142, 143, 145, 147, 153, 154, 160, |
187 |
| - 165, 170, 175, 177, 187, 192, 195, 199, 201, 205, 209, 108, 169 |
| 160 | +2007-05-15 - V1.04 |
| 161 | + * Added dll exports for Windows. |
| 162 | + * Fixed name collisions with stl etc. |
| 163 | + * Made some preliminary changes ready for unicodeization. |
| 164 | + * Several bug fixes discovered during unicodeization. |
| 165 | + |
| 166 | +2007-02-02 - V1.03 |
| 167 | + * Added mftraining and cntraining. |
| 168 | + * Added baseapi with adaptive thresholding for grey and color. |
| 169 | + * Fixed many memory leaks. |
| 170 | + * Fixed several bugs including lack of use of adaptive classifier. |
| 171 | + * Added ifdefs to eliminate graphics code and add embedded platform support. |
| 172 | + * Incorporated several patches, including 64-bit builds, Mac builds. |
| 173 | + * Minor accuracy improvements. |
| 174 | + |
| 175 | +2006-10-04 - V1.02 |
| 176 | + * Removed dependency on Aspirin. |
| 177 | + * Fixed a few missing Apache license headers. |
| 178 | + * Removed $log. |
| 179 | + |
| 180 | +2006-09-07 - V1.01. |
| 181 | + * Added mfcpch.cpp and getopt.cpp for VC++. |
| 182 | + * Fixed problem with greyscale images and no libtiff. |
| 183 | + * Stopped debug window from being used for the usage output. |
| 184 | + * Fixed load of inttemp for big-endian architectures. |
| 185 | + * Fixed some Mac compilation issues. |
| 186 | + |
| 187 | +2006-06-16 - V1.0 of open source Tesseract checked-in. |
0 commit comments