summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r--win/CS/HandBrakeWPF/Converters/EnumComboConverter.cs76
-rw-r--r--win/CS/HandBrakeWPF/HandBrakeWPF.csproj1
-rw-r--r--win/CS/HandBrakeWPF/Helpers/AutoNameHelper.cs67
-rw-r--r--win/CS/HandBrakeWPF/Model/Options/AutonameFileCollisionBehaviour.cs22
-rw-r--r--win/CS/HandBrakeWPF/Properties/Resources.Designer.cs36
-rw-r--r--win/CS/HandBrakeWPF/Properties/Resources.resx12
-rw-r--r--win/CS/HandBrakeWPF/UserSettingConstants.cs6
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs61
-rw-r--r--win/CS/HandBrakeWPF/Views/OptionsView.xaml7
-rw-r--r--win/CS/HandBrakeWPF/defaultsettings.xml18
10 files changed, 244 insertions, 62 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/EnumComboConverter.cs b/win/CS/HandBrakeWPF/Converters/EnumComboConverter.cs
index 8d52ec954..d9dec3ae8 100644
--- a/win/CS/HandBrakeWPF/Converters/EnumComboConverter.cs
+++ b/win/CS/HandBrakeWPF/Converters/EnumComboConverter.cs
@@ -27,24 +27,6 @@ namespace HandBrakeWPF.Converters
/// </summary>
public sealed class EnumComboConverter : IValueConverter
{
- /// <summary>
- /// Convert an Enum to it's display value (attribute)
- /// </summary>
- /// <param name="value">
- /// The value.
- /// </param>
- /// <param name="targetType">
- /// The target type.
- /// </param>
- /// <param name="parameter">
- /// The parameter. (A boolean which inverts the output)
- /// </param>
- /// <param name="culture">
- /// The culture.
- /// </param>
- /// <returns>
- /// Visibility property
- /// </returns>
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null)
@@ -57,61 +39,78 @@ namespace HandBrakeWPF.Converters
{
return EnumHelper<VideoEncoder>.GetEnumDisplayValues(typeof(VideoEncoder));
}
+
if (value is IEnumerable<PresetPictureSettingsMode>)
{
return EnumHelper<PresetPictureSettingsMode>.GetEnumDisplayValues(typeof(PresetPictureSettingsMode));
}
+
if (value is IEnumerable<Detelecine>)
{
return EnumHelper<Detelecine>.GetEnumDisplayValues(typeof(Detelecine));
}
+
if (value is IEnumerable<Denoise>)
{
return EnumHelper<Denoise>.GetEnumDisplayValues(typeof(Denoise));
}
+
if (value is IEnumerable<VideoScaler>)
{
return EnumHelper<VideoScaler>.GetEnumDisplayValues(typeof(VideoScaler));
}
+
if (value is IEnumerable<OutputFormat>)
{
return EnumHelper<OutputFormat>.GetEnumDisplayValues(typeof(OutputFormat));
}
+
if (value is IEnumerable<DeinterlaceFilter>)
{
return EnumHelper<DeinterlaceFilter>.GetEnumDisplayValues(typeof(DeinterlaceFilter));
}
+
if (value is IEnumerable<CombDetect>)
{
return EnumHelper<CombDetect>.GetEnumDisplayValues(typeof(CombDetect));
}
+
if (value is IEnumerable<Sharpen>)
{
return EnumHelper<Sharpen>.GetEnumDisplayValues(typeof(Sharpen));
}
+
if (value is IEnumerable<FileOverwriteBehaviour>)
{
return EnumHelper<FileOverwriteBehaviour>.GetEnumDisplayValues(typeof(FileOverwriteBehaviour));
}
+ if (value is IEnumerable<AutonameFileCollisionBehaviour>)
+ {
+ return EnumHelper<AutonameFileCollisionBehaviour>.GetEnumDisplayValues(typeof(AutonameFileCollisionBehaviour));
+ }
// Single Items
if (targetType == typeof(VideoEncoder) || value.GetType() == typeof(VideoEncoder))
{
return EnumHelper<VideoEncoder>.GetDisplay((VideoEncoder)value);
- }
+ }
+
if (targetType == typeof(PresetPictureSettingsMode) || value.GetType() == typeof(PresetPictureSettingsMode))
{
return EnumHelper<PresetPictureSettingsMode>.GetDisplay((PresetPictureSettingsMode)value);
}
+
if (targetType == typeof(Detelecine) || value.GetType() == typeof(Detelecine))
{
return EnumHelper<Detelecine>.GetDisplay((Detelecine)value);
}
+
if (targetType == typeof(Denoise) || value.GetType() == typeof(Denoise))
{
return EnumHelper<Denoise>.GetDisplay((Denoise)value);
}
+
if (targetType == typeof(QueueItemStatus) || value.GetType() == typeof(QueueItemStatus))
{
return EnumHelper<QueueItemStatus>.GetDisplay((QueueItemStatus)value);
@@ -131,61 +130,57 @@ namespace HandBrakeWPF.Converters
{
return EnumHelper<DeinterlaceFilter>.GetDisplay((DeinterlaceFilter)value);
}
+
if (targetType == typeof(CombDetect) || value.GetType() == typeof(CombDetect))
{
return EnumHelper<CombDetect>.GetDisplay((CombDetect)value);
}
+
if (targetType == typeof(Sharpen) || value.GetType() == typeof(Sharpen))
{
return EnumHelper<Sharpen>.GetDisplay((Sharpen)value);
}
+
if (targetType == typeof(FileOverwriteBehaviour) || value.GetType() == typeof(FileOverwriteBehaviour))
{
return EnumHelper<FileOverwriteBehaviour>.GetDisplay((FileOverwriteBehaviour)value);
}
+ if (targetType == typeof(AutonameFileCollisionBehaviour) || value.GetType() == typeof(AutonameFileCollisionBehaviour))
+ {
+ return EnumHelper<AutonameFileCollisionBehaviour>.GetDisplay((AutonameFileCollisionBehaviour)value);
+ }
+
return null;
}
- /// <summary>
- /// Convert Back for the IValueConverter Interface.
- /// </summary>
- /// <param name="value">
- /// The value.
- /// </param>
- /// <param name="targetType">
- /// The target type.
- /// </param>
- /// <param name="parameter">
- /// The parameter.
- /// </param>
- /// <param name="culture">
- /// The culture.
- /// </param>
- /// <returns>
- /// Nothing
- /// </returns>
- /// <exception cref="NotImplementedException">
- /// This method is not used!
- /// </exception>
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
+ if (value is null)
+ {
+ return null;
+ }
+
if (targetType == typeof(VideoEncoder) || value.GetType() == typeof(VideoEncoder))
{
return EnumHelper<VideoEncoder>.GetValue(value.ToString());
}
+
if (targetType == typeof(PresetPictureSettingsMode) || value.GetType() == typeof(PresetPictureSettingsMode))
{
return EnumHelper<PresetPictureSettingsMode>.GetValue(value.ToString());
}
+
if (targetType == typeof(Denoise) || value.GetType() == typeof(Denoise))
{
return EnumHelper<Denoise>.GetValue(value.ToString());
}
+
if (targetType == typeof(Detelecine) || value.GetType() == typeof(Detelecine))
{
return EnumHelper<Detelecine>.GetValue(value.ToString());
}
+
if (targetType == typeof(VideoScaler) || value.GetType() == typeof(VideoScaler))
{
return EnumHelper<VideoScaler>.GetValue(value.ToString());
@@ -210,6 +205,7 @@ namespace HandBrakeWPF.Converters
{
return EnumHelper<Sharpen>.GetValue(value.ToString());
}
+
return null;
}
}
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
index aa076610e..cbacffed8 100644
--- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
+++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
@@ -165,6 +165,7 @@
<Compile Include="Model\Audio\AudioBehaviourModes.cs" />
<Compile Include="Model\Audio\AudioBehaviours.cs" />
<Compile Include="Model\DriveInformation.cs" />
+ <Compile Include="Model\Options\AutonameFileCollisionBehaviour.cs" />
<Compile Include="Model\Options\FileOverwriteBehaviour.cs" />
<Compile Include="Model\Filters\FilterTune.cs" />
<Compile Include="Model\Filters\FilterPreset.cs" />
diff --git a/win/CS/HandBrakeWPF/Helpers/AutoNameHelper.cs b/win/CS/HandBrakeWPF/Helpers/AutoNameHelper.cs
index 4a1e96b50..cf21aae0a 100644
--- a/win/CS/HandBrakeWPF/Helpers/AutoNameHelper.cs
+++ b/win/CS/HandBrakeWPF/Helpers/AutoNameHelper.cs
@@ -10,9 +10,11 @@
namespace HandBrakeWPF.Helpers
{
using System;
+ using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
+ using System.Threading.Tasks;
using Caliburn.Micro;
@@ -228,22 +230,9 @@ namespace HandBrakeWPF.Helpers
autoNamePath = Path.Combine(Path.GetDirectoryName(task.Destination), destinationFilename);
}
- // Append out_ to files that already exist or is the source file
- //FileOverwriteBehaviour behaviour = (FileOverwriteBehaviour)userSettingService.GetUserSetting<int>(UserSettingConstants.FileOverwriteBehaviour, typeof(int));
- //if (behaviour == FileOverwriteBehaviour.Autoname)
- //{
- if (autoNamePath?.ToLower() == task.Source?.ToLower())
- {
- autoNamePath = Path.Combine(Path.GetDirectoryName(task.Source), "output_" + destinationFilename);
+ autoNamePath = CheckAndHandleFilenameCollisions(autoNamePath, destinationFilename, task, userSettingService);
+
- int counter = 1;
- while (autoNamePath == task.Source)
- {
- autoNamePath = Path.Combine(Path.GetDirectoryName(task.Source), string.Format("output{0}_", counter) + destinationFilename);
- counter = counter + 1;
- }
- }
- //}
}
return autoNamePath;
@@ -268,6 +257,52 @@ namespace HandBrakeWPF.Helpers
return userSettingService.GetUserSetting<string>(UserSettingConstants.AutoNamePath).Trim().StartsWith(Constants.SourcePath) ||
(userSettingService.GetUserSetting<string>(UserSettingConstants.AutoNamePath).Contains(Constants.SourceFolderName) ||
Directory.Exists(userSettingService.GetUserSetting<string>(UserSettingConstants.AutoNamePath).Trim()));
- }
+ }
+
+ private static string CheckAndHandleFilenameCollisions(string autoNamePath, string destinationFilename, EncodeTask task, IUserSettingService userSettingService)
+ {
+ AutonameFileCollisionBehaviour behaviour = (AutonameFileCollisionBehaviour)userSettingService.GetUserSetting<int>(UserSettingConstants.AutonameFileCollisionBehaviour, typeof(int));
+ string prefix = string.Empty, postfix = string.Empty;
+ switch (behaviour)
+ {
+ case AutonameFileCollisionBehaviour.Postfix:
+ postfix = userSettingService.GetUserSetting<string>(UserSettingConstants.AutonameFilePrePostString);
+ break;
+ case AutonameFileCollisionBehaviour.Prefix:
+ prefix = userSettingService.GetUserSetting<string>(UserSettingConstants.AutonameFilePrePostString);
+ break;
+ }
+
+ string extension = Path.GetExtension(destinationFilename);
+ string filenameWithoutExt = Path.GetFileNameWithoutExtension(destinationFilename);
+
+ if (behaviour != AutonameFileCollisionBehaviour.AppendNumber)
+ {
+ if (autoNamePath?.ToLower() == task.Source?.ToLower())
+ {
+ autoNamePath = Path.Combine(Path.GetDirectoryName(task.Source), prefix + filenameWithoutExt + postfix + extension);
+
+ int counter = 0;
+ while (File.Exists(autoNamePath))
+ {
+ counter = counter + 1;
+ string appendedNumber = string.Format("({0})", counter);
+ autoNamePath = Path.Combine(Path.GetDirectoryName(task.Source), prefix + filenameWithoutExt + postfix + appendedNumber + extension);
+ }
+ }
+ }
+ else
+ {
+ int counter = 0;
+ while (File.Exists(autoNamePath))
+ {
+ counter = counter + 1;
+ string appendedNumber = string.Format("({0})", counter);
+ autoNamePath = Path.Combine(Path.GetDirectoryName(task.Source), filenameWithoutExt + appendedNumber + extension);
+ }
+ }
+
+ return autoNamePath;
+ }
}
}
diff --git a/win/CS/HandBrakeWPF/Model/Options/AutonameFileCollisionBehaviour.cs b/win/CS/HandBrakeWPF/Model/Options/AutonameFileCollisionBehaviour.cs
new file mode 100644
index 000000000..b1f7e784a
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Model/Options/AutonameFileCollisionBehaviour.cs
@@ -0,0 +1,22 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="AutonameFileCollisionBehaviour.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model.Options
+{
+ using HandBrake.Interop.Attributes;
+
+ using HandBrakeWPF.Properties;
+
+ public enum AutonameFileCollisionBehaviour
+ {
+ [DisplayName(typeof(Resources), "CollisionBehaviour_AppendNumber")]
+ AppendNumber = 0,
+ [DisplayName(typeof(Resources), "CollisionBehaviour_Pre")]
+ Prefix = 1,
+ [DisplayName(typeof(Resources), "CollisionBehaviour_Post")]
+ Postfix = 2,
+ }
+}
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
index db9d95bdc..733a31c72 100644
--- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
+++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
@@ -691,6 +691,33 @@ namespace HandBrakeWPF.Properties {
}
/// <summary>
+ /// Looks up a localized string similar to Append Number.
+ /// </summary>
+ public static string CollisionBehaviour_AppendNumber {
+ get {
+ return ResourceManager.GetString("CollisionBehaviour_AppendNumber", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Postfix.
+ /// </summary>
+ public static string CollisionBehaviour_Post {
+ get {
+ return ResourceManager.GetString("CollisionBehaviour_Post", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Prefix.
+ /// </summary>
+ public static string CollisionBehaviour_Pre {
+ get {
+ return ResourceManager.GetString("CollisionBehaviour_Pre", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Confirm.
/// </summary>
public static string Confirm {
@@ -3094,6 +3121,15 @@ namespace HandBrakeWPF.Properties {
}
/// <summary>
+ /// Looks up a localized string similar to Filename collision behaviour:.
+ /// </summary>
+ public static string OptionsView_FileCollisionBehaviour {
+ get {
+ return ResourceManager.GetString("OptionsView_FileCollisionBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to File overwrite behaviour:.
/// </summary>
public static string OptionsView_FileOverwriteBehaviour {
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx
index 2e4627542..d389ea639 100644
--- a/win/CS/HandBrakeWPF/Properties/Resources.resx
+++ b/win/CS/HandBrakeWPF/Properties/Resources.resx
@@ -1966,4 +1966,16 @@ Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitra
<data name="Options_WhenDoneColon" xml:space="preserve">
<value>When Done:</value>
</data>
+ <data name="OptionsView_FileCollisionBehaviour" xml:space="preserve">
+ <value>Filename collision behaviour:</value>
+ </data>
+ <data name="CollisionBehaviour_Post" xml:space="preserve">
+ <value>Postfix</value>
+ </data>
+ <data name="CollisionBehaviour_Pre" xml:space="preserve">
+ <value>Prefix</value>
+ </data>
+ <data name="CollisionBehaviour_AppendNumber" xml:space="preserve">
+ <value>Append Number</value>
+ </data>
</root> \ No newline at end of file
diff --git a/win/CS/HandBrakeWPF/UserSettingConstants.cs b/win/CS/HandBrakeWPF/UserSettingConstants.cs
index 28136a341..07019e567 100644
--- a/win/CS/HandBrakeWPF/UserSettingConstants.cs
+++ b/win/CS/HandBrakeWPF/UserSettingConstants.cs
@@ -14,8 +14,6 @@ namespace HandBrakeWPF
/// </summary>
public class UserSettingConstants
{
- #region Constants and Fields
-
public const string AutoNameFormat = "autoNameFormat";
public const string AutoNamePath = "autoNamePath";
public const string AutoNameRemoveUnderscore = "AutoNameRemoveUnderscore";
@@ -71,7 +69,7 @@ namespace HandBrakeWPF
public const string ShowAddAllToQueue = "ShowAddAllToQueue";
public const string ShowAddSelectionToQueue = "ShowAddSelectionToQueue";
public const string FileOverwriteBehaviour = "FileOverwriteBehaviour";
-
- #endregion
+ public const string AutonameFileCollisionBehaviour = "AutonameFileCollisionBehaviour";
+ public const string AutonameFilePrePostString = "AutonameFilePrePostString";
}
} \ No newline at end of file
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index f04ecbff9..3090a8144 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -106,6 +106,11 @@ namespace HandBrakeWPF.ViewModels
private bool showAddSelectionToQueue;
private bool showAddAllToQueue;
private int selectedOverwriteBehaviour;
+ private int selectedCollisionBehaviour;
+
+ private string prePostFilenameText;
+
+ private bool showPrePostFilenameBox;
#endregion
@@ -661,6 +666,49 @@ namespace HandBrakeWPF.ViewModels
}
}
+ public BindingList<AutonameFileCollisionBehaviour> AutonameFileCollisionBehaviours { get; set; }
+
+ public int SelectedCollisionBehaviour
+ {
+ get => this.selectedCollisionBehaviour;
+ set
+ {
+ if (value == this.selectedCollisionBehaviour) return;
+ this.selectedCollisionBehaviour = value;
+
+ this.ShowPrePostFilenameBox = this.selectedCollisionBehaviour >= 1;
+
+ this.NotifyOfPropertyChange(() => this.SelectedCollisionBehaviour);
+ }
+ }
+
+ public string PrePostFilenameText
+ {
+ get => this.prePostFilenameText;
+ set
+ {
+ if (value == this.prePostFilenameText) return;
+
+ if (this.IsValidAutonameFormat(value, false))
+ {
+ this.prePostFilenameText = value;
+ }
+
+ this.NotifyOfPropertyChange(() => this.PrePostFilenameText);
+ }
+ }
+
+ public bool ShowPrePostFilenameBox
+ {
+ get => this.showPrePostFilenameBox;
+ set
+ {
+ if (value == this.showPrePostFilenameBox) return;
+ this.showPrePostFilenameBox = value;
+ this.NotifyOfPropertyChange(() => this.ShowPrePostFilenameBox);
+ }
+ }
+
#endregion
#region Preview
@@ -1445,9 +1493,13 @@ namespace HandBrakeWPF.ViewModels
this.FileOverwriteBehaviourList = new BindingList<FileOverwriteBehaviour>();
this.FileOverwriteBehaviourList.Add(FileOverwriteBehaviour.Ask);
this.FileOverwriteBehaviourList.Add(FileOverwriteBehaviour.ForceOverwrite);
- // this.FileOverwriteBehaviourList.Add(FileOverwriteBehaviour.Autoname);
this.SelectedOverwriteBehaviour = this.userSettingService.GetUserSetting<int>(UserSettingConstants.FileOverwriteBehaviour, typeof(int));
+ // Collision behaviour
+ this.AutonameFileCollisionBehaviours = new BindingList<AutonameFileCollisionBehaviour>() { AutonameFileCollisionBehaviour.AppendNumber, AutonameFileCollisionBehaviour.Prefix, AutonameFileCollisionBehaviour.Postfix };
+ this.SelectedCollisionBehaviour = this.userSettingService.GetUserSetting<int>(UserSettingConstants.AutonameFileCollisionBehaviour, typeof(int));
+ this.PrePostFilenameText = this.userSettingService.GetUserSetting<string>(UserSettingConstants.AutonameFilePrePostString);
+
// #############################
// Picture Tab
// #############################
@@ -1598,6 +1650,8 @@ namespace HandBrakeWPF.ViewModels
this.userSettingService.SetUserSetting(UserSettingConstants.AutoNameTitleCase, this.ChangeToTitleCase);
this.userSettingService.SetUserSetting(UserSettingConstants.RemovePunctuation, this.RemovePunctuation);
this.userSettingService.SetUserSetting(UserSettingConstants.FileOverwriteBehaviour, this.SelectedOverwriteBehaviour);
+ this.userSettingService.SetUserSetting(UserSettingConstants.AutonameFileCollisionBehaviour, this.SelectedCollisionBehaviour);
+ this.userSettingService.SetUserSetting(UserSettingConstants.AutonameFilePrePostString, this.PrePostFilenameText);
/* Previews */
this.userSettingService.SetUserSetting(UserSettingConstants.VLCPath, this.VLCPath);
@@ -1712,6 +1766,11 @@ namespace HandBrakeWPF.ViewModels
/// <returns>True if valid</returns>
private bool IsValidAutonameFormat(string input, bool isSilent)
{
+ if (string.IsNullOrEmpty(input))
+ {
+ return true;
+ }
+
char[] invalidchars = Path.GetInvalidFileNameChars();
Array.Sort(invalidchars);
foreach (var characterToTest in input)
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml
index 7bccf0e1b..e7a3ed1ec 100644
--- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml
+++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml
@@ -189,6 +189,13 @@
<TextBlock Text="{x:Static Properties:Resources.OptionsView_FormatOptions}" Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2" FontStyle="Italic" FontSize="11" TextWrapping="Wrap" />
</Grid>
+ <StackPanel Orientation="Horizontal" Margin="0,15,0,0">
+ <TextBlock VerticalAlignment="Center" Text="{x:Static Properties:Resources.OptionsView_FileCollisionBehaviour}" />
+ <ComboBox Width="120" ItemsSource="{Binding AutonameFileCollisionBehaviours, Converter={StaticResource enumComboConverter}}" SelectedIndex="{Binding SelectedCollisionBehaviour}" HorizontalAlignment="Left" />
+ <TextBox Text="{Binding PrePostFilenameText, UpdateSourceTrigger=PropertyChanged}" Width="150" VerticalAlignment="Center" Visibility="{Binding ShowPrePostFilenameBox, Converter={StaticResource boolToVisConverter}}" HorizontalAlignment="Left" Margin="5,0,0,0" />
+ </StackPanel>
+
+
<StackPanel Orientation="Vertical" Margin="0,15,0,0">
<CheckBox Content="{x:Static Properties:Resources.Options_TitleCase}" IsChecked="{Binding ChangeToTitleCase}" />
<CheckBox Content="{x:Static Properties:Resources.Options_ReplaceUnderscores}" IsChecked="{Binding RemoveUnderscores}"/>
diff --git a/win/CS/HandBrakeWPF/defaultsettings.xml b/win/CS/HandBrakeWPF/defaultsettings.xml
index 53e077ea4..724dfd336 100644
--- a/win/CS/HandBrakeWPF/defaultsettings.xml
+++ b/win/CS/HandBrakeWPF/defaultsettings.xml
@@ -529,5 +529,21 @@
<anyType xmlns:q1="http://www.w3.org/2001/XMLSchema" d4p1:type="q1:int" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">0</anyType>
</value>
</item>
-
+ <item>
+ <key>
+ <string>AutonameFileCollisionBehaviour</string>
+ </key>
+ <value>
+ <anyType xmlns:q1="http://www.w3.org/2001/XMLSchema" d4p1:type="q1:int" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">1</anyType>
+ </value>
+ </item>
+ <item>
+ <key>
+ <string>AutonameFilePrePostString</string>
+ </key>
+ <value>
+ <anyType xmlns:q1="http://www.w3.org/2001/XMLSchema" d4p1:type="q1:string" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">output_</anyType>
+ </value>
+ </item>
+
</dictionary> \ No newline at end of file