Skip to content

Commit

Permalink
changes for 3.40.6
Browse files Browse the repository at this point in the history
#98
  • Loading branch information
argorar committed Sep 14, 2024
1 parent 935d6b7 commit 7a78ce3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2658,6 +2658,8 @@ void GenerateAvisynthScript()

if (Filters.Dub != null)
script.AppendLine(Filters.Dub.ToString());
if (Filters.Subtitle != null)
script.AppendLine(Filters.Subtitle.ToString());
if (Filters.Crop != null && boxFixSubs.Checked)
{
script.AppendLine(Filters.Crop.ToString());
Expand All @@ -2683,8 +2685,6 @@ void GenerateAvisynthScript()
}
if (Filters.Resize != null)
script.AppendLine(Filters.Resize.ToString());
if (Filters.Subtitle != null)
script.AppendLine(Filters.Subtitle.ToString());
if (Filters.Reverse != null)
script.AppendLine(Filters.Reverse.ToString());
if (Filters.Fade != null)
Expand Down
Binary file added NewUpdate/3.40.6.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.40.5
3.40.6
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.5")]
[assembly: AssemblyVersion("3.40.6")]
7 changes: 3 additions & 4 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.6
* Fix subtitles [issue](https://github.com/argorar/WebMConverter/issues/98)

#### Version 3.40.5
* Fix some scenaries to update output filename
* Fix Subtitles get cropped [issue](https://github.com/argorar/WebMConverter/issues/93)
Expand All @@ -247,12 +250,8 @@ Drag and drop two or more video files inside the application, select what do you

#### Version 3.40.0
* Now you can set default values to caption filter, find it in *General* tab

#### Version 3.39.3
* Allow long file names by @DoTheSneedful
* Improve workflow using dynamic filters

#### Version 3.39.1
* Fix *Resize* window not showing in second monitor

#### Version 3.39.0
Expand Down

0 comments on commit 7a78ce3

Please sign in to comment.