Skip to content

Commit

Permalink
changes for 3.18.0
Browse files Browse the repository at this point in the history
* VP9 now is default for fresh installs, your current setting will be remembered
* Advance users can edit/add arguments before convert in ```Advanced>Arguments```
* ffmpeg updated
  • Loading branch information
argorar committed Jul 10, 2022
1 parent 7884874 commit 3c14934
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion App.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<add key="EncodingMode" value="Variable"/>
<add key="AudioEnabled" value="false"/>
<add key="PathDownload" value=""/>
<add key="VP9" value="false"/>
<add key="VP9" value="true"/>
<add key="ClientSettingsProvider.ServiceUri" value=""/>
</appSettings>
<system.web>
Expand Down
Binary file modified Binaries/Win64/ffmpeg.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2051,7 +2051,7 @@ void Convert()
if (input == output)
throw new Exception("Input and output files are the same!");
string options = GenerateArguments();
string options = boxArguments.Text;
ValidateInputFile(input);
ValidateOutputFile(output);
Expand Down Expand Up @@ -2680,6 +2680,7 @@ private void boxFrameRate_Leave(object sender, EventArgs e)
{
if (boxFrameRate.Text.Equals("0"))
boxFrameRate.Text = string.Empty;
UpdateArguments(sender, e);
}

private void buttonLogOut_Click(object sender, EventArgs e)
Expand Down Expand Up @@ -2807,6 +2808,7 @@ private void buttonOpenPath_Click(object sender, EventArgs e)
private void numericDelay_ValueChanged(object sender, EventArgs e)
{
Filters.DelayAudio = numericDelay.Value != 0 ? new DelayAudio(numericDelay.Value.ToString().Replace(',', '.')) : null;
UpdateArguments(sender, e);
}

private void checkMP4_CheckedChanged(object sender, EventArgs e)
Expand All @@ -2828,19 +2830,22 @@ private void checkMP4_CheckedChanged(object sender, EventArgs e)
checkHWAcceleration.Checked = false;
}

UpdateArguments(sender, e);
UpdateConfiguration("MP4", checkMP4.Checked.ToString());

}

private void checkHWAcceleration_CheckedChanged(object sender, EventArgs e)
{
UpdateArguments(sender, e);
UpdateConfiguration("HAMP4", checkHWAcceleration.Checked.ToString());
}

private void boxStabilization_CheckedChanged(object sender, EventArgs e)
{
comboBoxLevels.Enabled = boxStabilization.Checked;
comboStabType.Enabled = boxStabilization.Checked;
UpdateArguments(sender, e);
}
}
}
Binary file added NewUpdate/3.18.0.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.17.3
3.18.0
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.17.3")]
[assembly: AssemblyVersion("3.18.0")]
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ See user details in tab *General*. If you are creating several gfys of the same

## Changelog

#### Version 3.18.0
* VP9 now is default for fresh installs, your current setting will be remembered
* Advance users can edit/add arguments before convert in ```Advanced>Arguments```
* ffmpeg updated

#### Version 3.17.3
* Changed convert console output for more easy reading. Thanks to **@myblindy**

Expand Down

0 comments on commit 3c14934

Please sign in to comment.