Skip to content

Commit

Permalink
Version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderPro committed May 14, 2022
1 parent 2c5b3c9 commit f4f1c8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WindowTextExtractor/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ private void btnRecord_Click(object sender, EventArgs e)
_startRecordingTime = _isRecording ? DateTime.Now : (DateTime?)null;
if (_isRecording)
{
_videoWriter.Open(_videoFileName, pbContent.Image.Width, pbContent.Image.Height, _fps, VideoCodec.Raw);
_videoWriter.Open(_videoFileName, _image.Width, _image.Height, _fps, VideoCodec.Raw);
}
else
{
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.10.0")]
[assembly: AssemblyFileVersion("1.10.0")]
[assembly: AssemblyVersion("1.11.0")]
[assembly: AssemblyFileVersion("1.11.0")]

0 comments on commit f4f1c8e

Please sign in to comment.