From df9d39dcc6e695521d016874ca01ceb12e2cd392 Mon Sep 17 00:00:00 2001 From: DJDoubleD <34967020+DJDoubleD@users.noreply.github.com> Date: Sun, 13 Aug 2023 14:04:34 +0200 Subject: [PATCH] Add extra settings and change default max Length - Added new settings needed for new tagging options - Chaged default max file/folder length to 100 --- QobuzDownloaderX/App.config | 20 ++++- .../Properties/Settings.Designer.cs | 76 ++++++++++++++++++- QobuzDownloaderX/Properties/Settings.settings | 20 ++++- 3 files changed, 112 insertions(+), 4 deletions(-) diff --git a/QobuzDownloaderX/App.config b/QobuzDownloaderX/App.config index 165c2e8..1cfb1e6 100644 --- a/QobuzDownloaderX/App.config +++ b/QobuzDownloaderX/App.config @@ -116,7 +116,7 @@ True - 36 + 100 1 @@ -124,6 +124,24 @@ - + + True + + + True + + + True + + + , + + + & + + + False + diff --git a/QobuzDownloaderX/Properties/Settings.Designer.cs b/QobuzDownloaderX/Properties/Settings.Designer.cs index 9f2c116..8bbfead 100644 --- a/QobuzDownloaderX/Properties/Settings.Designer.cs +++ b/QobuzDownloaderX/Properties/Settings.Designer.cs @@ -12,7 +12,7 @@ namespace QobuzDownloaderX.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.7.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); @@ -445,7 +445,7 @@ internal sealed partial class Settings : global::System.Configuration.Applicatio [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("36")] + [global::System.Configuration.DefaultSettingValueAttribute("100")] public int savedMaxLength { get { return ((int)(this["savedMaxLength"])); @@ -478,5 +478,77 @@ internal sealed partial class Settings : global::System.Configuration.Applicatio this["savedFilenameTemplateString"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool producerTag { + get { + return ((bool)(this["producerTag"])); + } + set { + this["producerTag"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool labelTag { + get { + return ((bool)(this["labelTag"])); + } + set { + this["labelTag"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool involvedPeopleTag { + get { + return ((bool)(this["involvedPeopleTag"])); + } + set { + this["involvedPeopleTag"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute(", ")] + public string initialListSeparator { + get { + return ((string)(this["initialListSeparator"])); + } + set { + this["initialListSeparator"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute(" & ")] + public string listEndSeparator { + get { + return ((string)(this["listEndSeparator"])); + } + set { + this["listEndSeparator"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool mergePerformers { + get { + return ((bool)(this["mergePerformers"])); + } + set { + this["mergePerformers"] = value; + } + } } } diff --git a/QobuzDownloaderX/Properties/Settings.settings b/QobuzDownloaderX/Properties/Settings.settings index 839650c..4990cb8 100644 --- a/QobuzDownloaderX/Properties/Settings.settings +++ b/QobuzDownloaderX/Properties/Settings.settings @@ -108,7 +108,7 @@ True - 36 + 100 1 @@ -116,5 +116,23 @@ - + + True + + + True + + + True + + + , + + + & + + + False + \ No newline at end of file