Skip to content

Commit

Permalink
Version 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderPro committed May 29, 2022
1 parent 07a3f5c commit a2148b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion WindowTextExtractor/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,8 @@ public bool PreFilterMessage(ref Message m)
else
{
var text = element.GetTextFromConsole() ?? element.GetTextFromWindow();
txtContent.Text = text == null ? "" : text.TrimEnd().TrimEnd(Environment.NewLine);
text = text == null ? "" : text.TrimEnd().TrimEnd(Environment.NewLine);
txtContent.Text = text;
txtContent.ScrollTextToEnd();
AddTextToList(text);

Expand Down
4 changes: 2 additions & 2 deletions WindowTextExtractor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.12.0")]
[assembly: AssemblyFileVersion("1.12.0")]
[assembly: AssemblyVersion("1.13.0")]
[assembly: AssemblyFileVersion("1.13.0")]

0 comments on commit a2148b2

Please sign in to comment.