Skip to content

Commit

Permalink
changes for 3.28.3
Browse files Browse the repository at this point in the history
* Fix incorrect initial Resize value after do a Crop #48
* Fix incorrect initial Rate value
  • Loading branch information
argorar committed Aug 8, 2023
1 parent be43284 commit 77269c4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Filters/Rate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private void RateForm_Load(object sender, EventArgs e)

boxPreviewOriginal.Text = _originalDuration.ToString(PreviewBoxFormat);
boxPreviewScaled.Text = new TimeSpan((long)(_originalDuration.Ticks / GetValue())).ToString(PreviewBoxFormat);

trackRate_ValueChanged(sender, e);
this.Text = string.Format(this.Text, Program.originalFraps);
}

Expand Down
4 changes: 2 additions & 2 deletions Filters/Resize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ void ResizeForm_Load(object sender, EventArgs e)

if (Filters.Crop != null)
{
inwidth = frame.EncodedResolution.Width - Filters.Crop.Left + Filters.Crop.Right;
inheight = frame.EncodedResolution.Height - Filters.Crop.Top + Filters.Crop.Bottom;
inwidth = Filters.Crop.finalWidth;
inheight = Filters.Crop.finalHeight;
}
else if (inwidth == 0 && inheight == 0)
{
Expand Down
Binary file added NewUpdate/3.28.3.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion NewUpdate/latest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.28.2
3.28.3
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
// 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("3.28.2")]
[assembly: AssemblyVersion("3.28.3")]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ Drag and drop two or more video files inside the application, select what do you
* 3nly

## Changelog
#### Version 3.28.3
* Fix incorrect initial Resize value after do a Crop. See related [issue](https://github.com/argorar/WebMConverter/issues/48)
* Fix incorrect initial Rate value

#### Version 3.28.2
* Remove user details calls to gfycat since service will be shutdown

Expand Down

0 comments on commit 77269c4

Please sign in to comment.