Skip to content

Commit f4f1c8e

Browse files
committed
Version 1.11.0
1 parent 2c5b3c9 commit f4f1c8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WindowTextExtractor/Forms/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ private void btnRecord_Click(object sender, EventArgs e)
326326
_startRecordingTime = _isRecording ? DateTime.Now : (DateTime?)null;
327327
if (_isRecording)
328328
{
329-
_videoWriter.Open(_videoFileName, pbContent.Image.Width, pbContent.Image.Height, _fps, VideoCodec.Raw);
329+
_videoWriter.Open(_videoFileName, _image.Width, _image.Height, _fps, VideoCodec.Raw);
330330
}
331331
else
332332
{

WindowTextExtractor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.10.0")]
35-
[assembly: AssemblyFileVersion("1.10.0")]
34+
[assembly: AssemblyVersion("1.11.0")]
35+
[assembly: AssemblyFileVersion("1.11.0")]

0 commit comments

Comments
 (0)