Skip to content

Commit

Permalink
changes for 3.39.2
Browse files Browse the repository at this point in the history
* Allow long file names
* Improve workflow using dynamic filters
  • Loading branch information
argorar committed May 23, 2024
1 parent 59c1d34 commit 9978854
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2885,6 +2885,13 @@ private void EditTrimFilter(object sender, EventArgs e)
{
if (form.ShowDialog(this) == DialogResult.OK)
{

foreach (ListViewItem item in listViewProcessingScript.Items)
{
if (item.Text.Equals("Dynamic") || item.Text.Equals("Crop"))
removeFilter(item);
}

Filters.Trim = form.GeneratedFilter;
UpdateArguments(sender, e);
}
Expand Down
Binary file added NewUpdate/3.39.2.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.39.1
3.39.2
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.39.1")]
[assembly: AssemblyVersion("3.39.2")]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ Drag and drop two or more video files inside the application, select what do you

## Changelog

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

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

Expand Down

0 comments on commit 9978854

Please sign in to comment.