Skip to content

Commit 3f2e75b

Browse files
committed
Update for 2016-06-16 release.
1 parent 104a7e0 commit 3f2e75b

3 files changed

Lines changed: 35 additions & 8 deletions

File tree

ReadMe.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ ReadMe.txt - Requirements, Installation Instructions, File List, Known Issues,
4141
* GDI+ occasionally throws a System.Runtime.InteropServices.ExternalException
4242
with the message "A generic error occurred in GDI+.". This exceptional
4343
condition causes TextAnalysisTool.NET to exit after notifying the user.
44+
One cause of this was rendering very long lines. To avoid this the app now
45+
takes a safe substring of the original line based on the width of the rendered
46+
characters. The message "[TextAnalysisTool.NET could not display the whole line.
47+
Filtering, copying, and searching are unaffected.]" is included at the end of the
48+
line to indicate truncation. Filtering, searching, and copying are all still
49+
performed on the complete text of the line.
4450
* The .NET Framework's improper handling of vertical and horizontal scrollbar
4551
messages for ListBoxes can cause rendering problems for files with very many
4652
or very long lines.
@@ -72,6 +78,25 @@ all circumstances, but is ultimately bound by the resources available to it.
7278
-- History --
7379
-------------
7480

81+
2016-06-16 by David Anson
82+
----------
83+
* Updated the link to the .NET Framework Regular Expressions documentation
84+
85+
2016-04-22 by Vince Curley
86+
----------
87+
* Added ability to dock the filter list to any side of the main window
88+
* Added a tool tip to show what filters each line matches
89+
* Prompt to save the filter list before overwriting it when filters are
90+
loaded from a file and before exiting the app. Prompting only happens if
91+
there is a backing filter file (that is, if filters were loaded from a
92+
file or saved to a file) so we don't prompt to save ad-hoc, temporary filters.
93+
* Include the filter file name (if any) and a "filters changed" indicator
94+
in the main window title bar.
95+
* Fixed a bug that would cause a crash when displaying lines with several
96+
thousand characters. Such lines will now be truncated when displayed,
97+
with a message indicating so. Filtering, searching, and copying
98+
will still work on the complete text of the line.
99+
75100
2016-01-08 by Vince Curley
76101
----------
77102
* Added a setting to control whether or not line numbers are displayed

TextAnalysisTool.NET.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ different manner. Apologies for the inconvenience to loyal users!
249249
----------------------------------------
250250

251251
TextAnalysisTool.NET uses the standard .NET Framework regular expression class
252-
Regex, and therefore supports the same regular expression syntax as is exposed
253-
by the .NET Framework. For more details, please refer to the ".NET Framework
254-
Regular Expressions" page in MSDN: <http://msdn.microsoft.com/library/en-
255-
us/cpguide/html/cpconcomregularexpressions.asp>. (Note that you can right-
256-
click the "Regular expression" checkbox from the relevant TextAnalysisTool.NET
257-
dialog boxes to automatically open this web page in your default browser.)
252+
Regex, and therefore supports the same regular expression syntax used by the
253+
.NET Framework. For more details, please refer to the ".NET Framework Regular
254+
Expressions" page: <https://msdn.microsoft.com/en-us/library/hs600312.aspx>.
255+
(Note that you can right-click the "Regular expression" checkbox from the
256+
relevant TextAnalysisTool.NET dialog boxes to automatically open this web page
257+
in your default browser.)
258258

259259

260260
--------------------------------------

index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ <h1>TextAnalysisTool.NET</h1>
1313
<p>
1414
<a href="http://dlaa.me/">David Anson</a><br/>
1515
<a href="https://github.com/mike-mo">Mike Morante</a><br/>
16-
<a href="https://github.com/cohen-uriel">Uriel Cohen</a>
16+
<a href="https://github.com/cohen-uriel">Uriel Cohen</a><br/>
17+
Vince Curley<br/>
18+
Aleksey Kabanov
1719
</p>
1820
</div>
1921
<h2>Summary</h2>
@@ -33,7 +35,7 @@ <h3>
3335
Includes:
3436
</h3>
3537
<ul class="notes">
36-
<li>Version <code>2016-01-08</code> for .NET 4+ (32- and 64-bit)</li>
38+
<li>Version <code>2016-06-16</code> for .NET 4+ (32- and 64-bit)</li>
3739
<li>Version <code>2013-05-07</code> for .NET 2+ (32- and 64-bit)</li>
3840
<li>Version <code>2006-12-04</code> for .NET 1.1+ (32-bit only)</li>
3941
<li>Version <code>2001-12-28</code> for x86 (32-bit only)</li>

0 commit comments

Comments
 (0)