Skip to content

Commit

Permalink
changes for 3.40.8
Browse files Browse the repository at this point in the history
* Fix horizontal and vertical rotation #99
  • Loading branch information
argorar committed Sep 17, 2024
1 parent 8d9f6e0 commit 263b016
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Filters/RotateForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,12 @@ public override string ToString()

if (FlipHorizontal)
{
command += ", hflip";
command += String.IsNullOrEmpty(command) ? "hflip" : ", hflip";
}

if (FlipVertical)
{
command += ", vflip";
command += String.IsNullOrEmpty(command) ? "vflip" : ", vflip";
}

return command;
Expand Down
Binary file added NewUpdate/3.40.8.zip
Binary file not shown.
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.40.7")]
[assembly: AssemblyVersion("3.40.8")]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ Drag and drop two or more video files inside the application, select what do you

## Changelog

#### Version 3.40.8
* Fix horizontal and vertical rotation [issue](https://github.com/argorar/WebMConverter/issues/99)

#### Version 3.40.7
* Fix subtitles with crop

Expand Down

0 comments on commit 263b016

Please sign in to comment.