Skip to content

Commit 00c89c0

Browse files
committed
Update for 2016-12-09 release.
1 parent 3f2e75b commit 00c89c0

3 files changed

Lines changed: 34 additions & 8 deletions

File tree

ReadMe.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ ReadMe.txt - Requirements, Installation Instructions, File List, Known Issues,
5555
for an even worse .NET Framework repainting bug.
5656
* ListBox limitations on 16-bit OSes (Windows 95/98/Me) prevent files with
5757
more than 32,767 lines from displaying properly.
58+
* The font size selected in the preferences dialog will sometimes be overridden
59+
by a slightly larger or smaller size. This is the expected behavior as .Net
60+
and GDI work together to pick a size that will render properly. See also
61+
http://stackoverflow.com/questions/3544926/font-size-discrepancy-in-net-gdi
5862

5963

6064
-----------
@@ -78,6 +82,20 @@ all circumstances, but is ultimately bound by the resources available to it.
7882
-- History --
7983
-------------
8084

85+
2016-12-09 by Vince Curley
86+
----------
87+
* Added the "Mark Filters Changed" setting to control when the filter list is
88+
considered changed. This gives the flexibility to enable, disable, or move
89+
filters without "dirtying" the list and causing a prompt to save on exit.
90+
91+
2016-10-29 by Vince Curley
92+
----------
93+
* Added font name and size to the preferences dialog. The displayed font size
94+
is controlled by the base font size and the zoom level.
95+
* Added /Line command line argument to jump to that line when a file is opened
96+
* Fix a bug where the '&' character in lines was displayed incorrectly
97+
* Updated menu and command line options in documentation
98+
8199
2016-06-16 by David Anson
82100
----------
83101
* Updated the link to the .NET Framework Regular Expressions documentation

TextAnalysisTool.NET.txt

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,10 @@ File
117117
Save Current Lines... Saves the current lines to a new file
118118
Load Filters... Loads a filter file (*.tat) and replaces the
119119
current filters
120-
Save Filters... Saves the current filters to a filter file
120+
Save Filters Saves the current filters to a filter file
121121
(*.tat)
122+
Save Filters As... Saves the current filters to a new filter
123+
file (*.tat)
122124
Append to Existing Filters... Loads a filter file (*.tat) and appends the
123125
filters to the current filters
124126
Recent Files A list of the most recently loaded files
@@ -149,13 +151,15 @@ View
149151
the current line is preserved whenever
150152
possible; otherwise it is kept as near to its
151153
previous location as possible)
154+
Show Line Numbers Toggles showing/hiding of line numbers
152155
Show Markers
153156
Always Always show the markers left of the text
154157
Never Never show the markers left of the text
155158
Only When In Use Show the markers only when markers are defined
156159
Zoom In Increases the font size
157160
Zoom Out Decreases the font size
158161
Reset Zoom Resets the font size to the default size
162+
Filter List Location Set the docking location for the filter list
159163

160164
Filters
161165
Add New Filter... Adds a new filter of any type
@@ -187,15 +191,17 @@ Ctrl+Shift+A-Z Toggles the associated filter
187191
Filter Display Keys
188192
-------------------
189193

190-
Space Toggles the selected filter on and off
191-
Enter Edits the selected filter (also accessible through double-click)
192-
Delete Removes the selected filter
194+
Space Toggles the selected filter on and off
195+
Enter Edits the selected filter (also accessible
196+
through double-click)
197+
Delete Removes the selected filter
198+
Ctrl+(Left, Right, Up, or Down) Set the docking location of the filter list
193199

194200

195201
Status Bar Indicators
196202
---------------------
197203

198-
Funnel Icon Indicates that the "Shown Only Filtered Lines" menu option is
204+
Funnel Icon Indicates that the "Show Only Filtered Lines" menu option is
199205
currently selected
200206
Sel Indicates the number of lines selected in the line display
201207
Fil Indicates the number of filtered lines
@@ -262,9 +268,11 @@ in your default browser.)
262268
--------------------------------------
263269

264270
TextAnalysisTool.NET.exe [InputFile] [/Filters:FilterFile] [/Config:ConfigFile]
271+
[/Line:LineNumber]
265272
InputFile - Name of the file to open and display
266273
FilterFile - Name of a .tat file containing a saved filter configuration
267274
ConfigFile - Name of an .xml file containing configuration options
275+
LineNumber - The line to display when the file is opened
268276

269277
Examples:
270278
TextAnalysisTool.NET.exe \Logs\MyLog.log /Filters:"\Saved Filters\MyFilters.tat"

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="center">
1212
<h1>TextAnalysisTool.NET</h1>
1313
<p>
14-
<a href="http://dlaa.me/">David Anson</a><br/>
14+
<a href="https://dlaa.me/">David Anson</a><br/>
1515
<a href="https://github.com/mike-mo">Mike Morante</a><br/>
1616
<a href="https://github.com/cohen-uriel">Uriel Cohen</a><br/>
1717
Vince Curley<br/>
@@ -35,12 +35,12 @@ <h3>
3535
Includes:
3636
</h3>
3737
<ul class="notes">
38-
<li>Version <code>2016-06-16</code> for .NET 4+ (32- and 64-bit)</li>
38+
<li>Version <code>2016-12-09</code> for .NET 4+ (32- and 64-bit)</li>
3939
<li>Version <code>2013-05-07</code> for .NET 2+ (32- and 64-bit)</li>
4040
<li>Version <code>2006-12-04</code> for .NET 1.1+ (32-bit only)</li>
4141
<li>Version <code>2001-12-28</code> for x86 (32-bit only)</li>
4242
</ul>
43-
<h3>License: <a href="http://opensource.org/licenses/MIT">MIT</a></h3>
43+
<h3>License: <a href="https://opensource.org/licenses/MIT">MIT</a></h3>
4444
<h2>Overview</h2>
4545
<p><span class="label">The Problem</span>: For those times when you have to analyze a large amount of textual
4646
data, picking out the relevant line(s) of interest can be quite difficult.

0 commit comments

Comments
 (0)